1
0
forked from 0ad/0ad
0ad/source/tools/atlas/wxJS/gui/control/coldata.cpp
Ykkrosh 53bcba3368 Atlas: Updated wxJS to latest SVN version. Made the JS runtime have a greater lifetime than all the wx windows, to avoid garbage collection problems.
IGUIObject: Cache the JSObject*, to prevent some frequent allocation
while running GUI scripts.
JSInterface_IGUIObject: Fixed garbage collection issues.
JSInterface_IGUIObject, ScriptGlue: Changed to the JS_THREADSAFE form of
JS_GetClass.
Util: Avoid startup warnings on Linux caused by using unimplemented
cpu_* functions that aren't needed for anything important yet.
sysdep/unix: Changed to native line endings.

This was SVN commit r5154.
2007-06-08 22:56:01 +00:00

186 lines
5.1 KiB
C++

#include "precompiled.h"
/*
* wxJavaScript - coldata.cpp
*
* Copyright (c) 2002-2007 Franky Braem and the wxJavaScript project
*
* Project Info: http://www.wxjavascript.net or http://wxjs.sourceforge.net
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This library 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 Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*
* $Id: coldata.cpp 672 2007-04-12 20:29:39Z fbraem $
*/
#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif
#include "../../common/main.h"
#include "../../common/index.h"
#include "../misc/colour.h"
#include "coldata.h"
using namespace wxjs;
using namespace wxjs::gui;
/***
* <file>control/colourdata</file>
* <module>gui</module>
* <class name="wxColourData">
* This class holds a variety of information related to colour dialogs.
* See @wxColourDialog.
* </class>
*/
WXJS_INIT_CLASS(ColourData, "wxColourData", 0)
/***
* <properties>
* <property name="chooseFull" type="Boolean">
* Under Windows, determines whether the Windows colour dialog will
* display the full dialog with custom colour selection controls.
* Has no meaning under other platforms.
* </property>
* <property name="colour" type="@wxColour">
* Get/Set the current colour associated with the colour dialog.
* </property>
* <property name="customColour" type="Array">
* Get/Set the ith custom colour associated with the colour dialog.
* The index must be between 0 and 15. The element is a @wxColour.
* </property>
* </properties>
*/
WXJS_BEGIN_PROPERTY_MAP(ColourData)
WXJS_PROPERTY(P_CUSTOM_COLOUR, "customColour")
WXJS_PROPERTY(P_CHOOSE_FULL, "chooseFull")
WXJS_PROPERTY(P_COLOUR, "colour")
WXJS_END_PROPERTY_MAP()
bool ColourData::GetProperty(wxColourData *p,
JSContext *cx,
JSObject *obj,
int id,
jsval *vp)
{
switch(id)
{
case P_CHOOSE_FULL:
*vp = ToJS(cx, p->GetChooseFull());
break;
case P_COLOUR:
*vp = Colour::CreateObject(cx, new wxColour(p->GetColour()));
break;
case P_CUSTOM_COLOUR:
*vp = CustomColour::CreateObject(cx, new Index(0), obj);
break;
}
return true;
}
bool ColourData::SetProperty(wxColourData* p,
JSContext *cx,
JSObject* WXUNUSED(obj),
int id,
jsval *vp)
{
switch (id)
{
case P_CHOOSE_FULL:
{
bool full;
if ( FromJS(cx, *vp, full) )
p->SetChooseFull(full);
break;
}
case P_COLOUR:
{
wxColour *colour = Colour::GetPrivate(cx, *vp);
if ( colour != NULL )
p->SetColour(*colour);
break;
}
}
return true;
}
/***
* <ctor>
* <function />
* <desc>
* Constructs a new wxColourData object.
* The selected colour is black. And @wxColourData#chooseFull is true.
* </desc>
* </ctor>
*/
wxColourData* ColourData::Construct(JSContext* WXUNUSED(cx),
JSObject* WXUNUSED(obj),
uintN WXUNUSED(argc),
jsval* WXUNUSED(argv),
bool WXUNUSED(constructing))
{
return new wxColourData();
}
WXJS_INIT_CLASS(CustomColour, "wxCustomColour", 0)
bool CustomColour::GetProperty(Index *p,
JSContext *cx,
JSObject *obj,
int id,
jsval *vp)
{
if ( id >= 0 )
{
p->SetIndex(id);
JSObject *objColourData = JS_GetParent(cx, obj);
wxASSERT_MSG(objColourData != NULL, wxT("wxCustomColour has no parent !"));
wxColourData *colourData = ColourData::GetPrivate(cx, objColourData);
if ( colourData == NULL )
return false;
*vp = Colour::CreateObject(cx,
new wxColour(colourData->GetCustomColour(id)));
}
return true;
}
bool CustomColour::SetProperty(Index* WXUNUSED(p),
JSContext *cx,
JSObject *obj,
int id,
jsval *vp)
{
if ( id >= 0 )
{
JSObject *objColourData = JS_GetParent(cx, obj);
wxASSERT_MSG(objColourData != NULL,
wxT("wxCustomColour has no parent !"));
wxColourData *colourData = ColourData::GetPrivate(cx, objColourData);
if ( colourData == NULL )
return false;
wxColour *colour = Colour::GetPrivate(cx, *vp);
if ( colour != NULL )
colourData->SetCustomColour(id, *colour);
}
return true;
}