1
0
forked from 0ad/0ad
0ad/source/tools/atlas/wxJS/gui/control/chklstbxchk.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

101 lines
3.0 KiB
C++

#include "precompiled.h"
/*
* wxJavaScript - chklstbxchk.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: chklstbxchk.cpp 711 2007-05-14 20:59:29Z fbraem $
*/
// chklstbx.cpp
#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif
#include "../../common/main.h"
#include "../../common/index.h"
#include "chklstbxchk.h"
#include "chklstbx.h"
using namespace wxjs;
using namespace wxjs::gui;
/***
* <file>control/chklstbxchk</file>
* <module>gui</module>
* <class name="wxCheckListBoxItem">
* wxCheckListBoxItem is a helper class used by wxJS to
* provide the use of an array to check or uncheck an item
* of a @wxCheckListBox. The following sample shows a @wxCheckListBox with the first item checked.
* <pre><code class="whjs">
* dlg = new wxDialog(null, -1, "Test", new wxPoint(0, 0), new wxSize(200, 200));
* items = new Array();
* items[0] = "item 1";
* items[1] = "item 2";
* items[2] = "item 3";
* choice = new wxCheckListBox(dlg, -1, wxDefaultPosition, new wxSize(150, 150), items);
* choice.checked[0] = true;
* dlg.showModal();
* </code></pre>
* </class>
*/
WXJS_INIT_CLASS(CheckListBoxItem, "wxCheckListBoxItem", 0)
bool CheckListBoxItem::GetProperty(Index *p, JSContext *cx, JSObject *obj, int id, jsval *vp)
{
JSObject *parent = JS_GetParent(cx, obj);
wxASSERT_MSG(parent != NULL, wxT("No parent found for wxCheckListBoxItem"));
if ( id >= 0 )
{
p->SetIndex(id);
wxCheckListBox *box = CheckListBox::GetPrivate(cx, parent);
if ( box == NULL )
return false;
*vp = ToJS(cx, box->IsChecked(id));
}
return true;
}
bool CheckListBoxItem::SetProperty(Index* WXUNUSED(p),
JSContext *cx,
JSObject *obj,
int id,
jsval *vp)
{
JSObject *parent = JS_GetParent(cx, obj);
wxASSERT_MSG(parent != NULL, wxT("No parent found for CheckListBoxItem"));
if ( id >= 0 )
{
wxCheckListBox *box = CheckListBox::GetPrivate(cx, parent);
if ( box == NULL )
return false;
bool check;
if ( FromJS(cx, *vp, check) )
box->Check(id, check);
}
return true;
}