]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/util.qh
Merge branch 'master' of git://de.git.xonotic.org/xonotic/xonotic-data.pk3dir
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / util.qh
1 void forAllDescendants(entity root, void(entity, entity) funcPre, void(entity, entity) funcPost, entity pass);
2 void saveAllCvars(entity root);
3 void loadAllCvars(entity root);
4
5 void makeMulti(entity me, string otherCvars);
6 void makeCallback(entity me, entity cbent, void(entity, entity) cbfunc);
7
8 void setDependent(entity e, string theCvarName, float theCvarMin, float theCvarMax);
9 void setDependentAND(entity e, string theCvarName, float theCvarMin, float theCvarMax, string theCvar2Name, float theCvar2Min, float theCvar2Max);
10 void setDependentOR(entity e, string theCvarName, float theCvarMin, float theCvarMax, string theCvar2Name, float theCvar2Min, float theCvar2Max);
11 void setDependentAND3(entity e, string theCvarName, float theCvarMin, float theCvarMax, string theCvar2Name, float theCvar2Min, float theCvar2Max, string theCvar3Name, float theCvar3Min, float theCvar3Max);
12 void setDependentStringNotEqual(entity e, string theCvarName, string theCvarValue);
13 void setDependentWeird(entity e, float(entity) func);
14
15 float tooltipdb;
16 void loadTooltips();
17 void unloadTooltips();
18 string getZonedTooltipForIdentifier(string s);
19
20 string resolvemod(string m);
21
22 string HUD_Panel_GetSettingName(float setting);
23
24 float URI_GET_DISCARD = 0;
25
26 float URI_GET_UPDATENOTIFICATION = 1;
27 void UpdateNotification_URI_Get_Callback(float id, float status, string data);
28
29 float URI_GET_CURL = 2;
30 float URI_GET_CURL_END = 9;
31 void Curl_URI_Get_Callback(float id, float status, string data);
32
33 void URI_Get_Callback(float id, float status, string data);