Xonotic
radiobutton.qh File Reference
+ Include dependency graph for radiobutton.qh:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  XonoticRadioButton
 

Functions

entity makeXonoticRadioButton (float, string, string, string)
 
entity makeXonoticRadioButton_T (float, string, string, string, string theTooltip)
 

Function Documentation

◆ makeXonoticRadioButton()

entity makeXonoticRadioButton ( float  ,
string  ,
string  ,
string   
)

Definition at line 10 of file radiobutton.qc.

References makeXonoticRadioButton_T(), and string_null.

Referenced by XonoticGameCrosshairSettingsTab_fill(), and XonoticGameViewSettingsTab_fill().

11 {
12  return makeXonoticRadioButton_T(theGroup, theCvar, theValue, theText, string_null);
13 }
string string_null
Definition: nil.qh:9
entity makeXonoticRadioButton_T(float theGroup, string theCvar, string theValue, string theText, string theTooltip)
Definition: radiobutton.qc:3
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ makeXonoticRadioButton_T()

entity makeXonoticRadioButton_T ( float  ,
string  ,
string  ,
string  ,
string  theTooltip 
)

Definition at line 3 of file radiobutton.qc.

References entity(), and NEW.

Referenced by makeXonoticRadioButton().

4 {
5  entity me;
7  me.configureXonoticRadioButton(me, theGroup, theCvar, theValue, theText, theTooltip);
8  return me;
9 }
#define NEW(cname,...)
Definition: oo.qh:105
entity() spawn
+ Here is the call graph for this function:
+ Here is the caller graph for this function: