Xonotic QuakeC
The free, fast arena FPS with crisp movement and a wide array of weapons
inputbox.qh File Reference
Include dependency graph for inputbox.qh:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  XonoticInputBox

Functions

entity makeXonoticInputBox (bool, string)
entity makeXonoticInputBox_T (bool, string, string theTooltip)

Function Documentation

◆ makeXonoticInputBox()

entity makeXonoticInputBox ( bool doEditColorCodes,
string theCvar )

Definition at line 10 of file inputbox.qc.

11{
12 return makeXonoticInputBox_T(doEditColorCodes, theCvar, string_null);
13}
string string_null
Definition nil.qh:9
entity makeXonoticInputBox_T(bool doEditColorCodes, string theCvar, string theTooltip)
Definition inputbox.qc:3

References entity(), makeXonoticInputBox_T(), and string_null.

Referenced by XonoticCvarsDialog_fill(), XonoticDemoBrowserTab_fill(), XonoticHUDExitDialog_fill(), XonoticMusicPlayerTab_fill(), XonoticSandboxToolsDialog_fill(), XonoticScreenshotBrowserTab_fill(), XonoticServerListTab_fill(), and XonoticUserbindEditDialog_fill().

◆ makeXonoticInputBox_T()

entity makeXonoticInputBox_T ( bool doEditColorCodes,
string theCvar,
string theTooltip )

Definition at line 3 of file inputbox.qc.

4{
5 entity me;
7 me.configureXonoticInputBox(me, doEditColorCodes, theCvar, theTooltip);
8 return me;
9}
var entity(vector mins, vector maxs,.entity tofield) findbox_tofield_OrFallback
#define NEW(cname,...)
Definition oo.qh:117

References entity(), and NEW.

Referenced by makeXonoticInputBox(), XonoticFirstRunDialog_fill(), XonoticGuideTab_fill(), XonoticInputSettingsTab_fill(), XonoticProfileTab_fill(), and XonoticServerCreateTab_fill().