Xonotic
dialog_quit.qc File Reference
#include "dialog_quit.qh"
#include "textlabel.qh"
#include "commandbutton.qh"
#include "button.qh"
+ Include dependency graph for dialog_quit.qc:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void XonoticQuitDialog_fill (entity me)
 

Function Documentation

◆ XonoticQuitDialog_fill()

void XonoticQuitDialog_fill ( entity  me)

Definition at line 7 of file dialog_quit.qc.

References entity(), and makeXonoticTextLabel().

8 {
9  entity e;
10  me.TR(me);
11  me.TD(me, 1, 2, makeXonoticTextLabel(0.5, _("Are you sure you want to quit?")));
12  me.TR(me);
13  me.TR(me);
14  me.TD(me, 1, 1, e = makeXonoticCommandButton_T(_("Yes"), '1 0 0', "echo ]quit; quit", 0,
15  _("Back to work...")));
16  me.TD(me, 1, 1, e = makeXonoticButton_T(_("No"), '0 1 0',
17  _("I got some more fragging to do!")));
18  e.onClick = Dialog_Close;
19  e.onClickEntity = me;
20 }
entity() spawn
entity makeXonoticTextLabel(float theAlign, string theText)
Definition: textlabel.qc:3
entity makeXonoticCommandButton_T(string theText, vector theColor, string theCommand, int theFlags, string theTooltip)
Definition: commandbutton.qc:3
+ Here is the call graph for this function: