Pyrogenesis  trunk
JSInterface_GUISize.h
Go to the documentation of this file.
1 /* Copyright (C) 2021 Wildfire Games.
2  * This file is part of 0 A.D.
3  *
4  * 0 A.D. is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * 0 A.D. is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with 0 A.D. If not, see <http://www.gnu.org/licenses/>.
16  */
17 
18 #ifndef INCLUDED_JSI_GUISIZE
19 #define INCLUDED_JSI_GUISIZE
20 
21 #include "ps/CStr.h"
24 
25 namespace JSI_GUISize
26 {
27  extern JSClass JSI_class;
28  extern JSClassOps JSI_classops;
29  extern JSPropertySpec JSI_props[];
30  extern JSFunctionSpec JSI_methods[];
31 
32  void RegisterScriptClass(ScriptInterface& scriptInterface);
33 
34  bool construct(JSContext* cx, uint argc, JS::Value* vp);
35  bool toString(JSContext* cx, uint argc, JS::Value* vp);
36 
37  CStr ToPercentString(double pix, double per);
38 }
39 
40 #endif // INCLUDED_JSI_GUISIZE
JSPropertySpec JSI_props[]
void RegisterScriptClass(ScriptInterface &scriptInterface)
Definition: JSInterface_GUISize.cpp:43
CStr ToPercentString(double pix, double per)
Definition: JSInterface_GUISize.cpp:97
bool construct(JSContext *cx, uint argc, JS::Value *vp)
Definition: JSInterface_GUISize.cpp:48
Config::Value_type Value
Definition: json_spirit_value.h:182
bool toString(JSContext *cx, uint argc, JS::Value *vp)
Definition: JSInterface_GUISize.cpp:105
JSFunctionSpec JSI_methods[]
Definition: JSInterface_GUISize.cpp:37
Definition: JSInterface_GUISize.h:25
unsigned int uint
Definition: types.h:42
Abstraction around a SpiderMonkey JS::Realm.
Definition: ScriptInterface.h:71
JSClass JSI_class
Definition: JSInterface_GUISize.cpp:26
JSClassOps JSI_classops
Definition: JSInterface_GUISize.cpp:30