Xonotic QuakeC
The free, fast arena FPS with crisp movement and a wide array of weapons
dialog_hudpanel_centerprint.qc File Reference
#include "dialog_hudpanel_centerprint.qh"
#include "checkbox.qh"
#include "textlabel.qh"
#include "slider.qh"
#include "mixedslider.qh"
#include "radiobutton.qh"
Include dependency graph for dialog_hudpanel_centerprint.qc:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void XonoticHUDCenterprintDialog_fill (entity me)

Function Documentation

◆ XonoticHUDCenterprintDialog_fill()

void XonoticHUDCenterprintDialog_fill ( entity me)

Definition at line 9 of file dialog_hudpanel_centerprint.qc.

10{
11 entity e;
12 string panelname = "centerprint";
13 float i;
14
15 dialog_hudpanel_main_checkbox(me, panelname);
16
17 dialog_hudpanel_main_settings(me, panelname);
18
19 me.TR(me);
20 me.TD(me, 1, 1.4, e = makeXonoticTextLabel(0, _("Message duration:")));
21 me.TD(me, 1, 2.6, e = makeXonoticSlider(1, 10, 1, "hud_panel_centerprint_time"));
22 e.formatString = "s";
23 e.setValueSpace(e, e.valueSpace * 1.25);
24 me.TR(me);
25 me.TD(me, 1, 1.4, e = makeXonoticTextLabel(0, _("Fade time:")));
26 setDependentNOT(e, "hud_panel_centerprint_time", 0);
27 me.TD(me, 1, 2.6, e = makeXonoticMixedSlider("hud_panel_centerprint_fade_out"));
28 e.formatString = "S";
29 e.setValueSpace(e, e.valueSpace * 1.25);
30 e.addText(e, ZCTX(_("FADESPEED^Instant")), 0);
31 e.addRange(e, 0.05, 1, 0.05);
32 e.configureXonoticMixedSliderValues(e);
33 setDependentNOT(e, "hud_panel_centerprint_time", 0);
34 me.TR(me);
35 me.TD(me, 1, 1.4, e = makeXonoticTextLabel(0, _("Font scale:")));
36 setDependentNOT(e, "hud_panel_centerprint_time", 0);
37 me.TD(me, 1, 2.6, e = makeXonoticSlider(0.5, 2, 0.1, "hud_panel_centerprint_fontscale"));
38 setDependentNOT(e, "hud_panel_centerprint_time", 0);
39 me.TR(me);
40 me.TD(me, 1, 1.4, e = makeXonoticTextLabel(0, _("Bold font scale:")));
41 setDependentNOT(e, "hud_panel_centerprint_time", 0);
42 me.TD(me, 1, 2.6, e = makeXonoticSlider(0.5, 3, 0.1, "hud_panel_centerprint_fontscale_bold"));
43 setDependentNOT(e, "hud_panel_centerprint_time", 0);
44 me.TR(me);
45 me.TD(me, 1, 1.4, e = makeXonoticTextLabel(0, _("Title font scale:")));
46 setDependentNOT(e, "hud_panel_centerprint_time", 0);
47 me.TD(me, 1, 2.6, e = makeXonoticSlider(0.5, 4, 0.1, "hud_panel_centerprint_fontscale_title"));
48 setDependentNOT(e, "hud_panel_centerprint_time", 0);
49 me.TR(me);
50 me.TD(me, 1, 4, e = makeXonoticCheckBox(0, "hud_panel_centerprint_flip", _("Flip messages order")));
51 setDependentNOT(e, "hud_panel_centerprint_time", 0);
52
53 me.TR(me);
54 me.TD(me, 1, 4, e = makeXonoticTextLabel(0, _("Text alignment:")));
55 setDependentNOT(e, "hud_panel_centerprint_time", 0);
56 me.TR(me);
57 me.TDempty(me, 0.2);
58 me.TD(me, 1, 3.8/3, e = makeXonoticRadioButton(2, "hud_panel_centerprint_align", "0", _("Left")));
59 setDependentNOT(e, "hud_panel_centerprint_time", 0);
60 me.TD(me, 1, 3.8/3, e = makeXonoticRadioButton(2, "hud_panel_centerprint_align", "0.5", _("Center")));
61 setDependentNOT(e, "hud_panel_centerprint_time", 0);
62 me.TD(me, 1, 3.8/3, e = makeXonoticRadioButton(2, "hud_panel_centerprint_align", "1", _("Right")));
63 setDependentNOT(e, "hud_panel_centerprint_time", 0);
64}
var entity(vector mins, vector maxs,.entity tofield) findbox_tofield_OrFallback
#define ZCTX(s)
Definition i18n.qh:68
void dialog_hudpanel_main_checkbox(entity me, string panelname)
Definition util.qc:722
void setDependentNOT(entity e, string theCvarName, float theCvarValue)
Definition util.qc:192
void dialog_hudpanel_main_settings(entity me, string panelname)
Definition util.qc:731
entity makeXonoticTextLabel(float theAlign, string theText)
Definition textlabel.qc:3
entity makeXonoticCheckBox(float isInverted, string theCvar, string theText)
Definition checkbox.qc:28
entity makeXonoticMixedSlider(string theCvar)
entity makeXonoticRadioButton(float theGroup, string theCvar, string theValue, string theText)
entity makeXonoticSlider(float theValueMin, float theValueMax, float theValueStep, string theCvar)
Definition slider.qc:10

References dialog_hudpanel_main_checkbox(), dialog_hudpanel_main_settings(), entity(), makeXonoticCheckBox(), makeXonoticMixedSlider(), makeXonoticRadioButton(), makeXonoticSlider(), makeXonoticTextLabel(), setDependentNOT(), and ZCTX.