1 #include "dialog_hudpanel_quickmenu.qh"
4 #include "textlabel.qh"
5 #include "radiobutton.qh"
7 void XonoticHUDQuickMenuDialog_fill(entity me)
10 string panelname = "quickmenu";
12 DIALOG_HUDPANEL_COMMON_NOTOGGLE();
15 me.TD(me, 1, 4, e = makeXonoticTextLabel(0, _("Text alignment:")));
18 me.TD(me, 1, 3.8/3, e = makeXonoticRadioButton(3, "hud_panel_quickmenu_align", "0", _("Left")));
19 me.TD(me, 1, 3.8/3, e = makeXonoticRadioButton(3, "hud_panel_quickmenu_align", "0.5", _("Center")));
20 me.TD(me, 1, 3.8/3, e = makeXonoticRadioButton(3, "hud_panel_quickmenu_align", "1", _("Right")));