2003-05-08 03:06:46 +00:00
|
|
|
/*
|
|
|
|
|
*
|
|
|
|
|
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
|
|
|
|
|
*
|
|
|
|
|
* This program 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. The Blender
|
|
|
|
|
* Foundation also sells licenses for use in proprietary software under
|
|
|
|
|
* the Blender License. See http://www.blender.org/BL/ for information
|
|
|
|
|
* about this.
|
|
|
|
|
*
|
|
|
|
|
* This program 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 this program; if not, write to the Free Software Foundation,
|
2003-12-14 01:18:09 +00:00
|
|
|
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
2003-05-08 03:06:46 +00:00
|
|
|
*
|
|
|
|
|
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* This is a new part of Blender.
|
|
|
|
|
*
|
|
|
|
|
* Contributor(s): Willian P. Germano
|
|
|
|
|
*
|
|
|
|
|
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* This file is the Blender.Draw part of opy_draw.c, from the old
|
|
|
|
|
* bpython/intern dir, with minor changes to adapt it to the new Python
|
2003-12-14 01:18:09 +00:00
|
|
|
* implementation. Non-trivial original comments are marked with an
|
2003-05-08 03:06:46 +00:00
|
|
|
* @ symbol at their beginning. */
|
|
|
|
|
|
|
|
|
|
#include "Draw.h"
|
|
|
|
|
|
2003-06-14 10:10:01 +00:00
|
|
|
/* declared in ../BPY_extern.h,
|
|
|
|
|
* used to control global dictionary persistence: */
|
|
|
|
|
extern short EXPP_releaseGlobalDict;
|
|
|
|
|
|
2003-05-08 03:06:46 +00:00
|
|
|
static void Button_dealloc(PyObject *self)
|
|
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
Button *but = (Button*)self;
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
if(but->type == 3) MEM_freeN (but->val.asstr);
|
|
|
|
|
|
|
|
|
|
PyObject_DEL (self);
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *Button_getattr(PyObject *self, char *name)
|
|
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
Button *but = (Button*)self;
|
|
|
|
|
|
|
|
|
|
if(strcmp(name, "val") == 0) {
|
|
|
|
|
if (but->type==1)
|
|
|
|
|
return Py_BuildValue("i", but->val.asint);
|
|
|
|
|
else if (but->type==2)
|
|
|
|
|
return Py_BuildValue("f", but->val.asfloat);
|
|
|
|
|
else if (but->type==3)
|
|
|
|
|
return Py_BuildValue("s", but->val.asstr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PyErr_SetString(PyExc_AttributeError, name);
|
|
|
|
|
return NULL;
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int Button_setattr(PyObject *self, char *name, PyObject *v)
|
|
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
Button *but= (Button*) self;
|
|
|
|
|
|
|
|
|
|
if(strcmp(name, "val") == 0) {
|
|
|
|
|
if (but->type==1)
|
|
|
|
|
PyArg_Parse(v, "i", &but->val.asint);
|
|
|
|
|
else if (but->type==2)
|
|
|
|
|
PyArg_Parse(v, "f", &but->val.asfloat);
|
|
|
|
|
else if (but->type==3) {
|
|
|
|
|
char *newstr;
|
|
|
|
|
|
|
|
|
|
PyArg_Parse(v, "s", &newstr);
|
|
|
|
|
strncpy(but->val.asstr, newstr, but->slen);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
PyErr_SetString(PyExc_AttributeError, name);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *Button_repr(PyObject *self)
|
|
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
return PyObject_Repr(Button_getattr(self, "val"));
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static Button *newbutton (void)
|
|
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
Button *but= (Button *) PyObject_NEW(Button, &Button_Type);
|
|
|
|
|
|
|
|
|
|
return but;
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* GUI interface routines */
|
|
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
static void exit_pydraw(SpaceScript *sc, short error)
|
2003-05-08 03:06:46 +00:00
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
Script *script = NULL;
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
if (!sc || !sc->script) return;
|
|
|
|
|
|
|
|
|
|
script = sc->script;
|
|
|
|
|
|
|
|
|
|
if (error) {
|
|
|
|
|
PyErr_Print();
|
|
|
|
|
scrarea_queue_redraw(sc->area);
|
|
|
|
|
}
|
2003-06-09 20:07:43 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
Py_XDECREF((PyObject *) script->py_draw);
|
|
|
|
|
Py_XDECREF((PyObject *) script->py_event);
|
|
|
|
|
Py_XDECREF((PyObject *) script->py_button);
|
2003-06-09 20:07:43 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
script->py_draw = script->py_event = script->py_button = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void exec_callback(SpaceScript *sc, PyObject *callback, PyObject *args)
|
|
|
|
|
{
|
|
|
|
|
PyObject *result = PyObject_CallObject (callback, args);
|
|
|
|
|
|
|
|
|
|
if (result == NULL && sc->script) { /* errors in the script */
|
|
|
|
|
if (sc->script->filename == NULL) { /* if it's a Blender Text script */
|
|
|
|
|
Text *text = G.main->text.first;
|
|
|
|
|
while (text) { /* find it and free its compiled code */
|
|
|
|
|
if (!strcmp(text->id.name+2, sc->script->id.name+2))
|
|
|
|
|
BPY_free_compiled_text(text);
|
|
|
|
|
}
|
|
|
|
|
text = text->id.next;
|
|
|
|
|
}
|
|
|
|
|
exit_pydraw(sc, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Py_XDECREF (result);
|
|
|
|
|
Py_DECREF (args);
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
/* BPY_spacescript_do_pywin_draw, the static spacescript_do_pywin_buttons and
|
|
|
|
|
* BPY_spacescript_do_pywin_event are the three functions responsible for
|
2003-05-13 01:54:28 +00:00
|
|
|
* calling the draw, buttons and event callbacks registered with Draw.Register
|
|
|
|
|
* (see Method_Register below). They are called (only the two BPY_ ones)
|
2003-12-14 01:18:09 +00:00
|
|
|
* from blender/src/drawscript.c */
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
void BPY_spacescript_do_pywin_draw(SpaceScript *sc)
|
2003-05-08 03:06:46 +00:00
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
uiBlock *block;
|
|
|
|
|
char butblock[20];
|
|
|
|
|
Script *script = sc->script;
|
|
|
|
|
|
|
|
|
|
sprintf(butblock, "win %d", curarea->win);
|
|
|
|
|
block = uiNewBlock(&curarea->uiblocks, butblock, UI_EMBOSSX,
|
|
|
|
|
UI_HELV, curarea->win);
|
|
|
|
|
|
|
|
|
|
if (script->py_draw) {
|
|
|
|
|
glPushAttrib(GL_ALL_ATTRIB_BITS);
|
|
|
|
|
exec_callback(sc, script->py_draw, Py_BuildValue("()"));
|
|
|
|
|
glPopAttrib();
|
|
|
|
|
} else {
|
|
|
|
|
glClearColor(0.4375, 0.4375, 0.4375, 0.0);
|
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
uiDrawBlock(block);
|
|
|
|
|
|
|
|
|
|
curarea->win_swap = WIN_BACK_OK;
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
static void spacescript_do_pywin_buttons(SpaceScript *sc, unsigned short event)
|
2003-05-08 03:06:46 +00:00
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
if (sc->script->py_button) {
|
|
|
|
|
exec_callback(sc, sc->script->py_button, Py_BuildValue("(i)", event));
|
|
|
|
|
}
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
void BPY_spacescript_do_pywin_event(SpaceScript *sc, unsigned short event, short val)
|
2003-05-08 03:06:46 +00:00
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
if (event == QKEY && G.qual & (LR_ALTKEY|LR_CTRLKEY)) {
|
|
|
|
|
/* finish script: user pressed ALT+Q or CONTROL+Q */
|
|
|
|
|
Script *script = sc->script;
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
exit_pydraw(sc, 0);
|
|
|
|
|
|
|
|
|
|
script->flags &=~SCRIPT_GUI; /* we're done with this script */
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (val) {
|
|
|
|
|
if (uiDoBlocks(&curarea->uiblocks, event)!=UI_NOTHING ) event = 0;
|
|
|
|
|
|
|
|
|
|
if (event == UI_BUT_EVENT)
|
|
|
|
|
spacescript_do_pywin_buttons(sc, val);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (sc->script->py_event)
|
|
|
|
|
exec_callback(sc, sc->script->py_event, Py_BuildValue("(ii)", event, val));
|
|
|
|
|
}
|
2003-05-08 03:06:46 +00:00
|
|
|
|
|
|
|
|
static PyObject *Method_Exit (PyObject *self, PyObject *args)
|
2003-06-29 14:35:49 +00:00
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
SpaceScript *sc;
|
|
|
|
|
Script *script;
|
|
|
|
|
|
|
|
|
|
/* if users call Draw.Exit when we are already out of the SPACE_SCRIPT, we
|
|
|
|
|
* simply return, for compatibility */
|
|
|
|
|
if (curarea->spacetype == SPACE_SCRIPT) sc = curarea->spacedata.first;
|
|
|
|
|
else return EXPP_incr_ret (Py_None);
|
2003-06-14 10:10:01 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
if (!PyArg_ParseTuple(args, ""))
|
|
|
|
|
return EXPP_ReturnPyObjError (PyExc_AttributeError,
|
|
|
|
|
"expected empty argument list");
|
2003-05-13 01:54:28 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
exit_pydraw(sc, 0);
|
2003-06-14 10:10:01 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
script = sc->script;
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
/* remove our lock to the current namespace */
|
|
|
|
|
script->flags &=~SCRIPT_GUI;
|
|
|
|
|
|
|
|
|
|
return EXPP_incr_ret (Py_None);
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
/* Method_Register (Draw.Register) registers callbacks for drawing, events
|
|
|
|
|
* and gui button events, so a script can continue executing after the
|
|
|
|
|
* interpreter reached its end and returned control to Blender. Everytime
|
|
|
|
|
* the SPACE_SCRIPT window with this script is redrawn, the registered
|
|
|
|
|
* callbacks are executed and deleted (a new call to Register re-inserts them
|
|
|
|
|
* or new ones).*/
|
2003-05-08 03:06:46 +00:00
|
|
|
static PyObject *Method_Register (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
PyObject *newdrawc = NULL, *neweventc = NULL, *newbuttonc = NULL;
|
|
|
|
|
SpaceScript *sc;
|
|
|
|
|
Script *script;
|
|
|
|
|
int startspace = 0;
|
|
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple(args, "O|OO", &newdrawc, &neweventc, &newbuttonc))
|
|
|
|
|
return EXPP_ReturnPyObjError (PyExc_TypeError,
|
|
|
|
|
"expected one or three PyObjects");
|
|
|
|
|
|
|
|
|
|
if (!PyCallable_Check(newdrawc)) newdrawc = NULL;
|
|
|
|
|
if (!PyCallable_Check(neweventc)) neweventc = NULL;
|
|
|
|
|
if (!PyCallable_Check(newbuttonc)) newbuttonc = NULL;
|
|
|
|
|
|
|
|
|
|
if (!(newdrawc || neweventc || newbuttonc))
|
|
|
|
|
return EXPP_incr_ret(Py_None);
|
|
|
|
|
|
|
|
|
|
startspace = curarea->spacetype;
|
2003-06-29 14:35:49 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
/* first make sure the current area is of type SPACE_SCRIPT */
|
|
|
|
|
if (startspace != SPACE_SCRIPT) newspace (curarea, SPACE_SCRIPT);
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
sc = curarea->spacedata.first;
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
/* this is a little confusing: we need to know which script is being executed
|
|
|
|
|
* now, so we can preserve its namespace from being deleted.
|
|
|
|
|
* There are two possibilities:
|
|
|
|
|
* a) One new script was created and the interpreter still hasn't returned
|
|
|
|
|
* from executing it.
|
|
|
|
|
* b) Any number of scripts were executed but left registered callbacks and
|
|
|
|
|
* so were not deleted yet. */
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
/* To find out if we're dealing with a) or b), we start with the last
|
|
|
|
|
* created one: */
|
|
|
|
|
script = G.main->script.last;
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
if (!script) {
|
|
|
|
|
return EXPP_ReturnPyObjError (PyExc_RuntimeError,
|
|
|
|
|
"Draw.Register: couldn't get pointer to script struct");
|
|
|
|
|
}
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
/* if the flag SCRIPT_RUNNING is set, this script is case a): */
|
|
|
|
|
if (!(script->flags & SCRIPT_RUNNING)) {
|
|
|
|
|
script = sc->script;
|
|
|
|
|
}
|
|
|
|
|
/* otherwise it's case b) and the script we want is here: */
|
|
|
|
|
else sc->script = script;
|
2003-05-13 01:54:28 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
/* Now we have the right script and can set a lock so its namespace can't be
|
|
|
|
|
* deleted for as long as we need it */
|
|
|
|
|
script->flags |= SCRIPT_GUI;
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
/* save the last space so we can go back to it upon finishing */
|
|
|
|
|
if (!script->lastspace) script->lastspace = startspace;
|
2003-05-13 01:54:28 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
/* clean the old callbacks */
|
|
|
|
|
exit_pydraw(sc, 0);
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
/* prepare the new ones and insert them */
|
|
|
|
|
Py_XINCREF(newdrawc);
|
|
|
|
|
Py_XINCREF(neweventc);
|
|
|
|
|
Py_XINCREF(newbuttonc);
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
script->py_draw = newdrawc;
|
|
|
|
|
script->py_event = neweventc;
|
|
|
|
|
script->py_button = newbuttonc;
|
|
|
|
|
|
|
|
|
|
scrarea_queue_redraw(sc->area);
|
|
|
|
|
|
|
|
|
|
return EXPP_incr_ret (Py_None);
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *Method_Redraw (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
int after= 0;
|
|
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple(args, "|i", &after))
|
|
|
|
|
return EXPP_ReturnPyObjError (PyExc_TypeError,
|
|
|
|
|
"expected int argument (or nothing)");
|
|
|
|
|
|
|
|
|
|
/* XXX shouldn't we redraw all spacescript wins with this script on ?*/
|
|
|
|
|
if (after) addafterqueue(curarea->win, REDRAW, 1);
|
|
|
|
|
else scrarea_queue_winredraw(curarea);
|
|
|
|
|
|
|
|
|
|
return EXPP_incr_ret(Py_None);
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *Method_Draw (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
/*@ If forced drawing is disable queue a redraw event instead */
|
|
|
|
|
if (EXPP_disable_force_draw) {
|
|
|
|
|
scrarea_queue_winredraw(curarea);
|
|
|
|
|
return EXPP_incr_ret (Py_None);
|
|
|
|
|
}
|
2003-05-13 01:54:28 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
if (!PyArg_ParseTuple(args, ""))
|
|
|
|
|
return EXPP_ReturnPyObjError (PyExc_AttributeError,
|
|
|
|
|
"expected empty argument list");
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
scrarea_do_windraw(curarea);
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
screen_swapbuffers();
|
2003-05-13 01:54:28 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
return EXPP_incr_ret (Py_None);
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *Method_Create (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
Button *but;
|
|
|
|
|
PyObject *in;
|
|
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple(args, "O", &in))
|
|
|
|
|
return EXPP_ReturnPyObjError (PyExc_TypeError,
|
|
|
|
|
"expected PyObject argument");
|
|
|
|
|
|
|
|
|
|
but= newbutton();
|
|
|
|
|
if(PyFloat_Check(in)) {
|
|
|
|
|
but->type= 2;
|
|
|
|
|
but->val.asfloat= PyFloat_AsDouble(in);
|
|
|
|
|
} else if (PyInt_Check(in)) {
|
|
|
|
|
but->type= 1;
|
|
|
|
|
but->val.asint= PyInt_AsLong(in);
|
|
|
|
|
} else if (PyString_Check(in)) {
|
|
|
|
|
char *newstr= PyString_AsString(in);
|
|
|
|
|
|
|
|
|
|
but->type= 3;
|
|
|
|
|
but->slen= strlen(newstr);
|
|
|
|
|
but->val.asstr= MEM_mallocN(but->slen+1, "button string");
|
|
|
|
|
|
|
|
|
|
strcpy(but->val.asstr, newstr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (PyObject *) but;
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static uiBlock *Get_uiBlock(void)
|
|
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
char butblock[32];
|
|
|
|
|
|
|
|
|
|
sprintf(butblock, "win %d", curarea->win);
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
return uiGetBlock(butblock, curarea);
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *Method_Button (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
uiBlock *block;
|
|
|
|
|
char *name, *tip= NULL;
|
|
|
|
|
int event;
|
|
|
|
|
int x, y, w, h;
|
|
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple(args, "siiiii|s", &name, &event,
|
|
|
|
|
&x, &y, &w, &h, &tip))
|
|
|
|
|
return EXPP_ReturnPyObjError (PyExc_TypeError,
|
|
|
|
|
"expected a string, five ints and optionally another string as arguments");
|
|
|
|
|
|
|
|
|
|
block= Get_uiBlock();
|
|
|
|
|
|
|
|
|
|
if(block) uiDefBut(block, BUT, event, name, x, y, w, h,
|
|
|
|
|
0, 0, 0, 0, 0, tip);
|
|
|
|
|
|
|
|
|
|
return EXPP_incr_ret(Py_None);
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *Method_Menu (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
uiBlock *block;
|
|
|
|
|
char *name, *tip= NULL;
|
|
|
|
|
int event, def;
|
|
|
|
|
int x, y, w, h;
|
|
|
|
|
Button *but;
|
|
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple(args, "siiiiii|s", &name, &event,
|
|
|
|
|
&x, &y, &w, &h, &def, &tip))
|
|
|
|
|
return EXPP_ReturnPyObjError (PyExc_TypeError,
|
|
|
|
|
"expected a string, six ints and optionally another string as arguments");
|
|
|
|
|
|
|
|
|
|
but= newbutton();
|
|
|
|
|
but->type= 1;
|
|
|
|
|
but->val.asint= def;
|
|
|
|
|
|
|
|
|
|
block= Get_uiBlock();
|
|
|
|
|
if(block) uiDefButI(block, MENU, event, name, x, y, w, h,
|
|
|
|
|
&but->val.asint, 0, 0, 0, 0, tip);
|
|
|
|
|
|
|
|
|
|
return (PyObject *) but;
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *Method_Toggle (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
uiBlock *block;
|
|
|
|
|
char *name, *tip= NULL;
|
|
|
|
|
int event;
|
|
|
|
|
int x, y, w, h, def;
|
|
|
|
|
Button *but;
|
|
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple(args, "siiiiii|s", &name, &event,
|
|
|
|
|
&x, &y, &w, &h, &def, &tip))
|
|
|
|
|
return EXPP_ReturnPyObjError (PyExc_TypeError,
|
|
|
|
|
"expected a string, six ints and optionally another string as arguments");
|
|
|
|
|
|
|
|
|
|
but= newbutton();
|
|
|
|
|
but->type= 1;
|
|
|
|
|
but->val.asint= def;
|
|
|
|
|
|
|
|
|
|
block= Get_uiBlock();
|
|
|
|
|
if(block) uiDefButI(block, TOG, event, name, x, y, w, h,
|
|
|
|
|
&but->val.asint, 0, 0, 0, 0, tip);
|
|
|
|
|
|
|
|
|
|
return (PyObject *) but;
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*@DO NOT TOUCH THIS FUNCTION !
|
2003-12-14 01:18:09 +00:00
|
|
|
Redrawing a slider inside its own callback routine is actually forbidden
|
|
|
|
|
with the current toolkit architecture (button routines are not reentrant).
|
|
|
|
|
But it works anyway.
|
|
|
|
|
XXX This is condemned to be dinosource in future - it's a hack.
|
|
|
|
|
*/
|
2003-05-08 03:06:46 +00:00
|
|
|
|
|
|
|
|
static void py_slider_update(void *butv, void *data2_unused)
|
|
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
uiBut *but= butv;
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
EXPP_disable_force_draw= 1;
|
|
|
|
|
/*@
|
|
|
|
|
Disable forced drawing, otherwise the button object which
|
|
|
|
|
is still being used might be deleted
|
|
|
|
|
*/
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-07-07 15:50:44 +00:00
|
|
|
/*@
|
2003-12-14 01:18:09 +00:00
|
|
|
spacetext_do_pywin_buttons(curarea->spacedata.first, but->retval); */
|
2003-07-07 15:50:44 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
g_window_redrawn = 0;
|
|
|
|
|
curarea->win_swap= WIN_BACK_OK;
|
|
|
|
|
/* removed global uiFrontBuf (contact ton when this goes wrong here) */
|
|
|
|
|
spacescript_do_pywin_buttons(curarea->spacedata.first, uiButGetRetVal(but));
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
if (!g_window_redrawn) /*@ if Redraw already called */
|
|
|
|
|
M_Window_Redraw(0, Py_BuildValue("(i)", SPACE_VIEW3D));
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
EXPP_disable_force_draw= 0;
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *Method_Slider (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
uiBlock *block;
|
|
|
|
|
char *name, *tip= NULL;
|
|
|
|
|
int event;
|
|
|
|
|
int x, y, w, h, realtime=1;
|
|
|
|
|
Button *but;
|
|
|
|
|
PyObject *mino, *maxo, *inio;
|
|
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple(args, "siiiiiOOO|is", &name, &event,
|
|
|
|
|
&x, &y, &w, &h, &inio, &mino, &maxo, &realtime, &tip))
|
|
|
|
|
return EXPP_ReturnPyObjError (PyExc_TypeError,
|
|
|
|
|
"expected a string, five ints, three PyObjects\n\
|
|
|
|
|
and optionally another int and string as arguments");
|
|
|
|
|
|
|
|
|
|
but= newbutton();
|
|
|
|
|
if (PyFloat_Check(inio)) {
|
|
|
|
|
float ini, min, max;
|
|
|
|
|
|
|
|
|
|
ini= PyFloat_AsDouble(inio);
|
|
|
|
|
min= PyFloat_AsDouble(mino);
|
|
|
|
|
max= PyFloat_AsDouble(maxo);
|
|
|
|
|
|
|
|
|
|
but->type= 2;
|
|
|
|
|
but->val.asfloat= ini;
|
|
|
|
|
|
|
|
|
|
block= Get_uiBlock();
|
|
|
|
|
if(block) {
|
|
|
|
|
uiBut *ubut;
|
|
|
|
|
ubut= uiDefButF(block, NUMSLI, event, name, x, y, w, h,
|
|
|
|
|
&but->val.asfloat, min, max, 0, 0, tip);
|
|
|
|
|
if (realtime) uiButSetFunc(ubut, py_slider_update, ubut, NULL);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
int ini, min, max;
|
|
|
|
|
|
|
|
|
|
ini= PyInt_AsLong(inio);
|
|
|
|
|
min= PyInt_AsLong(mino);
|
|
|
|
|
max= PyInt_AsLong(maxo);
|
|
|
|
|
|
|
|
|
|
but->type= 1;
|
|
|
|
|
but->val.asint= ini;
|
|
|
|
|
|
|
|
|
|
block= Get_uiBlock();
|
|
|
|
|
if(block) {
|
|
|
|
|
uiBut *ubut;
|
|
|
|
|
ubut= uiDefButI(block, NUMSLI, event, name, x, y, w, h,
|
|
|
|
|
&but->val.asint, min, max, 0, 0, tip);
|
|
|
|
|
if (realtime) uiButSetFunc(ubut, py_slider_update, ubut, NULL);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return (PyObject *) but;
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
static PyObject *Method_Scrollbar (PyObject *self, PyObject *args)
|
2003-05-08 03:06:46 +00:00
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
char *tip= NULL;
|
|
|
|
|
uiBlock *block;
|
|
|
|
|
int event;
|
|
|
|
|
int x, y, w, h, realtime=1;
|
|
|
|
|
Button *but;
|
|
|
|
|
PyObject *mino, *maxo, *inio;
|
|
|
|
|
float ini, min, max;
|
|
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple(args, "iiiiiOOO|is", &event, &x, &y, &w, &h,
|
|
|
|
|
&inio, &mino, &maxo, &realtime, &tip))
|
|
|
|
|
return EXPP_ReturnPyObjError (PyExc_TypeError,
|
|
|
|
|
"expected five ints, three PyObjects and optionally\n\
|
|
|
|
|
another int and string as arguments");
|
|
|
|
|
|
|
|
|
|
if (!PyNumber_Check(inio) || !PyNumber_Check(inio) || !PyNumber_Check(inio))
|
|
|
|
|
return EXPP_ReturnPyObjError (PyExc_AttributeError,
|
|
|
|
|
"expected numbers for initial, min, and max");
|
|
|
|
|
|
|
|
|
|
but= newbutton();
|
|
|
|
|
|
|
|
|
|
if (PyFloat_Check(inio)) but->type= 2;
|
|
|
|
|
else but->type= 1;
|
|
|
|
|
|
|
|
|
|
ini= PyFloat_AsDouble(inio);
|
|
|
|
|
min= PyFloat_AsDouble(mino);
|
|
|
|
|
max= PyFloat_AsDouble(maxo);
|
|
|
|
|
|
|
|
|
|
if (but->type==2) {
|
|
|
|
|
but->val.asfloat= ini;
|
|
|
|
|
block= Get_uiBlock();
|
|
|
|
|
if(block) {
|
|
|
|
|
uiBut *ubut;
|
|
|
|
|
ubut= uiDefButF(block, SCROLL, event, "", x, y, w, h,
|
|
|
|
|
&but->val.asfloat, min, max, 0, 0, tip);
|
|
|
|
|
if (realtime) uiButSetFunc(ubut, py_slider_update, ubut, NULL);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
but->val.asint= ini;
|
|
|
|
|
block= Get_uiBlock();
|
|
|
|
|
if(block) {
|
|
|
|
|
uiBut *ubut;
|
|
|
|
|
ubut= uiDefButI(block, SCROLL, event, "", x, y, w, h,
|
|
|
|
|
&but->val.asint, min, max, 0, 0, tip);
|
|
|
|
|
if (realtime) uiButSetFunc(ubut, py_slider_update, ubut, NULL);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (PyObject *) but;
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *Method_Number (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
uiBlock *block;
|
|
|
|
|
char *name, *tip= NULL;
|
|
|
|
|
int event;
|
|
|
|
|
int x, y, w, h;
|
|
|
|
|
Button *but;
|
|
|
|
|
PyObject *mino, *maxo, *inio;
|
|
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple(args, "siiiiiOOO|s", &name, &event,
|
|
|
|
|
&x, &y, &w, &h, &inio, &mino, &maxo, &tip))
|
|
|
|
|
return EXPP_ReturnPyObjError (PyExc_TypeError,
|
|
|
|
|
"expected a string, five ints, three PyObjects and\n\
|
|
|
|
|
optionally another string as arguments");
|
|
|
|
|
|
|
|
|
|
but= newbutton();
|
|
|
|
|
|
|
|
|
|
if (PyFloat_Check(inio)) {
|
|
|
|
|
float ini, min, max;
|
|
|
|
|
|
|
|
|
|
ini= PyFloat_AsDouble(inio);
|
|
|
|
|
min= PyFloat_AsDouble(mino);
|
|
|
|
|
max= PyFloat_AsDouble(maxo);
|
|
|
|
|
|
|
|
|
|
but->type= 2;
|
|
|
|
|
but->val.asfloat= ini;
|
|
|
|
|
|
|
|
|
|
block= Get_uiBlock();
|
|
|
|
|
if(block) uiDefButF(block, NUM, event, name, x, y, w, h,
|
|
|
|
|
&but->val.asfloat, min, max, 0, 0, tip);
|
|
|
|
|
} else {
|
|
|
|
|
int ini, min, max;
|
|
|
|
|
|
|
|
|
|
ini= PyInt_AsLong(inio);
|
|
|
|
|
min= PyInt_AsLong(mino);
|
|
|
|
|
max= PyInt_AsLong(maxo);
|
|
|
|
|
|
|
|
|
|
but->type= 1;
|
|
|
|
|
but->val.asint= ini;
|
|
|
|
|
|
|
|
|
|
block= Get_uiBlock();
|
|
|
|
|
if(block) uiDefButI(block, NUM, event, name, x, y, w, h,
|
|
|
|
|
&but->val.asint, min, max, 0, 0, tip);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (PyObject *) but;
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *Method_String (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
uiBlock *block;
|
|
|
|
|
char *name, *tip= NULL, *newstr;
|
|
|
|
|
int event;
|
|
|
|
|
int x, y, w, h, len;
|
|
|
|
|
Button *but;
|
|
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple(args, "siiiiisi|s", &name, &event,
|
|
|
|
|
&x, &y, &w, &h, &newstr, &len, &tip))
|
|
|
|
|
return EXPP_ReturnPyObjError (PyExc_TypeError,
|
|
|
|
|
"expected a string, five ints, a string, an int and\n\
|
|
|
|
|
optionally another string as arguments");
|
|
|
|
|
|
|
|
|
|
but= newbutton();
|
|
|
|
|
but->type= 3;
|
|
|
|
|
but->slen= len;
|
|
|
|
|
but->val.asstr= MEM_mallocN(len+1, "button string");
|
|
|
|
|
|
|
|
|
|
strncpy(but->val.asstr, newstr, len);
|
|
|
|
|
but->val.asstr[len]= 0;
|
|
|
|
|
|
|
|
|
|
block= Get_uiBlock();
|
|
|
|
|
if(block) uiDefBut(block, TEX, event, name, x, y, w, h,
|
|
|
|
|
but->val.asstr, 0, len, 0, 0, tip);
|
|
|
|
|
|
|
|
|
|
return (PyObject *) but;
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
2003-06-26 02:03:51 +00:00
|
|
|
static PyObject *Method_GetStringWidth (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
char *text;
|
|
|
|
|
char *font_str = "normal";
|
|
|
|
|
struct BMF_Font *font;
|
|
|
|
|
PyObject *width;
|
2003-06-29 14:35:49 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
if (!PyArg_ParseTuple(args, "s|s", &text, &font_str))
|
|
|
|
|
return EXPP_ReturnPyObjError (PyExc_TypeError,
|
|
|
|
|
"expected one or two string arguments");
|
2003-06-29 14:35:49 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
if (!strcmp (font_str, "normal")) font = (&G)->font;
|
|
|
|
|
else if (!strcmp (font_str, "small" )) font = (&G)->fonts;
|
|
|
|
|
else if (!strcmp (font_str, "tiny" )) font = (&G)->fontss;
|
|
|
|
|
else
|
|
|
|
|
return EXPP_ReturnPyObjError (PyExc_AttributeError,
|
|
|
|
|
"\"font\" must be: 'normal' (default), 'small' or 'tiny'.");
|
2003-06-29 14:35:49 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
width = PyInt_FromLong(BMF_GetStringWidth (font, text));
|
2003-06-29 14:35:49 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
if (!width)
|
|
|
|
|
return EXPP_ReturnPyObjError (PyExc_MemoryError,
|
|
|
|
|
"couldn't create PyInt");
|
2003-06-29 14:35:49 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
return width;
|
2003-06-29 14:35:49 +00:00
|
|
|
}
|
2003-06-26 02:03:51 +00:00
|
|
|
|
2003-06-29 14:35:49 +00:00
|
|
|
static PyObject *Method_Text (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
char *text;
|
|
|
|
|
char *font_str = NULL;
|
|
|
|
|
struct BMF_Font *font;
|
2003-06-26 02:03:51 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
if (!PyArg_ParseTuple(args, "s|s", &text, &font_str))
|
|
|
|
|
return EXPP_ReturnPyObjError (PyExc_TypeError,
|
|
|
|
|
"expected one or two string arguments");
|
2003-06-26 02:03:51 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
if (!font_str) font = (&G)->font;
|
|
|
|
|
else if (!strcmp (font_str, "normal")) font = (&G)->font;
|
|
|
|
|
else if (!strcmp (font_str, "small" )) font = (&G)->fonts;
|
|
|
|
|
else if (!strcmp (font_str, "tiny" )) font = (&G)->fontss;
|
|
|
|
|
else
|
|
|
|
|
return EXPP_ReturnPyObjError (PyExc_AttributeError,
|
|
|
|
|
"\"font\" must be: 'normal' (default), 'small' or 'tiny'.");
|
2003-06-26 02:03:51 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
BMF_DrawString(font, text);
|
2003-06-26 02:03:51 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
return PyInt_FromLong (BMF_GetStringWidth (font, text));
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
2003-09-20 03:40:16 +00:00
|
|
|
static PyObject *Method_PupMenu (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
char *text;
|
|
|
|
|
int maxrow = -1;
|
|
|
|
|
PyObject *ret;
|
2003-09-20 03:40:16 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
if (!PyArg_ParseTuple(args, "s|i", &text, &maxrow))
|
|
|
|
|
return EXPP_ReturnPyObjError (PyExc_TypeError,
|
|
|
|
|
"expected a string and optionally an int as arguments");
|
2003-09-20 03:40:16 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
if (maxrow >= 0)
|
|
|
|
|
ret = PyInt_FromLong (pupmenu_col (text, maxrow));
|
|
|
|
|
else
|
|
|
|
|
ret = PyInt_FromLong (pupmenu (text));
|
2003-09-20 03:40:16 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
if (ret) return ret;
|
2003-09-20 03:40:16 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
return EXPP_ReturnPyObjError (PyExc_MemoryError,
|
|
|
|
|
"couldn't create a PyInt");
|
2003-09-20 03:40:16 +00:00
|
|
|
}
|
|
|
|
|
|
2003-06-24 07:21:17 +00:00
|
|
|
PyObject *Draw_Init (void)
|
2003-05-08 03:06:46 +00:00
|
|
|
{
|
2003-12-14 01:18:09 +00:00
|
|
|
PyObject *submodule, *dict;
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
Button_Type.ob_type = &PyType_Type;
|
2003-06-02 20:15:50 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
submodule = Py_InitModule3("Blender.Draw", Draw_methods, Draw_doc);
|
2003-05-08 03:06:46 +00:00
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
dict= PyModule_GetDict(submodule);
|
2003-05-08 03:06:46 +00:00
|
|
|
|
|
|
|
|
#define EXPP_ADDCONST(x) \
|
2003-12-14 01:18:09 +00:00
|
|
|
PyDict_SetItemString(dict, #x, PyInt_FromLong(x))
|
2003-05-08 03:06:46 +00:00
|
|
|
|
|
|
|
|
/* So, for example:
|
|
|
|
|
* EXPP_ADDCONST(LEFTMOUSE) becomes
|
|
|
|
|
* PyDict_SetItemString(dict, "LEFTMOUSE", PyInt_FromLong(LEFTMOUSE)) */
|
|
|
|
|
|
2003-12-14 01:18:09 +00:00
|
|
|
EXPP_ADDCONST(LEFTMOUSE);
|
|
|
|
|
EXPP_ADDCONST(MIDDLEMOUSE);
|
|
|
|
|
EXPP_ADDCONST(RIGHTMOUSE);
|
|
|
|
|
EXPP_ADDCONST(MOUSEX);
|
|
|
|
|
EXPP_ADDCONST(MOUSEY);
|
|
|
|
|
EXPP_ADDCONST(TIMER0);
|
|
|
|
|
EXPP_ADDCONST(TIMER1);
|
|
|
|
|
EXPP_ADDCONST(TIMER2);
|
|
|
|
|
EXPP_ADDCONST(TIMER3);
|
|
|
|
|
EXPP_ADDCONST(KEYBD);
|
|
|
|
|
EXPP_ADDCONST(RAWKEYBD);
|
|
|
|
|
EXPP_ADDCONST(REDRAW);
|
|
|
|
|
EXPP_ADDCONST(INPUTCHANGE);
|
|
|
|
|
EXPP_ADDCONST(QFULL);
|
|
|
|
|
EXPP_ADDCONST(WINFREEZE);
|
|
|
|
|
EXPP_ADDCONST(WINTHAW);
|
|
|
|
|
EXPP_ADDCONST(WINCLOSE);
|
|
|
|
|
EXPP_ADDCONST(WINQUIT);
|
2003-05-08 03:06:46 +00:00
|
|
|
#ifndef IRISGL
|
2003-12-14 01:18:09 +00:00
|
|
|
EXPP_ADDCONST(Q_FIRSTTIME);
|
2003-05-08 03:06:46 +00:00
|
|
|
#endif
|
2003-12-14 01:18:09 +00:00
|
|
|
EXPP_ADDCONST(AKEY);
|
|
|
|
|
EXPP_ADDCONST(BKEY);
|
|
|
|
|
EXPP_ADDCONST(CKEY);
|
|
|
|
|
EXPP_ADDCONST(DKEY);
|
|
|
|
|
EXPP_ADDCONST(EKEY);
|
|
|
|
|
EXPP_ADDCONST(FKEY);
|
|
|
|
|
EXPP_ADDCONST(GKEY);
|
|
|
|
|
EXPP_ADDCONST(HKEY);
|
|
|
|
|
EXPP_ADDCONST(IKEY);
|
|
|
|
|
EXPP_ADDCONST(JKEY);
|
|
|
|
|
EXPP_ADDCONST(KKEY);
|
|
|
|
|
EXPP_ADDCONST(LKEY);
|
|
|
|
|
EXPP_ADDCONST(MKEY);
|
|
|
|
|
EXPP_ADDCONST(NKEY);
|
|
|
|
|
EXPP_ADDCONST(OKEY);
|
|
|
|
|
EXPP_ADDCONST(PKEY);
|
|
|
|
|
EXPP_ADDCONST(QKEY);
|
|
|
|
|
EXPP_ADDCONST(RKEY);
|
|
|
|
|
EXPP_ADDCONST(SKEY);
|
|
|
|
|
EXPP_ADDCONST(TKEY);
|
|
|
|
|
EXPP_ADDCONST(UKEY);
|
|
|
|
|
EXPP_ADDCONST(VKEY);
|
|
|
|
|
EXPP_ADDCONST(WKEY);
|
|
|
|
|
EXPP_ADDCONST(XKEY);
|
|
|
|
|
EXPP_ADDCONST(YKEY);
|
|
|
|
|
EXPP_ADDCONST(ZKEY);
|
|
|
|
|
EXPP_ADDCONST(ZEROKEY);
|
|
|
|
|
EXPP_ADDCONST(ONEKEY);
|
|
|
|
|
EXPP_ADDCONST(TWOKEY);
|
|
|
|
|
EXPP_ADDCONST(THREEKEY);
|
|
|
|
|
EXPP_ADDCONST(FOURKEY);
|
|
|
|
|
EXPP_ADDCONST(FIVEKEY);
|
|
|
|
|
EXPP_ADDCONST(SIXKEY);
|
|
|
|
|
EXPP_ADDCONST(SEVENKEY);
|
|
|
|
|
EXPP_ADDCONST(EIGHTKEY);
|
|
|
|
|
EXPP_ADDCONST(NINEKEY);
|
|
|
|
|
EXPP_ADDCONST(CAPSLOCKKEY);
|
|
|
|
|
EXPP_ADDCONST(LEFTCTRLKEY);
|
|
|
|
|
EXPP_ADDCONST(LEFTALTKEY);
|
|
|
|
|
EXPP_ADDCONST(RIGHTALTKEY);
|
|
|
|
|
EXPP_ADDCONST(RIGHTCTRLKEY);
|
|
|
|
|
EXPP_ADDCONST(RIGHTSHIFTKEY);
|
|
|
|
|
EXPP_ADDCONST(LEFTSHIFTKEY);
|
|
|
|
|
EXPP_ADDCONST(ESCKEY);
|
|
|
|
|
EXPP_ADDCONST(TABKEY);
|
|
|
|
|
EXPP_ADDCONST(RETKEY);
|
|
|
|
|
EXPP_ADDCONST(SPACEKEY);
|
|
|
|
|
EXPP_ADDCONST(LINEFEEDKEY);
|
|
|
|
|
EXPP_ADDCONST(BACKSPACEKEY);
|
|
|
|
|
EXPP_ADDCONST(DELKEY);
|
|
|
|
|
EXPP_ADDCONST(SEMICOLONKEY);
|
|
|
|
|
EXPP_ADDCONST(PERIODKEY);
|
|
|
|
|
EXPP_ADDCONST(COMMAKEY);
|
|
|
|
|
EXPP_ADDCONST(QUOTEKEY);
|
|
|
|
|
EXPP_ADDCONST(ACCENTGRAVEKEY);
|
|
|
|
|
EXPP_ADDCONST(MINUSKEY);
|
|
|
|
|
EXPP_ADDCONST(SLASHKEY);
|
|
|
|
|
EXPP_ADDCONST(BACKSLASHKEY);
|
|
|
|
|
EXPP_ADDCONST(EQUALKEY);
|
|
|
|
|
EXPP_ADDCONST(LEFTBRACKETKEY);
|
|
|
|
|
EXPP_ADDCONST(RIGHTBRACKETKEY);
|
|
|
|
|
EXPP_ADDCONST(LEFTARROWKEY);
|
|
|
|
|
EXPP_ADDCONST(DOWNARROWKEY);
|
|
|
|
|
EXPP_ADDCONST(RIGHTARROWKEY);
|
|
|
|
|
EXPP_ADDCONST(UPARROWKEY);
|
|
|
|
|
EXPP_ADDCONST(PAD2);
|
|
|
|
|
EXPP_ADDCONST(PAD4);
|
|
|
|
|
EXPP_ADDCONST(PAD6);
|
|
|
|
|
EXPP_ADDCONST(PAD8);
|
|
|
|
|
EXPP_ADDCONST(PAD1);
|
|
|
|
|
EXPP_ADDCONST(PAD3);
|
|
|
|
|
EXPP_ADDCONST(PAD5);
|
|
|
|
|
EXPP_ADDCONST(PAD7);
|
|
|
|
|
EXPP_ADDCONST(PAD9);
|
|
|
|
|
EXPP_ADDCONST(PADPERIOD);
|
|
|
|
|
EXPP_ADDCONST(PADSLASHKEY);
|
|
|
|
|
EXPP_ADDCONST(PADASTERKEY);
|
|
|
|
|
EXPP_ADDCONST(PAD0);
|
|
|
|
|
EXPP_ADDCONST(PADMINUS);
|
|
|
|
|
EXPP_ADDCONST(PADENTER);
|
|
|
|
|
EXPP_ADDCONST(PADPLUSKEY);
|
|
|
|
|
EXPP_ADDCONST(F1KEY);
|
|
|
|
|
EXPP_ADDCONST(F2KEY);
|
|
|
|
|
EXPP_ADDCONST(F3KEY);
|
|
|
|
|
EXPP_ADDCONST(F4KEY);
|
|
|
|
|
EXPP_ADDCONST(F5KEY);
|
|
|
|
|
EXPP_ADDCONST(F6KEY);
|
|
|
|
|
EXPP_ADDCONST(F7KEY);
|
|
|
|
|
EXPP_ADDCONST(F8KEY);
|
|
|
|
|
EXPP_ADDCONST(F9KEY);
|
|
|
|
|
EXPP_ADDCONST(F10KEY);
|
|
|
|
|
EXPP_ADDCONST(F11KEY);
|
|
|
|
|
EXPP_ADDCONST(F12KEY);
|
|
|
|
|
EXPP_ADDCONST(PAUSEKEY);
|
|
|
|
|
EXPP_ADDCONST(INSERTKEY);
|
|
|
|
|
EXPP_ADDCONST(HOMEKEY);
|
|
|
|
|
EXPP_ADDCONST(PAGEUPKEY);
|
|
|
|
|
EXPP_ADDCONST(PAGEDOWNKEY);
|
|
|
|
|
EXPP_ADDCONST(ENDKEY);
|
|
|
|
|
|
|
|
|
|
return submodule;
|
2003-05-08 03:06:46 +00:00
|
|
|
}
|