2009-04-18 10:00:33 -07:00
|
|
|
/* Copyright (C) 2009 Wildfire Games.
|
|
|
|
|
* This file is part of 0 A.D.
|
|
|
|
|
*
|
|
|
|
|
* 0 A.D. is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* 0 A.D. is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with 0 A.D. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2014-01-04 02:14:53 -08:00
|
|
|
#include "scriptinterface/ScriptInterface.h"
|
2004-07-08 08:23:47 -07:00
|
|
|
|
2007-05-07 09:33:24 -07:00
|
|
|
#ifndef INCLUDED_JSI_IGUIOBJECT
|
|
|
|
|
#define INCLUDED_JSI_IGUIOBJECT
|
2004-07-08 08:23:47 -07:00
|
|
|
|
|
|
|
|
namespace JSI_IGUIObject
|
|
|
|
|
{
|
|
|
|
|
extern JSClass JSI_class;
|
|
|
|
|
extern JSPropertySpec JSI_props[];
|
|
|
|
|
extern JSFunctionSpec JSI_methods[];
|
2015-01-24 06:46:52 -08:00
|
|
|
bool getProperty(JSContext* cx, JS::HandleObject obj, JS::HandleId id, JS::MutableHandleValue vp);
|
|
|
|
|
bool setProperty(JSContext* cx, JS::HandleObject obj, JS::HandleId id, bool UNUSED(strict), JS::MutableHandleValue vp);
|
|
|
|
|
bool construct(JSContext* cx, uint argc, jsval* vp);
|
|
|
|
|
bool toString(JSContext* cx, uint argc, jsval* vp);
|
|
|
|
|
bool focus(JSContext* cx, uint argc, jsval* vp);
|
|
|
|
|
bool blur(JSContext* cx, uint argc, jsval* vp);
|
|
|
|
|
bool getComputedSize(JSContext* cx, uint argc, jsval* vp);
|
2014-01-04 02:14:53 -08:00
|
|
|
void init(ScriptInterface& scriptInterface);
|
2004-07-08 08:23:47 -07:00
|
|
|
}
|
|
|
|
|
|
2004-07-10 14:23:06 -07:00
|
|
|
#endif
|