1991-02-19 08:39:46 -04:00
|
|
|
/***********************************************************
|
1993-01-21 12:07:51 -04:00
|
|
|
Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum,
|
|
|
|
Amsterdam, The Netherlands.
|
1991-02-19 08:39:46 -04:00
|
|
|
|
|
|
|
All Rights Reserved
|
|
|
|
|
|
|
|
Permission to use, copy, modify, and distribute this software and its
|
|
|
|
documentation for any purpose and without fee is hereby granted,
|
|
|
|
provided that the above copyright notice appear in all copies and that
|
|
|
|
both that copyright notice and this permission notice appear in
|
|
|
|
supporting documentation, and that the names of Stichting Mathematisch
|
|
|
|
Centrum or CWI not be used in advertising or publicity pertaining to
|
|
|
|
distribution of the software without specific, written prior permission.
|
|
|
|
|
|
|
|
STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
|
|
|
|
THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
|
|
|
|
FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
|
|
|
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* Stdwin module */
|
|
|
|
|
|
|
|
/* Stdwin itself is a module, not a separate object type.
|
|
|
|
Object types defined here:
|
|
|
|
wp: a window
|
|
|
|
dp: a drawing structure (only one can exist at a time)
|
|
|
|
mp: a menu
|
|
|
|
tp: a textedit block
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Rules for translating C stdwin function calls into Python stwin:
|
|
|
|
- All names drop their initial letter 'w'
|
|
|
|
- Functions with a window as first parameter are methods of window objects
|
|
|
|
- There is no equivalent for wclose(); just delete the window object
|
|
|
|
(all references to it!) (XXX maybe this is a bad idea)
|
|
|
|
- w.begindrawing() returns a drawing object
|
|
|
|
- There is no equivalent for wenddrawing(win); just delete the drawing
|
|
|
|
object (all references to it!) (XXX maybe this is a bad idea)
|
|
|
|
- Functions that may only be used inside wbegindrawing / wendddrawing
|
|
|
|
are methods of the drawing object; this includes the text measurement
|
|
|
|
functions (which however have doubles as module functions).
|
|
|
|
- Methods of the drawing object drop an initial 'draw' from their name
|
|
|
|
if they have it, e.g., wdrawline() --> d.line()
|
|
|
|
- The obvious type conversions: int --> intobject; string --> stringobject
|
|
|
|
- A text parameter followed by a length parameter is only a text (string)
|
|
|
|
parameter in Python
|
|
|
|
- A point or other pair of horizontal and vertical coordinates is always
|
|
|
|
a pair of integers in Python
|
|
|
|
- Two points forming a rectangle or endpoints of a line segment are a
|
|
|
|
pair of points in Python
|
|
|
|
- The arguments to d.elarc() are three points.
|
|
|
|
- The functions wgetclip() and wsetclip() are translated into
|
|
|
|
stdwin.getcutbuffer() and stdwin.setcutbuffer(); 'clip' is really
|
|
|
|
a bad word for what these functions do (clipping has a different
|
|
|
|
meaning in the drawing world), while cutbuffer is standard X jargon.
|
1990-10-30 09:39:00 -04:00
|
|
|
XXX This must change again in the light of changes to stdwin!
|
1990-10-14 09:07:46 -03:00
|
|
|
- For textedit, similar rules hold, but they are less strict.
|
|
|
|
XXX more?
|
|
|
|
*/
|
|
|
|
|
1990-12-20 11:06:42 -04:00
|
|
|
#include "allobjects.h"
|
1990-10-14 09:07:46 -03:00
|
|
|
#include "modsupport.h"
|
1992-08-05 16:58:53 -03:00
|
|
|
#include "ceval.h"
|
1990-10-14 09:07:46 -03:00
|
|
|
|
1993-01-21 12:07:51 -04:00
|
|
|
#ifdef macintosh
|
|
|
|
#include ":::src:stdwin:H:stdwin.h"
|
|
|
|
#else /* !macintosh */
|
1990-12-20 11:06:42 -04:00
|
|
|
#include "stdwin.h"
|
1993-01-21 12:07:51 -04:00
|
|
|
#endif /* !macintosh */
|
1990-10-14 09:07:46 -03:00
|
|
|
|
1992-08-05 16:58:53 -03:00
|
|
|
#ifdef USE_THREAD
|
|
|
|
|
|
|
|
#include "thread.h"
|
|
|
|
|
|
|
|
static type_lock StdwinLock; /* Lock held when interpreter not locked */
|
|
|
|
|
|
|
|
#define BGN_STDWIN BGN_SAVE acquire_lock(StdwinLock, 1);
|
|
|
|
#define RET_STDWIN release_lock(StdwinLock); RET_SAVE
|
|
|
|
#define END_STDWIN release_lock(StdwinLock); END_SAVE
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define BGN_STDWIN BGN_SAVE
|
|
|
|
#define RET_STDWIN RET_SAVE
|
|
|
|
#define END_STDWIN END_SAVE
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
1991-12-16 11:44:53 -04:00
|
|
|
static object *StdwinError; /* Exception stdwin.error */
|
1991-12-10 10:00:03 -04:00
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* Window and menu object types declared here because of forward references */
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
OB_HEAD
|
|
|
|
object *w_title;
|
|
|
|
WINDOW *w_win;
|
|
|
|
object *w_attr; /* Attributes dictionary */
|
|
|
|
} windowobject;
|
|
|
|
|
|
|
|
extern typeobject Windowtype; /* Really static, forward */
|
|
|
|
|
|
|
|
#define is_windowobject(wp) ((wp)->ob_type == &Windowtype)
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
OB_HEAD
|
|
|
|
MENU *m_menu;
|
|
|
|
int m_id;
|
|
|
|
object *m_attr; /* Attributes dictionary */
|
|
|
|
} menuobject;
|
|
|
|
|
|
|
|
extern typeobject Menutype; /* Really static, forward */
|
|
|
|
|
|
|
|
#define is_menuobject(mp) ((mp)->ob_type == &Menutype)
|
|
|
|
|
|
|
|
|
|
|
|
/* Strongly stdwin-specific argument handlers */
|
|
|
|
|
|
|
|
static int
|
|
|
|
getmenudetail(v, ep)
|
|
|
|
object *v;
|
|
|
|
EVENT *ep;
|
|
|
|
{
|
1992-01-27 12:45:55 -04:00
|
|
|
menuobject *mp;
|
|
|
|
if (!getargs(v, "(Oi)", &mp, &ep->u.m.item))
|
|
|
|
return 0;
|
|
|
|
if (!is_menuobject(mp))
|
1990-10-14 09:07:46 -03:00
|
|
|
return err_badarg();
|
1992-01-27 12:45:55 -04:00
|
|
|
ep->u.m.id = mp->m_id;
|
|
|
|
return 1;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
geteventarg(v, ep)
|
|
|
|
object *v;
|
|
|
|
EVENT *ep;
|
|
|
|
{
|
|
|
|
object *wp, *detail;
|
|
|
|
int a[4];
|
1992-01-27 12:45:55 -04:00
|
|
|
if (!getargs(v, "(iOO)", &ep->type, &wp, &detail))
|
1990-10-14 09:07:46 -03:00
|
|
|
return 0;
|
1992-01-27 12:45:55 -04:00
|
|
|
if (is_windowobject(wp))
|
|
|
|
ep->window = ((windowobject *)wp) -> w_win;
|
|
|
|
else if (wp == None)
|
1990-10-14 09:07:46 -03:00
|
|
|
ep->window = NULL;
|
|
|
|
else
|
|
|
|
return err_badarg();
|
1992-01-27 12:45:55 -04:00
|
|
|
switch (ep->type) {
|
|
|
|
case WE_CHAR: {
|
|
|
|
char c;
|
|
|
|
if (!getargs(detail, "c", &c))
|
|
|
|
return 0;
|
|
|
|
ep->u.character = c;
|
|
|
|
return 1;
|
|
|
|
}
|
1990-10-14 09:07:46 -03:00
|
|
|
case WE_COMMAND:
|
|
|
|
return getintarg(detail, &ep->u.command);
|
|
|
|
case WE_DRAW:
|
|
|
|
if (!getrectarg(detail, a))
|
|
|
|
return 0;
|
|
|
|
ep->u.area.left = a[0];
|
|
|
|
ep->u.area.top = a[1];
|
|
|
|
ep->u.area.right = a[2];
|
|
|
|
ep->u.area.bottom = a[3];
|
|
|
|
return 1;
|
|
|
|
case WE_MOUSE_DOWN:
|
|
|
|
case WE_MOUSE_UP:
|
|
|
|
case WE_MOUSE_MOVE:
|
1992-01-27 12:45:55 -04:00
|
|
|
return getargs(detail, "((ii)iii)",
|
|
|
|
&ep->u.where.h, &ep->u.where.v,
|
|
|
|
&ep->u.where.clicks,
|
|
|
|
&ep->u.where.button,
|
|
|
|
&ep->u.where.mask);
|
1990-10-14 09:07:46 -03:00
|
|
|
case WE_MENU:
|
|
|
|
return getmenudetail(detail, ep);
|
1992-06-30 09:48:26 -03:00
|
|
|
case WE_KEY:
|
|
|
|
return getargs(detail, "(ii)",
|
|
|
|
&ep->u.key.code, &ep->u.key.mask);
|
1990-10-14 09:07:46 -03:00
|
|
|
default:
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Return construction tools */
|
|
|
|
|
|
|
|
static object *
|
|
|
|
makepoint(a, b)
|
|
|
|
int a, b;
|
|
|
|
{
|
1992-04-13 12:54:35 -03:00
|
|
|
return mkvalue("(ii)", a, b);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
makerect(a, b, c, d)
|
|
|
|
int a, b, c, d;
|
|
|
|
{
|
1992-04-13 12:54:35 -03:00
|
|
|
return mkvalue("((ii)(ii))", a, b, c, d);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Drawing objects */
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
OB_HEAD
|
|
|
|
windowobject *d_ref;
|
|
|
|
} drawingobject;
|
|
|
|
|
|
|
|
static drawingobject *Drawing; /* Set to current drawing object, or NULL */
|
|
|
|
|
|
|
|
/* Drawing methods */
|
|
|
|
|
1991-11-27 10:54:54 -04:00
|
|
|
static object *
|
|
|
|
drawing_close(dp)
|
|
|
|
drawingobject *dp;
|
|
|
|
{
|
|
|
|
if (dp->d_ref != NULL) {
|
|
|
|
wenddrawing(dp->d_ref->w_win);
|
|
|
|
Drawing = NULL;
|
|
|
|
DECREF(dp->d_ref);
|
|
|
|
dp->d_ref = NULL;
|
|
|
|
}
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
1992-01-14 14:41:24 -04:00
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static void
|
|
|
|
drawing_dealloc(dp)
|
|
|
|
drawingobject *dp;
|
|
|
|
{
|
1991-11-27 10:54:54 -04:00
|
|
|
if (dp->d_ref != NULL) {
|
|
|
|
wenddrawing(dp->d_ref->w_win);
|
|
|
|
Drawing = NULL;
|
|
|
|
DECREF(dp->d_ref);
|
|
|
|
dp->d_ref = NULL;
|
|
|
|
}
|
1990-10-14 09:07:46 -03:00
|
|
|
free((char *)dp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
drawing_generic(dp, args, func)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
void (*func) FPROTO((int, int, int, int));
|
|
|
|
{
|
|
|
|
int a[4];
|
|
|
|
if (!getrectarg(args, a))
|
|
|
|
return NULL;
|
|
|
|
(*func)(a[0], a[1], a[2], a[3]);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
drawing_line(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
1991-03-06 09:14:12 -04:00
|
|
|
return drawing_generic(dp, args, wdrawline);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
drawing_xorline(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
1991-03-06 09:14:12 -04:00
|
|
|
return drawing_generic(dp, args, wxorline);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
drawing_circle(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int a[3];
|
|
|
|
if (!getpointintarg(args, a))
|
|
|
|
return NULL;
|
|
|
|
wdrawcircle(a[0], a[1], a[2]);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
1991-05-14 09:09:25 -03:00
|
|
|
|
1991-04-16 05:43:03 -03:00
|
|
|
static object *
|
|
|
|
drawing_fillcircle(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int a[3];
|
|
|
|
if (!getpointintarg(args, a))
|
|
|
|
return NULL;
|
|
|
|
wfillcircle(a[0], a[1], a[2]);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
1990-10-14 09:07:46 -03:00
|
|
|
|
1991-05-14 09:09:25 -03:00
|
|
|
static object *
|
|
|
|
drawing_xorcircle(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int a[3];
|
|
|
|
if (!getpointintarg(args, a))
|
|
|
|
return NULL;
|
|
|
|
wxorcircle(a[0], a[1], a[2]);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static object *
|
|
|
|
drawing_elarc(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int a[6];
|
|
|
|
if (!get3pointarg(args, a))
|
|
|
|
return NULL;
|
|
|
|
wdrawelarc(a[0], a[1], a[2], a[3], a[4], a[5]);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1991-04-16 05:43:03 -03:00
|
|
|
static object *
|
|
|
|
drawing_fillelarc(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int a[6];
|
|
|
|
if (!get3pointarg(args, a))
|
|
|
|
return NULL;
|
|
|
|
wfillelarc(a[0], a[1], a[2], a[3], a[4], a[5]);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1991-05-14 09:09:25 -03:00
|
|
|
static object *
|
|
|
|
drawing_xorelarc(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int a[6];
|
|
|
|
if (!get3pointarg(args, a))
|
|
|
|
return NULL;
|
|
|
|
wxorelarc(a[0], a[1], a[2], a[3], a[4], a[5]);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static object *
|
|
|
|
drawing_box(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
1991-03-06 09:14:12 -04:00
|
|
|
return drawing_generic(dp, args, wdrawbox);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
drawing_erase(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
1991-03-06 09:14:12 -04:00
|
|
|
return drawing_generic(dp, args, werase);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
drawing_paint(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
1991-03-06 09:14:12 -04:00
|
|
|
return drawing_generic(dp, args, wpaint);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
drawing_invert(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
1991-03-06 09:14:12 -04:00
|
|
|
return drawing_generic(dp, args, winvert);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
1991-04-16 05:43:03 -03:00
|
|
|
static POINT *
|
|
|
|
getpointsarray(v, psize)
|
|
|
|
object *v;
|
|
|
|
int *psize;
|
|
|
|
{
|
|
|
|
int n = -1;
|
|
|
|
object * (*getitem) PROTO((object *, int));
|
|
|
|
int i;
|
|
|
|
POINT *points;
|
|
|
|
|
|
|
|
if (v == NULL)
|
|
|
|
;
|
|
|
|
else if (is_listobject(v)) {
|
|
|
|
n = getlistsize(v);
|
|
|
|
getitem = getlistitem;
|
|
|
|
}
|
|
|
|
else if (is_tupleobject(v)) {
|
|
|
|
n = gettuplesize(v);
|
|
|
|
getitem = gettupleitem;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n <= 0) {
|
|
|
|
(void) err_badarg();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
points = NEW(POINT, n);
|
|
|
|
if (points == NULL) {
|
|
|
|
(void) err_nomem();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
object *w = (*getitem)(v, i);
|
|
|
|
int a[2];
|
|
|
|
if (!getpointarg(w, a)) {
|
|
|
|
DEL(points);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
points[i].h = a[0];
|
|
|
|
points[i].v = a[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
*psize = n;
|
|
|
|
return points;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
drawing_poly(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
POINT *points = getpointsarray(args, &n);
|
|
|
|
if (points == NULL)
|
|
|
|
return NULL;
|
|
|
|
wdrawpoly(n, points);
|
|
|
|
DEL(points);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
drawing_fillpoly(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
POINT *points = getpointsarray(args, &n);
|
|
|
|
if (points == NULL)
|
|
|
|
return NULL;
|
|
|
|
wfillpoly(n, points);
|
|
|
|
DEL(points);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1991-05-14 09:09:25 -03:00
|
|
|
static object *
|
|
|
|
drawing_xorpoly(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
POINT *points = getpointsarray(args, &n);
|
|
|
|
if (points == NULL)
|
|
|
|
return NULL;
|
|
|
|
wxorpoly(n, points);
|
|
|
|
DEL(points);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static object *
|
|
|
|
drawing_cliprect(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
1991-03-06 09:14:12 -04:00
|
|
|
return drawing_generic(dp, args, wcliprect);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
drawing_noclip(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
wnoclip();
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
drawing_shade(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int a[5];
|
|
|
|
if (!getrectintarg(args, a))
|
|
|
|
return NULL;
|
|
|
|
wshade(a[0], a[1], a[2], a[3], a[4]);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
drawing_text(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
1992-01-27 12:45:55 -04:00
|
|
|
int h, v, size;
|
|
|
|
char *text;
|
|
|
|
if (!getargs(args, "((ii)s#)", &h, &v, &text, &size))
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
1992-01-27 12:45:55 -04:00
|
|
|
wdrawtext(h, v, text, size);
|
1990-10-14 09:07:46 -03:00
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The following four are also used as stdwin functions */
|
|
|
|
|
|
|
|
static object *
|
|
|
|
drawing_lineheight(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
return newintobject((long)wlineheight());
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
drawing_baseline(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
return newintobject((long)wbaseline());
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
drawing_textwidth(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
1992-01-27 12:45:55 -04:00
|
|
|
char *text;
|
|
|
|
int size;
|
|
|
|
if (!getargs(args, "s#", &text, &size))
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
1992-01-27 12:45:55 -04:00
|
|
|
return newintobject((long)wtextwidth(text, size));
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
drawing_textbreak(dp, args)
|
|
|
|
drawingobject *dp;
|
|
|
|
object *args;
|
|
|
|
{
|
1992-01-27 12:45:55 -04:00
|
|
|
char *text;
|
|
|
|
int size, width;
|
|
|
|
if (!getargs(args, "(s#i)", &text, &size, &width))
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
1992-01-27 12:45:55 -04:00
|
|
|
return newintobject((long)wtextbreak(text, size, width));
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
1991-04-03 15:12:14 -04:00
|
|
|
static object *
|
|
|
|
drawing_setfont(self, args)
|
|
|
|
drawingobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1992-01-27 12:45:55 -04:00
|
|
|
char *font;
|
|
|
|
char style = '\0';
|
|
|
|
int size = 0;
|
|
|
|
if (args == NULL || !is_tupleobject(args)) {
|
1992-02-05 07:15:00 -04:00
|
|
|
if (!getargs(args, "z", &font))
|
1992-01-27 12:45:55 -04:00
|
|
|
return NULL;
|
1991-04-04 11:24:07 -04:00
|
|
|
}
|
1992-01-27 12:45:55 -04:00
|
|
|
else {
|
1991-04-04 11:24:07 -04:00
|
|
|
int n = gettuplesize(args);
|
|
|
|
if (n == 2) {
|
1992-01-27 12:45:55 -04:00
|
|
|
if (!getargs(args, "(zi)", &font, &size))
|
1991-04-04 11:24:07 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
1992-01-27 12:45:55 -04:00
|
|
|
else if (!getargs(args, "(zic)", &font, &size, &style)) {
|
|
|
|
err_clear();
|
|
|
|
if (!getargs(args, "(zci)", &font, &style, &size))
|
|
|
|
return NULL;
|
1991-04-04 11:24:07 -04:00
|
|
|
}
|
|
|
|
}
|
1993-01-21 12:07:51 -04:00
|
|
|
if (font != NULL) {
|
|
|
|
if (!wsetfont(font)) {
|
|
|
|
err_setstr(StdwinError, "font not found");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
1991-04-04 11:24:07 -04:00
|
|
|
if (size != 0)
|
|
|
|
wsetsize(size);
|
1992-01-27 12:45:55 -04:00
|
|
|
switch (style) {
|
|
|
|
case 'b':
|
|
|
|
wsetbold();
|
|
|
|
break;
|
|
|
|
case 'i':
|
|
|
|
wsetitalic();
|
|
|
|
break;
|
|
|
|
case 'o':
|
|
|
|
wsetbolditalic();
|
|
|
|
break;
|
|
|
|
case 'u':
|
|
|
|
wsetunderline();
|
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
wsetplain();
|
|
|
|
break;
|
|
|
|
}
|
1991-04-03 15:12:14 -04:00
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
drawing_getbgcolor(self, args)
|
|
|
|
object *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
return newintobject((long)wgetbgcolor());
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
drawing_getfgcolor(self, args)
|
|
|
|
object *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
return newintobject((long)wgetfgcolor());
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
drawing_setbgcolor(self, args)
|
|
|
|
object *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
long color;
|
|
|
|
if (!getlongarg(args, &color))
|
|
|
|
return NULL;
|
|
|
|
wsetbgcolor((COLOR)color);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
drawing_setfgcolor(self, args)
|
|
|
|
object *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
long color;
|
|
|
|
if (!getlongarg(args, &color))
|
|
|
|
return NULL;
|
|
|
|
wsetfgcolor((COLOR)color);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static struct methodlist drawing_methods[] = {
|
|
|
|
{"box", drawing_box},
|
|
|
|
{"circle", drawing_circle},
|
|
|
|
{"cliprect", drawing_cliprect},
|
1991-11-27 10:54:54 -04:00
|
|
|
{"close", drawing_close},
|
1990-10-14 09:07:46 -03:00
|
|
|
{"elarc", drawing_elarc},
|
1991-11-27 10:54:54 -04:00
|
|
|
{"enddrawing", drawing_close},
|
1990-10-14 09:07:46 -03:00
|
|
|
{"erase", drawing_erase},
|
1991-04-16 05:43:03 -03:00
|
|
|
{"fillcircle", drawing_fillcircle},
|
1991-05-14 09:09:25 -03:00
|
|
|
{"fillelarc", drawing_fillelarc},
|
1991-04-16 05:43:03 -03:00
|
|
|
{"fillpoly", drawing_fillpoly},
|
1990-10-14 09:07:46 -03:00
|
|
|
{"invert", drawing_invert},
|
|
|
|
{"line", drawing_line},
|
|
|
|
{"noclip", drawing_noclip},
|
|
|
|
{"paint", drawing_paint},
|
1991-04-16 05:43:03 -03:00
|
|
|
{"poly", drawing_poly},
|
1990-10-14 09:07:46 -03:00
|
|
|
{"shade", drawing_shade},
|
|
|
|
{"text", drawing_text},
|
1991-05-14 09:09:25 -03:00
|
|
|
{"xorcircle", drawing_xorcircle},
|
|
|
|
{"xorelarc", drawing_xorelarc},
|
1990-10-14 09:07:46 -03:00
|
|
|
{"xorline", drawing_xorline},
|
1991-05-14 09:09:25 -03:00
|
|
|
{"xorpoly", drawing_xorpoly},
|
1990-10-14 09:07:46 -03:00
|
|
|
|
|
|
|
/* Text measuring methods: */
|
|
|
|
{"baseline", drawing_baseline},
|
|
|
|
{"lineheight", drawing_lineheight},
|
|
|
|
{"textbreak", drawing_textbreak},
|
|
|
|
{"textwidth", drawing_textwidth},
|
1991-04-03 15:12:14 -04:00
|
|
|
|
|
|
|
/* Font setting methods: */
|
|
|
|
{"setfont", drawing_setfont},
|
|
|
|
|
|
|
|
/* Color methods: */
|
|
|
|
{"getbgcolor", drawing_getbgcolor},
|
|
|
|
{"getfgcolor", drawing_getfgcolor},
|
|
|
|
{"setbgcolor", drawing_setbgcolor},
|
|
|
|
{"setfgcolor", drawing_setfgcolor},
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
{NULL, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
|
|
|
static object *
|
1992-01-14 14:41:24 -04:00
|
|
|
drawing_getattr(dp, name)
|
|
|
|
drawingobject *dp;
|
1990-10-14 09:07:46 -03:00
|
|
|
char *name;
|
|
|
|
{
|
1992-01-14 14:41:24 -04:00
|
|
|
if (dp->d_ref == NULL) {
|
|
|
|
err_setstr(StdwinError, "drawing object already closed");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return findmethod(drawing_methods, (object *)dp, name);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
1991-05-05 17:13:41 -03:00
|
|
|
typeobject Drawingtype = {
|
1990-10-14 09:07:46 -03:00
|
|
|
OB_HEAD_INIT(&Typetype)
|
|
|
|
0, /*ob_size*/
|
|
|
|
"drawing", /*tp_name*/
|
|
|
|
sizeof(drawingobject), /*tp_size*/
|
|
|
|
0, /*tp_itemsize*/
|
|
|
|
/* methods */
|
|
|
|
drawing_dealloc, /*tp_dealloc*/
|
|
|
|
0, /*tp_print*/
|
|
|
|
drawing_getattr, /*tp_getattr*/
|
|
|
|
0, /*tp_setattr*/
|
|
|
|
0, /*tp_compare*/
|
|
|
|
0, /*tp_repr*/
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Text(edit) objects */
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
OB_HEAD
|
|
|
|
TEXTEDIT *t_text;
|
|
|
|
windowobject *t_ref;
|
|
|
|
object *t_attr; /* Attributes dictionary */
|
|
|
|
} textobject;
|
|
|
|
|
|
|
|
extern typeobject Texttype; /* Really static, forward */
|
|
|
|
|
|
|
|
static textobject *
|
|
|
|
newtextobject(wp, left, top, right, bottom)
|
|
|
|
windowobject *wp;
|
|
|
|
int left, top, right, bottom;
|
|
|
|
{
|
|
|
|
textobject *tp;
|
|
|
|
tp = NEWOBJ(textobject, &Texttype);
|
|
|
|
if (tp == NULL)
|
|
|
|
return NULL;
|
|
|
|
tp->t_attr = NULL;
|
|
|
|
INCREF(wp);
|
|
|
|
tp->t_ref = wp;
|
|
|
|
tp->t_text = tecreate(wp->w_win, left, top, right, bottom);
|
|
|
|
if (tp->t_text == NULL) {
|
|
|
|
DECREF(tp);
|
|
|
|
return (textobject *) err_nomem();
|
|
|
|
}
|
|
|
|
return tp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Text(edit) methods */
|
|
|
|
|
|
|
|
static void
|
|
|
|
text_dealloc(tp)
|
|
|
|
textobject *tp;
|
|
|
|
{
|
|
|
|
if (tp->t_text != NULL)
|
|
|
|
tefree(tp->t_text);
|
1991-11-27 10:54:54 -04:00
|
|
|
XDECREF(tp->t_attr);
|
|
|
|
XDECREF(tp->t_ref);
|
1990-10-14 09:07:46 -03:00
|
|
|
DEL(tp);
|
|
|
|
}
|
|
|
|
|
1991-11-27 10:54:54 -04:00
|
|
|
static object *
|
|
|
|
text_close(tp, args)
|
|
|
|
textobject *tp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
if (tp->t_text != NULL) {
|
|
|
|
tefree(tp->t_text);
|
|
|
|
tp->t_text = NULL;
|
|
|
|
}
|
|
|
|
if (tp->t_attr != NULL) {
|
|
|
|
DECREF(tp->t_attr);
|
|
|
|
tp->t_attr = NULL;
|
|
|
|
}
|
|
|
|
if (tp->t_ref != NULL) {
|
|
|
|
DECREF(tp->t_ref);
|
|
|
|
tp->t_ref = NULL;
|
|
|
|
}
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static object *
|
|
|
|
text_arrow(self, args)
|
|
|
|
textobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int code;
|
|
|
|
if (!getintarg(args, &code))
|
|
|
|
return NULL;
|
|
|
|
tearrow(self->t_text, code);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
text_draw(self, args)
|
|
|
|
textobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
register TEXTEDIT *tp = self->t_text;
|
|
|
|
int a[4];
|
|
|
|
int left, top, right, bottom;
|
|
|
|
if (!getrectarg(args, a))
|
|
|
|
return NULL;
|
|
|
|
if (Drawing != NULL) {
|
1991-12-10 10:00:03 -04:00
|
|
|
err_setstr(StdwinError, "already drawing");
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
/* Clip to text area and ignore if area is empty */
|
|
|
|
left = tegetleft(tp);
|
|
|
|
top = tegettop(tp);
|
|
|
|
right = tegetright(tp);
|
|
|
|
bottom = tegetbottom(tp);
|
|
|
|
if (a[0] < left) a[0] = left;
|
|
|
|
if (a[1] < top) a[1] = top;
|
|
|
|
if (a[2] > right) a[2] = right;
|
|
|
|
if (a[3] > bottom) a[3] = bottom;
|
|
|
|
if (a[0] < a[2] && a[1] < a[3]) {
|
|
|
|
wbegindrawing(self->t_ref->w_win);
|
|
|
|
tedrawnew(tp, a[0], a[1], a[2], a[3]);
|
|
|
|
wenddrawing(self->t_ref->w_win);
|
|
|
|
}
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
text_event(self, args)
|
|
|
|
textobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
register TEXTEDIT *tp = self->t_text;
|
|
|
|
EVENT e;
|
|
|
|
if (!geteventarg(args, &e))
|
|
|
|
return NULL;
|
|
|
|
if (e.type == WE_MOUSE_DOWN) {
|
1991-02-13 19:19:39 -04:00
|
|
|
/* Cheat at the margins */
|
|
|
|
int width, height;
|
|
|
|
wgetdocsize(e.window, &width, &height);
|
1990-10-14 09:07:46 -03:00
|
|
|
if (e.u.where.h < 0 && tegetleft(tp) == 0)
|
|
|
|
e.u.where.h = 0;
|
1991-02-13 19:19:39 -04:00
|
|
|
else if (e.u.where.h > width && tegetright(tp) == width)
|
|
|
|
e.u.where.h = width;
|
|
|
|
if (e.u.where.v < 0 && tegettop(tp) == 0)
|
|
|
|
e.u.where.v = 0;
|
|
|
|
else if (e.u.where.v > height && tegetright(tp) == height)
|
|
|
|
e.u.where.v = height;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
return newintobject((long) teevent(tp, &e));
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
text_getfocus(self, args)
|
|
|
|
textobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
return makepoint(tegetfoc1(self->t_text), tegetfoc2(self->t_text));
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
text_getfocustext(self, args)
|
|
|
|
textobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int f1, f2;
|
|
|
|
char *text;
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
f1 = tegetfoc1(self->t_text);
|
|
|
|
f2 = tegetfoc2(self->t_text);
|
|
|
|
text = tegettext(self->t_text);
|
|
|
|
return newsizedstringobject(text + f1, f2-f1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
text_getrect(self, args)
|
|
|
|
textobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
return makerect(tegetleft(self->t_text),
|
|
|
|
tegettop(self->t_text),
|
|
|
|
tegetright(self->t_text),
|
|
|
|
tegetbottom(self->t_text));
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
text_gettext(self, args)
|
|
|
|
textobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
return newsizedstringobject(tegettext(self->t_text),
|
|
|
|
tegetlen(self->t_text));
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
text_move(self, args)
|
|
|
|
textobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int a[4];
|
|
|
|
if (!getrectarg(args, a))
|
|
|
|
return NULL;
|
|
|
|
temovenew(self->t_text, a[0], a[1], a[2], a[3]);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1991-05-28 18:57:04 -03:00
|
|
|
static object *
|
|
|
|
text_replace(self, args)
|
|
|
|
textobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1992-01-27 12:45:55 -04:00
|
|
|
char *text;
|
1991-05-28 18:57:04 -03:00
|
|
|
if (!getstrarg(args, &text))
|
|
|
|
return NULL;
|
1992-01-27 12:45:55 -04:00
|
|
|
tereplace(self->t_text, text);
|
1991-05-28 18:57:04 -03:00
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
text_setactive(self, args)
|
|
|
|
textobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int flag;
|
|
|
|
if (!getintarg(args, &flag))
|
|
|
|
return NULL;
|
|
|
|
tesetactive(self->t_text, flag);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static object *
|
|
|
|
text_setfocus(self, args)
|
|
|
|
textobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int a[2];
|
|
|
|
if (!getpointarg(args, a))
|
|
|
|
return NULL;
|
|
|
|
tesetfocus(self->t_text, a[0], a[1]);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1991-05-05 17:13:41 -03:00
|
|
|
static object *
|
|
|
|
text_settext(self, args)
|
|
|
|
textobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1992-01-27 12:45:55 -04:00
|
|
|
char *text;
|
1991-05-05 17:13:41 -03:00
|
|
|
char *buf;
|
|
|
|
int size;
|
1992-01-27 12:45:55 -04:00
|
|
|
if (!getargs(args, "s#", &text, &size))
|
1991-05-05 17:13:41 -03:00
|
|
|
return NULL;
|
|
|
|
if ((buf = NEW(char, size)) == NULL) {
|
1991-12-10 10:00:03 -04:00
|
|
|
return err_nomem();
|
1991-05-05 17:13:41 -03:00
|
|
|
}
|
1992-01-27 12:45:55 -04:00
|
|
|
memcpy(buf, text, size);
|
1991-05-05 17:13:41 -03:00
|
|
|
tesetbuf(self->t_text, buf, size); /* Becomes owner of buffer */
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static object *
|
1991-05-28 18:57:04 -03:00
|
|
|
text_setview(self, args)
|
1990-10-14 09:07:46 -03:00
|
|
|
textobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1991-05-28 18:57:04 -03:00
|
|
|
int a[4];
|
|
|
|
if (args == None)
|
|
|
|
tenoview(self->t_text);
|
|
|
|
else {
|
|
|
|
if (!getrectarg(args, a))
|
|
|
|
return NULL;
|
|
|
|
tesetview(self->t_text, a[0], a[1], a[2], a[3]);
|
|
|
|
}
|
1990-10-14 09:07:46 -03:00
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct methodlist text_methods[] = {
|
1991-11-27 10:54:54 -04:00
|
|
|
{"arrow", text_arrow},
|
|
|
|
{"close", text_close},
|
|
|
|
{"draw", text_draw},
|
|
|
|
{"event", text_event},
|
|
|
|
{"getfocus", text_getfocus},
|
1992-01-14 14:41:24 -04:00
|
|
|
{"getfocustext",text_getfocustext},
|
1991-11-27 10:54:54 -04:00
|
|
|
{"getrect", text_getrect},
|
|
|
|
{"gettext", text_gettext},
|
1992-01-14 14:41:24 -04:00
|
|
|
{"move", text_move},
|
1991-11-27 10:54:54 -04:00
|
|
|
{"replace", text_replace},
|
|
|
|
{"setactive", text_setactive},
|
|
|
|
{"setfocus", text_setfocus},
|
|
|
|
{"settext", text_settext},
|
|
|
|
{"setview", text_setview},
|
1990-10-14 09:07:46 -03:00
|
|
|
{NULL, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
|
|
|
static object *
|
|
|
|
text_getattr(tp, name)
|
|
|
|
textobject *tp;
|
|
|
|
char *name;
|
|
|
|
{
|
1991-10-20 17:22:50 -03:00
|
|
|
object *v = NULL;
|
1992-01-14 14:41:24 -04:00
|
|
|
if (tp->t_ref == NULL) {
|
|
|
|
err_setstr(StdwinError, "text object already closed");
|
|
|
|
return NULL;
|
|
|
|
}
|
1991-10-20 17:22:50 -03:00
|
|
|
if (strcmp(name, "__dict__") == 0) {
|
|
|
|
v = tp->t_attr;
|
|
|
|
if (v == NULL)
|
|
|
|
v = None;
|
|
|
|
}
|
|
|
|
else if (tp->t_attr != NULL) {
|
|
|
|
v = dictlookup(tp->t_attr, name);
|
|
|
|
}
|
|
|
|
if (v != NULL) {
|
|
|
|
INCREF(v);
|
|
|
|
return v;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
return findmethod(text_methods, (object *)tp, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
text_setattr(tp, name, v)
|
|
|
|
textobject *tp;
|
|
|
|
char *name;
|
|
|
|
object *v;
|
|
|
|
{
|
|
|
|
if (tp->t_attr == NULL) {
|
|
|
|
tp->t_attr = newdictobject();
|
|
|
|
if (tp->t_attr == NULL)
|
|
|
|
return -1;
|
|
|
|
}
|
1992-09-04 06:45:18 -03:00
|
|
|
if (v == NULL) {
|
|
|
|
int rv = dictremove(tp->t_attr, name);
|
|
|
|
if (rv < 0)
|
|
|
|
err_setstr(AttributeError,
|
|
|
|
"delete non-existing text object attribute");
|
|
|
|
return rv;
|
|
|
|
}
|
1990-10-14 09:07:46 -03:00
|
|
|
else
|
|
|
|
return dictinsert(tp->t_attr, name, v);
|
|
|
|
}
|
|
|
|
|
1991-05-05 17:13:41 -03:00
|
|
|
typeobject Texttype = {
|
1990-10-14 09:07:46 -03:00
|
|
|
OB_HEAD_INIT(&Typetype)
|
|
|
|
0, /*ob_size*/
|
|
|
|
"textedit", /*tp_name*/
|
|
|
|
sizeof(textobject), /*tp_size*/
|
|
|
|
0, /*tp_itemsize*/
|
|
|
|
/* methods */
|
|
|
|
text_dealloc, /*tp_dealloc*/
|
|
|
|
0, /*tp_print*/
|
|
|
|
text_getattr, /*tp_getattr*/
|
|
|
|
text_setattr, /*tp_setattr*/
|
|
|
|
0, /*tp_compare*/
|
|
|
|
0, /*tp_repr*/
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Menu objects */
|
|
|
|
|
1991-02-19 08:26:49 -04:00
|
|
|
#define IDOFFSET 10 /* Menu IDs we use start here */
|
1991-04-16 05:43:03 -03:00
|
|
|
#define MAXNMENU 200 /* Max #menus we allow */
|
1991-02-19 08:26:49 -04:00
|
|
|
static menuobject *menulist[MAXNMENU];
|
1990-10-14 09:07:46 -03:00
|
|
|
|
1992-01-27 12:45:55 -04:00
|
|
|
static menuobject *newmenuobject PROTO((char *));
|
1990-10-14 09:07:46 -03:00
|
|
|
static menuobject *
|
|
|
|
newmenuobject(title)
|
1992-01-27 12:45:55 -04:00
|
|
|
char *title;
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
|
|
|
int id;
|
|
|
|
MENU *menu;
|
|
|
|
menuobject *mp;
|
1991-02-19 08:26:49 -04:00
|
|
|
for (id = 0; id < MAXNMENU; id++) {
|
1990-10-14 09:07:46 -03:00
|
|
|
if (menulist[id] == NULL)
|
|
|
|
break;
|
|
|
|
}
|
1991-04-16 05:43:03 -03:00
|
|
|
if (id >= MAXNMENU) {
|
1991-12-10 10:00:03 -04:00
|
|
|
err_setstr(StdwinError, "creating too many menus");
|
1991-04-16 05:43:03 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
1992-01-27 12:45:55 -04:00
|
|
|
menu = wmenucreate(id + IDOFFSET, title);
|
1990-10-14 09:07:46 -03:00
|
|
|
if (menu == NULL)
|
|
|
|
return (menuobject *) err_nomem();
|
|
|
|
mp = NEWOBJ(menuobject, &Menutype);
|
|
|
|
if (mp != NULL) {
|
|
|
|
mp->m_menu = menu;
|
1991-02-19 08:26:49 -04:00
|
|
|
mp->m_id = id + IDOFFSET;
|
1990-10-14 09:07:46 -03:00
|
|
|
mp->m_attr = NULL;
|
|
|
|
menulist[id] = mp;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
wmenudelete(menu);
|
|
|
|
return mp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Menu methods */
|
|
|
|
|
|
|
|
static void
|
|
|
|
menu_dealloc(mp)
|
|
|
|
menuobject *mp;
|
|
|
|
{
|
|
|
|
|
1991-02-19 08:26:49 -04:00
|
|
|
int id = mp->m_id - IDOFFSET;
|
|
|
|
if (id >= 0 && id < MAXNMENU && menulist[id] == mp) {
|
1990-10-14 09:07:46 -03:00
|
|
|
menulist[id] = NULL;
|
|
|
|
}
|
1992-01-14 14:41:24 -04:00
|
|
|
if (mp->m_menu != NULL)
|
|
|
|
wmenudelete(mp->m_menu);
|
|
|
|
XDECREF(mp->m_attr);
|
1990-10-14 09:07:46 -03:00
|
|
|
DEL(mp);
|
|
|
|
}
|
|
|
|
|
1992-01-14 14:41:24 -04:00
|
|
|
static object *
|
|
|
|
menu_close(mp, args)
|
|
|
|
menuobject *mp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int id = mp->m_id - IDOFFSET;
|
|
|
|
if (id >= 0 && id < MAXNMENU && menulist[id] == mp) {
|
|
|
|
menulist[id] = NULL;
|
|
|
|
}
|
|
|
|
mp->m_id = -1;
|
|
|
|
if (mp->m_menu != NULL)
|
|
|
|
wmenudelete(mp->m_menu);
|
|
|
|
mp->m_menu = NULL;
|
|
|
|
XDECREF(mp->m_attr);
|
|
|
|
mp->m_attr = NULL;
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static object *
|
|
|
|
menu_additem(self, args)
|
|
|
|
menuobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1992-01-27 12:45:55 -04:00
|
|
|
char *text;
|
|
|
|
int shortcut = -1;
|
1990-10-14 09:07:46 -03:00
|
|
|
if (is_tupleobject(args)) {
|
1992-01-27 12:45:55 -04:00
|
|
|
char c;
|
|
|
|
if (!getargs(args, "(sc)", &text, &c))
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
1992-01-27 12:45:55 -04:00
|
|
|
shortcut = c;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
1992-01-27 12:45:55 -04:00
|
|
|
else if (!getstrarg(args, &text))
|
|
|
|
return NULL;
|
|
|
|
wmenuadditem(self->m_menu, text, shortcut);
|
1990-10-14 09:07:46 -03:00
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
menu_setitem(self, args)
|
|
|
|
menuobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int index;
|
1992-01-27 12:45:55 -04:00
|
|
|
char *text;
|
1990-10-14 09:07:46 -03:00
|
|
|
if (!getintstrarg(args, &index, &text))
|
|
|
|
return NULL;
|
1992-01-27 12:45:55 -04:00
|
|
|
wmenusetitem(self->m_menu, index, text);
|
1990-10-14 09:07:46 -03:00
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
menu_enable(self, args)
|
|
|
|
menuobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int index;
|
|
|
|
int flag;
|
|
|
|
if (!getintintarg(args, &index, &flag))
|
|
|
|
return NULL;
|
|
|
|
wmenuenable(self->m_menu, index, flag);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
menu_check(self, args)
|
|
|
|
menuobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int index;
|
|
|
|
int flag;
|
|
|
|
if (!getintintarg(args, &index, &flag))
|
|
|
|
return NULL;
|
|
|
|
wmenucheck(self->m_menu, index, flag);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct methodlist menu_methods[] = {
|
1991-11-27 10:54:54 -04:00
|
|
|
{"additem", menu_additem},
|
|
|
|
{"setitem", menu_setitem},
|
|
|
|
{"enable", menu_enable},
|
|
|
|
{"check", menu_check},
|
1992-01-14 14:41:24 -04:00
|
|
|
{"close", menu_close},
|
1990-10-14 09:07:46 -03:00
|
|
|
{NULL, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
|
|
|
static object *
|
|
|
|
menu_getattr(mp, name)
|
|
|
|
menuobject *mp;
|
|
|
|
char *name;
|
|
|
|
{
|
1991-10-20 17:22:50 -03:00
|
|
|
object *v = NULL;
|
1992-01-14 14:41:24 -04:00
|
|
|
if (mp->m_menu == NULL) {
|
|
|
|
err_setstr(StdwinError, "menu object already closed");
|
|
|
|
return NULL;
|
|
|
|
}
|
1991-10-20 17:22:50 -03:00
|
|
|
if (strcmp(name, "__dict__") == 0) {
|
|
|
|
v = mp->m_attr;
|
|
|
|
if (v == NULL)
|
|
|
|
v = None;
|
|
|
|
}
|
|
|
|
else if (mp->m_attr != NULL) {
|
|
|
|
v = dictlookup(mp->m_attr, name);
|
|
|
|
}
|
|
|
|
if (v != NULL) {
|
|
|
|
INCREF(v);
|
|
|
|
return v;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
return findmethod(menu_methods, (object *)mp, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
menu_setattr(mp, name, v)
|
|
|
|
menuobject *mp;
|
|
|
|
char *name;
|
|
|
|
object *v;
|
|
|
|
{
|
|
|
|
if (mp->m_attr == NULL) {
|
|
|
|
mp->m_attr = newdictobject();
|
|
|
|
if (mp->m_attr == NULL)
|
|
|
|
return -1;
|
|
|
|
}
|
1992-09-04 06:45:18 -03:00
|
|
|
if (v == NULL) {
|
|
|
|
int rv = dictremove(mp->m_attr, name);
|
|
|
|
if (rv < 0)
|
|
|
|
err_setstr(AttributeError,
|
|
|
|
"delete non-existing menu object attribute");
|
|
|
|
return rv;
|
|
|
|
}
|
1990-10-14 09:07:46 -03:00
|
|
|
else
|
|
|
|
return dictinsert(mp->m_attr, name, v);
|
|
|
|
}
|
|
|
|
|
1991-05-05 17:13:41 -03:00
|
|
|
typeobject Menutype = {
|
1990-10-14 09:07:46 -03:00
|
|
|
OB_HEAD_INIT(&Typetype)
|
|
|
|
0, /*ob_size*/
|
|
|
|
"menu", /*tp_name*/
|
|
|
|
sizeof(menuobject), /*tp_size*/
|
|
|
|
0, /*tp_itemsize*/
|
|
|
|
/* methods */
|
|
|
|
menu_dealloc, /*tp_dealloc*/
|
|
|
|
0, /*tp_print*/
|
|
|
|
menu_getattr, /*tp_getattr*/
|
|
|
|
menu_setattr, /*tp_setattr*/
|
|
|
|
0, /*tp_compare*/
|
|
|
|
0, /*tp_repr*/
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Windows */
|
|
|
|
|
|
|
|
#define MAXNWIN 50
|
|
|
|
static windowobject *windowlist[MAXNWIN];
|
|
|
|
|
|
|
|
/* Window methods */
|
|
|
|
|
|
|
|
static void
|
|
|
|
window_dealloc(wp)
|
|
|
|
windowobject *wp;
|
|
|
|
{
|
|
|
|
if (wp->w_win != NULL) {
|
|
|
|
int tag = wgettag(wp->w_win);
|
|
|
|
if (tag >= 0 && tag < MAXNWIN)
|
|
|
|
windowlist[tag] = NULL;
|
|
|
|
else
|
|
|
|
fprintf(stderr, "XXX help! tag %d in window_dealloc\n",
|
|
|
|
tag);
|
|
|
|
wclose(wp->w_win);
|
|
|
|
}
|
|
|
|
DECREF(wp->w_title);
|
|
|
|
if (wp->w_attr != NULL)
|
|
|
|
DECREF(wp->w_attr);
|
|
|
|
free((char *)wp);
|
|
|
|
}
|
|
|
|
|
1991-11-27 10:54:54 -04:00
|
|
|
static object *
|
|
|
|
window_close(wp, args)
|
|
|
|
windowobject *wp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
if (wp->w_win != NULL) {
|
|
|
|
int tag = wgettag(wp->w_win);
|
|
|
|
if (tag >= 0 && tag < MAXNWIN)
|
|
|
|
windowlist[tag] = NULL;
|
|
|
|
wclose(wp->w_win);
|
|
|
|
wp->w_win = NULL;
|
|
|
|
}
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static object *
|
|
|
|
window_begindrawing(wp, args)
|
|
|
|
windowobject *wp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
drawingobject *dp;
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
if (Drawing != NULL) {
|
1991-12-10 10:00:03 -04:00
|
|
|
err_setstr(StdwinError, "already drawing");
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
dp = NEWOBJ(drawingobject, &Drawingtype);
|
|
|
|
if (dp == NULL)
|
|
|
|
return NULL;
|
|
|
|
Drawing = dp;
|
|
|
|
INCREF(wp);
|
|
|
|
dp->d_ref = wp;
|
|
|
|
wbegindrawing(wp->w_win);
|
|
|
|
return (object *)dp;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
window_change(wp, args)
|
|
|
|
windowobject *wp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int a[4];
|
|
|
|
if (!getrectarg(args, a))
|
|
|
|
return NULL;
|
|
|
|
wchange(wp->w_win, a[0], a[1], a[2], a[3]);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
window_gettitle(wp, args)
|
|
|
|
windowobject *wp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
INCREF(wp->w_title);
|
|
|
|
return wp->w_title;
|
|
|
|
}
|
|
|
|
|
1991-05-05 17:13:41 -03:00
|
|
|
static object *
|
|
|
|
window_getwinpos(wp, args)
|
|
|
|
windowobject *wp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int h, v;
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
wgetwinpos(wp->w_win, &h, &v);
|
|
|
|
return makepoint(h, v);
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static object *
|
|
|
|
window_getwinsize(wp, args)
|
|
|
|
windowobject *wp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int width, height;
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
wgetwinsize(wp->w_win, &width, &height);
|
|
|
|
return makepoint(width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
window_getdocsize(wp, args)
|
|
|
|
windowobject *wp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int width, height;
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
wgetdocsize(wp->w_win, &width, &height);
|
|
|
|
return makepoint(width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
window_getorigin(wp, args)
|
|
|
|
windowobject *wp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int width, height;
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
wgetorigin(wp->w_win, &width, &height);
|
|
|
|
return makepoint(width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
window_scroll(wp, args)
|
|
|
|
windowobject *wp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int a[6];
|
|
|
|
if (!getrectpointarg(args, a))
|
|
|
|
return NULL;
|
|
|
|
wscroll(wp->w_win, a[0], a[1], a[2], a[3], a[4], a[5]);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
window_setdocsize(wp, args)
|
|
|
|
windowobject *wp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int a[2];
|
|
|
|
if (!getpointarg(args, a))
|
|
|
|
return NULL;
|
|
|
|
wsetdocsize(wp->w_win, a[0], a[1]);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
window_setorigin(wp, args)
|
|
|
|
windowobject *wp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int a[2];
|
|
|
|
if (!getpointarg(args, a))
|
|
|
|
return NULL;
|
|
|
|
wsetorigin(wp->w_win, a[0], a[1]);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
window_settitle(wp, args)
|
|
|
|
windowobject *wp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
object *title;
|
1992-01-27 12:45:55 -04:00
|
|
|
if (!getStrarg(args, &title))
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
DECREF(wp->w_title);
|
|
|
|
INCREF(title);
|
|
|
|
wp->w_title = title;
|
|
|
|
wsettitle(wp->w_win, getstringvalue(title));
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
window_show(wp, args)
|
|
|
|
windowobject *wp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int a[4];
|
|
|
|
if (!getrectarg(args, a))
|
|
|
|
return NULL;
|
|
|
|
wshow(wp->w_win, a[0], a[1], a[2], a[3]);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
window_settimer(wp, args)
|
|
|
|
windowobject *wp;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int a;
|
|
|
|
if (!getintarg(args, &a))
|
|
|
|
return NULL;
|
|
|
|
wsettimer(wp->w_win, a);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
window_menucreate(self, args)
|
|
|
|
windowobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
menuobject *mp;
|
1992-01-27 12:45:55 -04:00
|
|
|
char *title;
|
1990-10-14 09:07:46 -03:00
|
|
|
if (!getstrarg(args, &title))
|
|
|
|
return NULL;
|
|
|
|
wmenusetdeflocal(1);
|
|
|
|
mp = newmenuobject(title);
|
|
|
|
if (mp == NULL)
|
|
|
|
return NULL;
|
|
|
|
wmenuattach(self->w_win, mp->m_menu);
|
|
|
|
return (object *)mp;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
window_textcreate(self, args)
|
|
|
|
windowobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
textobject *tp;
|
|
|
|
int a[4];
|
|
|
|
if (!getrectarg(args, a))
|
|
|
|
return NULL;
|
|
|
|
return (object *)
|
|
|
|
newtextobject(self, a[0], a[1], a[2], a[3]);
|
|
|
|
}
|
|
|
|
|
1990-10-30 12:01:48 -04:00
|
|
|
static object *
|
|
|
|
window_setselection(self, args)
|
|
|
|
windowobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1992-01-27 12:45:55 -04:00
|
|
|
int sel, size, ok;
|
|
|
|
char *text;
|
|
|
|
if (!getargs(args, "(is#)", &sel, &text, &size))
|
1990-10-30 12:01:48 -04:00
|
|
|
return NULL;
|
1992-01-27 12:45:55 -04:00
|
|
|
ok = wsetselection(self->w_win, sel, text, size);
|
1990-10-30 12:01:48 -04:00
|
|
|
return newintobject(ok);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
window_setwincursor(self, args)
|
|
|
|
windowobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1992-01-27 12:45:55 -04:00
|
|
|
char *name;
|
1990-10-30 12:01:48 -04:00
|
|
|
CURSOR *c;
|
1992-02-05 07:15:00 -04:00
|
|
|
if (!getargs(args, "z", &name))
|
1990-10-30 12:01:48 -04:00
|
|
|
return NULL;
|
1992-02-05 07:15:00 -04:00
|
|
|
if (name == NULL)
|
|
|
|
c = NULL;
|
|
|
|
else {
|
|
|
|
c = wfetchcursor(name);
|
|
|
|
if (c == NULL) {
|
|
|
|
err_setstr(StdwinError, "no such cursor");
|
|
|
|
return NULL;
|
|
|
|
}
|
1990-10-30 12:01:48 -04:00
|
|
|
}
|
|
|
|
wsetwincursor(self->w_win, c);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1992-01-27 12:45:55 -04:00
|
|
|
static object *
|
|
|
|
window_setactive(self, args)
|
|
|
|
windowobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
wsetactive(self->w_win);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1991-07-27 18:42:24 -03:00
|
|
|
#ifdef CWI_HACKS
|
|
|
|
static object *
|
|
|
|
window_getxwindowid(self, args)
|
|
|
|
windowobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
long wid = wgetxwindowid(self->w_win);
|
|
|
|
return newintobject(wid);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static struct methodlist window_methods[] = {
|
|
|
|
{"begindrawing",window_begindrawing},
|
|
|
|
{"change", window_change},
|
1991-11-27 10:54:54 -04:00
|
|
|
{"close", window_close},
|
1990-10-14 09:07:46 -03:00
|
|
|
{"getdocsize", window_getdocsize},
|
|
|
|
{"getorigin", window_getorigin},
|
|
|
|
{"gettitle", window_gettitle},
|
1991-05-05 17:13:41 -03:00
|
|
|
{"getwinpos", window_getwinpos},
|
1990-10-14 09:07:46 -03:00
|
|
|
{"getwinsize", window_getwinsize},
|
|
|
|
{"menucreate", window_menucreate},
|
|
|
|
{"scroll", window_scroll},
|
1992-01-26 14:13:18 -04:00
|
|
|
{"setactive", window_setactive},
|
1990-10-14 09:07:46 -03:00
|
|
|
{"setdocsize", window_setdocsize},
|
|
|
|
{"setorigin", window_setorigin},
|
1990-10-30 12:01:48 -04:00
|
|
|
{"setselection",window_setselection},
|
1990-10-14 09:07:46 -03:00
|
|
|
{"settimer", window_settimer},
|
|
|
|
{"settitle", window_settitle},
|
1991-04-16 05:43:03 -03:00
|
|
|
{"setwincursor",window_setwincursor},
|
1990-10-14 09:07:46 -03:00
|
|
|
{"show", window_show},
|
|
|
|
{"textcreate", window_textcreate},
|
1991-07-27 18:42:24 -03:00
|
|
|
#ifdef CWI_HACKS
|
|
|
|
{"getxwindowid",window_getxwindowid},
|
|
|
|
#endif
|
1990-10-14 09:07:46 -03:00
|
|
|
{NULL, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
|
|
|
static object *
|
|
|
|
window_getattr(wp, name)
|
|
|
|
windowobject *wp;
|
|
|
|
char *name;
|
|
|
|
{
|
1991-10-20 17:22:50 -03:00
|
|
|
object *v = NULL;
|
1992-01-14 14:41:24 -04:00
|
|
|
if (wp->w_win == NULL) {
|
|
|
|
err_setstr(StdwinError, "window already closed");
|
|
|
|
return NULL;
|
|
|
|
}
|
1991-10-20 17:22:50 -03:00
|
|
|
if (strcmp(name, "__dict__") == 0) {
|
|
|
|
v = wp->w_attr;
|
|
|
|
if (v == NULL)
|
|
|
|
v = None;
|
|
|
|
}
|
|
|
|
else if (wp->w_attr != NULL) {
|
|
|
|
v = dictlookup(wp->w_attr, name);
|
|
|
|
}
|
|
|
|
if (v != NULL) {
|
|
|
|
INCREF(v);
|
|
|
|
return v;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
return findmethod(window_methods, (object *)wp, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
window_setattr(wp, name, v)
|
|
|
|
windowobject *wp;
|
|
|
|
char *name;
|
|
|
|
object *v;
|
|
|
|
{
|
|
|
|
if (wp->w_attr == NULL) {
|
|
|
|
wp->w_attr = newdictobject();
|
|
|
|
if (wp->w_attr == NULL)
|
|
|
|
return -1;
|
|
|
|
}
|
1992-09-04 06:45:18 -03:00
|
|
|
if (v == NULL) {
|
|
|
|
int rv = dictremove(wp->w_attr, name);
|
|
|
|
if (rv < 0)
|
|
|
|
err_setstr(AttributeError,
|
|
|
|
"delete non-existing menu object attribute");
|
|
|
|
return rv;
|
|
|
|
}
|
1990-10-14 09:07:46 -03:00
|
|
|
else
|
|
|
|
return dictinsert(wp->w_attr, name, v);
|
|
|
|
}
|
|
|
|
|
1991-05-05 17:13:41 -03:00
|
|
|
typeobject Windowtype = {
|
1990-10-14 09:07:46 -03:00
|
|
|
OB_HEAD_INIT(&Typetype)
|
|
|
|
0, /*ob_size*/
|
|
|
|
"window", /*tp_name*/
|
|
|
|
sizeof(windowobject), /*tp_size*/
|
|
|
|
0, /*tp_itemsize*/
|
|
|
|
/* methods */
|
|
|
|
window_dealloc, /*tp_dealloc*/
|
1992-09-17 14:54:56 -03:00
|
|
|
0, /*tp_print*/
|
1990-10-14 09:07:46 -03:00
|
|
|
window_getattr, /*tp_getattr*/
|
|
|
|
window_setattr, /*tp_setattr*/
|
|
|
|
0, /*tp_compare*/
|
|
|
|
0, /*tp_repr*/
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Stdwin methods */
|
|
|
|
|
|
|
|
static object *
|
|
|
|
stdwin_open(sw, args)
|
|
|
|
object *sw;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int tag;
|
|
|
|
object *title;
|
|
|
|
windowobject *wp;
|
1992-01-27 12:45:55 -04:00
|
|
|
if (!getStrarg(args, &title))
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
for (tag = 0; tag < MAXNWIN; tag++) {
|
|
|
|
if (windowlist[tag] == NULL)
|
|
|
|
break;
|
|
|
|
}
|
1991-04-16 05:43:03 -03:00
|
|
|
if (tag >= MAXNWIN) {
|
1991-12-10 10:00:03 -04:00
|
|
|
err_setstr(StdwinError, "creating too many windows");
|
1991-04-16 05:43:03 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
1990-10-14 09:07:46 -03:00
|
|
|
wp = NEWOBJ(windowobject, &Windowtype);
|
|
|
|
if (wp == NULL)
|
|
|
|
return NULL;
|
|
|
|
INCREF(title);
|
|
|
|
wp->w_title = title;
|
|
|
|
wp->w_win = wopen(getstringvalue(title), (void (*)()) NULL);
|
|
|
|
wp->w_attr = NULL;
|
|
|
|
if (wp->w_win == NULL) {
|
|
|
|
DECREF(wp);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
windowlist[tag] = wp;
|
|
|
|
wsettag(wp->w_win, tag);
|
|
|
|
return (object *)wp;
|
|
|
|
}
|
|
|
|
|
1991-06-03 07:55:14 -03:00
|
|
|
static object *
|
|
|
|
window2object(win)
|
|
|
|
WINDOW *win;
|
|
|
|
{
|
|
|
|
object *w;
|
|
|
|
if (win == NULL)
|
|
|
|
w = None;
|
|
|
|
else {
|
|
|
|
int tag = wgettag(win);
|
|
|
|
if (tag < 0 || tag >= MAXNWIN || windowlist[tag] == NULL ||
|
|
|
|
windowlist[tag]->w_win != win)
|
|
|
|
w = None;
|
|
|
|
else
|
|
|
|
w = (object *)windowlist[tag];
|
|
|
|
}
|
|
|
|
INCREF(w);
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static object *
|
1991-01-16 10:06:18 -04:00
|
|
|
stdwin_get_poll_event(poll, args)
|
|
|
|
int poll;
|
1990-10-14 09:07:46 -03:00
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
EVENT e;
|
1992-04-13 12:54:35 -03:00
|
|
|
object *u, *v, *w;
|
1990-10-14 09:07:46 -03:00
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
if (Drawing != NULL) {
|
1991-12-10 10:00:03 -04:00
|
|
|
err_setstr(StdwinError, "cannot getevent() while drawing");
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
1991-06-03 07:55:14 -03:00
|
|
|
again:
|
1992-08-05 16:58:53 -03:00
|
|
|
BGN_STDWIN
|
1991-01-16 10:06:18 -04:00
|
|
|
if (poll) {
|
|
|
|
if (!wpollevent(&e)) {
|
1992-08-05 16:58:53 -03:00
|
|
|
RET_STDWIN
|
1991-01-16 10:06:18 -04:00
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
wgetevent(&e);
|
1992-08-05 16:58:53 -03:00
|
|
|
END_STDWIN
|
1990-10-14 09:07:46 -03:00
|
|
|
if (e.type == WE_COMMAND && e.u.command == WC_CANCEL) {
|
|
|
|
/* Turn keyboard interrupts into exceptions */
|
|
|
|
err_set(KeyboardInterrupt);
|
|
|
|
return NULL;
|
|
|
|
}
|
1990-11-06 11:17:35 -04:00
|
|
|
if (e.type == WE_COMMAND && e.u.command == WC_CLOSE) {
|
|
|
|
/* Turn WC_CLOSE commands into WE_CLOSE events */
|
|
|
|
e.type = WE_CLOSE;
|
|
|
|
}
|
1992-04-13 12:54:35 -03:00
|
|
|
v = window2object(e.window);
|
1990-10-14 09:07:46 -03:00
|
|
|
switch (e.type) {
|
|
|
|
case WE_CHAR:
|
|
|
|
{
|
|
|
|
char c[1];
|
|
|
|
c[0] = e.u.character;
|
|
|
|
w = newsizedstringobject(c, 1);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case WE_COMMAND:
|
|
|
|
w = newintobject((long)e.u.command);
|
|
|
|
break;
|
|
|
|
case WE_DRAW:
|
|
|
|
w = makerect(e.u.area.left, e.u.area.top,
|
|
|
|
e.u.area.right, e.u.area.bottom);
|
|
|
|
break;
|
|
|
|
case WE_MOUSE_DOWN:
|
|
|
|
case WE_MOUSE_MOVE:
|
|
|
|
case WE_MOUSE_UP:
|
1992-04-13 12:54:35 -03:00
|
|
|
w = mkvalue("((ii)iii)",
|
|
|
|
e.u.where.h, e.u.where.v,
|
1990-10-14 09:07:46 -03:00
|
|
|
e.u.where.clicks,
|
|
|
|
e.u.where.button,
|
|
|
|
e.u.where.mask);
|
|
|
|
break;
|
|
|
|
case WE_MENU:
|
1991-02-19 08:26:49 -04:00
|
|
|
if (e.u.m.id >= IDOFFSET && e.u.m.id < IDOFFSET+MAXNMENU &&
|
|
|
|
menulist[e.u.m.id - IDOFFSET] != NULL)
|
1992-04-13 12:54:35 -03:00
|
|
|
w = mkvalue("(Oi)",
|
|
|
|
menulist[e.u.m.id - IDOFFSET], e.u.m.item);
|
1991-06-03 07:55:14 -03:00
|
|
|
else {
|
|
|
|
/* Ghost menu event.
|
|
|
|
Can occur only on the Mac if another part
|
|
|
|
of the aplication has installed a menu;
|
|
|
|
like the THINK C console library. */
|
|
|
|
DECREF(v);
|
|
|
|
goto again;
|
|
|
|
}
|
1990-10-14 09:07:46 -03:00
|
|
|
break;
|
1992-06-30 09:48:26 -03:00
|
|
|
case WE_KEY:
|
|
|
|
w = mkvalue("(ii)", e.u.key.code, e.u.key.mask);
|
|
|
|
break;
|
1990-10-30 12:01:48 -04:00
|
|
|
case WE_LOST_SEL:
|
|
|
|
w = newintobject((long)e.u.sel);
|
|
|
|
break;
|
1990-10-14 09:07:46 -03:00
|
|
|
default:
|
|
|
|
w = None;
|
|
|
|
INCREF(w);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (w == NULL) {
|
|
|
|
DECREF(v);
|
|
|
|
return NULL;
|
|
|
|
}
|
1992-04-13 12:54:35 -03:00
|
|
|
u = mkvalue("(iOO)", e.type, v, w);
|
|
|
|
XDECREF(v);
|
|
|
|
XDECREF(w);
|
|
|
|
return u;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
1991-01-16 10:06:18 -04:00
|
|
|
static object *
|
|
|
|
stdwin_getevent(sw, args)
|
|
|
|
object *sw;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
return stdwin_get_poll_event(0, args);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
stdwin_pollevent(sw, args)
|
|
|
|
object *sw;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
return stdwin_get_poll_event(1, args);
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static object *
|
|
|
|
stdwin_setdefwinpos(sw, args)
|
|
|
|
object *sw;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int a[2];
|
|
|
|
if (!getpointarg(args, a))
|
|
|
|
return NULL;
|
|
|
|
wsetdefwinpos(a[0], a[1]);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
stdwin_setdefwinsize(sw, args)
|
|
|
|
object *sw;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int a[2];
|
|
|
|
if (!getpointarg(args, a))
|
|
|
|
return NULL;
|
|
|
|
wsetdefwinsize(a[0], a[1]);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1991-04-03 15:12:14 -04:00
|
|
|
static object *
|
|
|
|
stdwin_setdefscrollbars(sw, args)
|
|
|
|
object *sw;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int a[2];
|
|
|
|
if (!getpointarg(args, a))
|
|
|
|
return NULL;
|
|
|
|
wsetdefscrollbars(a[0], a[1]);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1991-02-13 19:19:39 -04:00
|
|
|
static object *
|
1991-05-05 17:13:41 -03:00
|
|
|
stdwin_getdefwinpos(self, args)
|
|
|
|
object *self;
|
1991-02-13 19:19:39 -04:00
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int h, v;
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
wgetdefwinpos(&h, &v);
|
|
|
|
return makepoint(h, v);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
1991-05-05 17:13:41 -03:00
|
|
|
stdwin_getdefwinsize(self, args)
|
|
|
|
object *self;
|
1991-02-13 19:19:39 -04:00
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int width, height;
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
wgetdefwinsize(&width, &height);
|
|
|
|
return makepoint(width, height);
|
|
|
|
}
|
|
|
|
|
1991-04-03 15:12:14 -04:00
|
|
|
static object *
|
1991-05-05 17:13:41 -03:00
|
|
|
stdwin_getdefscrollbars(self, args)
|
|
|
|
object *self;
|
1991-04-03 15:12:14 -04:00
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int h, v;
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
wgetdefscrollbars(&h, &v);
|
|
|
|
return makepoint(h, v);
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static object *
|
|
|
|
stdwin_menucreate(self, args)
|
|
|
|
object *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1992-01-27 12:45:55 -04:00
|
|
|
char *title;
|
1990-10-14 09:07:46 -03:00
|
|
|
if (!getstrarg(args, &title))
|
|
|
|
return NULL;
|
|
|
|
wmenusetdeflocal(0);
|
|
|
|
return (object *)newmenuobject(title);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
stdwin_askfile(self, args)
|
|
|
|
object *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1992-01-27 12:45:55 -04:00
|
|
|
char *prompt, *dflt;
|
1990-10-14 09:07:46 -03:00
|
|
|
int new, ret;
|
|
|
|
char buf[256];
|
|
|
|
if (!getstrstrintarg(args, &prompt, &dflt, &new))
|
|
|
|
return NULL;
|
1992-01-27 12:45:55 -04:00
|
|
|
strncpy(buf, dflt, sizeof buf);
|
1990-10-14 09:07:46 -03:00
|
|
|
buf[sizeof buf - 1] = '\0';
|
1992-08-05 16:58:53 -03:00
|
|
|
BGN_STDWIN
|
1992-01-27 12:45:55 -04:00
|
|
|
ret = waskfile(prompt, buf, sizeof buf, new);
|
1992-08-05 16:58:53 -03:00
|
|
|
END_STDWIN
|
1990-10-14 09:07:46 -03:00
|
|
|
if (!ret) {
|
|
|
|
err_set(KeyboardInterrupt);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return newstringobject(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
stdwin_askync(self, args)
|
|
|
|
object *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1992-01-27 12:45:55 -04:00
|
|
|
char *prompt;
|
1990-10-14 09:07:46 -03:00
|
|
|
int new, ret;
|
|
|
|
if (!getstrintarg(args, &prompt, &new))
|
|
|
|
return NULL;
|
1992-08-05 16:58:53 -03:00
|
|
|
BGN_STDWIN
|
1992-01-27 12:45:55 -04:00
|
|
|
ret = waskync(prompt, new);
|
1992-08-05 16:58:53 -03:00
|
|
|
END_STDWIN
|
1990-10-14 09:07:46 -03:00
|
|
|
if (ret < 0) {
|
|
|
|
err_set(KeyboardInterrupt);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return newintobject((long)ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
stdwin_askstr(self, args)
|
|
|
|
object *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1992-01-27 12:45:55 -04:00
|
|
|
char *prompt, *dflt;
|
1990-10-14 09:07:46 -03:00
|
|
|
int ret;
|
|
|
|
char buf[256];
|
|
|
|
if (!getstrstrarg(args, &prompt, &dflt))
|
|
|
|
return NULL;
|
1992-01-27 12:45:55 -04:00
|
|
|
strncpy(buf, dflt, sizeof buf);
|
1990-10-14 09:07:46 -03:00
|
|
|
buf[sizeof buf - 1] = '\0';
|
1992-08-05 16:58:53 -03:00
|
|
|
BGN_STDWIN
|
1992-01-27 12:45:55 -04:00
|
|
|
ret = waskstr(prompt, buf, sizeof buf);
|
1992-08-05 16:58:53 -03:00
|
|
|
END_STDWIN
|
1990-10-14 09:07:46 -03:00
|
|
|
if (!ret) {
|
|
|
|
err_set(KeyboardInterrupt);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return newstringobject(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
stdwin_message(self, args)
|
|
|
|
object *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1992-01-27 12:45:55 -04:00
|
|
|
char *msg;
|
1990-10-14 09:07:46 -03:00
|
|
|
if (!getstrarg(args, &msg))
|
|
|
|
return NULL;
|
1992-08-05 16:58:53 -03:00
|
|
|
BGN_STDWIN
|
1992-01-27 12:45:55 -04:00
|
|
|
wmessage(msg);
|
1992-08-05 16:58:53 -03:00
|
|
|
END_STDWIN
|
1990-10-14 09:07:46 -03:00
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
stdwin_fleep(self, args)
|
|
|
|
object *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
wfleep();
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
stdwin_setcutbuffer(self, args)
|
|
|
|
object *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1992-01-27 12:45:55 -04:00
|
|
|
int i, size;
|
|
|
|
char *str;
|
|
|
|
if (!getargs(args, "(is#)", &i, &str, &size))
|
1990-11-06 11:17:35 -04:00
|
|
|
return NULL;
|
1992-01-27 12:45:55 -04:00
|
|
|
wsetcutbuffer(i, str, size);
|
1990-10-14 09:07:46 -03:00
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1991-06-03 07:55:14 -03:00
|
|
|
static object *
|
|
|
|
stdwin_getactive(self, args)
|
|
|
|
object *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
return window2object(wgetactive());
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static object *
|
|
|
|
stdwin_getcutbuffer(self, args)
|
|
|
|
object *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1990-10-30 12:01:48 -04:00
|
|
|
int i;
|
1990-10-14 09:07:46 -03:00
|
|
|
char *str;
|
1990-10-30 09:39:00 -04:00
|
|
|
int len;
|
1990-11-06 11:17:35 -04:00
|
|
|
if (!getintarg(args, &i))
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
1990-10-30 12:01:48 -04:00
|
|
|
str = wgetcutbuffer(i, &len);
|
1990-10-30 09:39:00 -04:00
|
|
|
if (str == NULL) {
|
1990-10-14 09:07:46 -03:00
|
|
|
str = "";
|
1990-10-30 09:39:00 -04:00
|
|
|
len = 0;
|
|
|
|
}
|
|
|
|
return newsizedstringobject(str, len);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
1990-10-30 12:01:48 -04:00
|
|
|
static object *
|
|
|
|
stdwin_rotatecutbuffers(self, args)
|
|
|
|
object *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
if (!getintarg(args, &i))
|
|
|
|
return NULL;
|
|
|
|
wrotatecutbuffers(i);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
stdwin_getselection(self, args)
|
|
|
|
object *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int sel;
|
|
|
|
char *data;
|
|
|
|
int len;
|
|
|
|
if (!getintarg(args, &sel))
|
|
|
|
return NULL;
|
|
|
|
data = wgetselection(sel, &len);
|
|
|
|
if (data == NULL) {
|
|
|
|
data = "";
|
|
|
|
len = 0;
|
|
|
|
}
|
|
|
|
return newsizedstringobject(data, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
stdwin_resetselection(self, args)
|
|
|
|
object *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int sel;
|
|
|
|
if (!getintarg(args, &sel))
|
|
|
|
return NULL;
|
|
|
|
wresetselection(sel);
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1991-04-03 15:12:14 -04:00
|
|
|
static object *
|
|
|
|
stdwin_fetchcolor(self, args)
|
|
|
|
object *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1992-01-27 12:45:55 -04:00
|
|
|
char *colorname;
|
1991-04-03 15:12:14 -04:00
|
|
|
if (!getstrarg(args, &colorname))
|
|
|
|
return NULL;
|
1992-01-27 12:45:55 -04:00
|
|
|
return newintobject((long)wfetchcolor(colorname));
|
1991-04-03 15:12:14 -04:00
|
|
|
}
|
|
|
|
|
1991-05-05 17:13:41 -03:00
|
|
|
static object *
|
|
|
|
stdwin_getscrsize(self, args)
|
|
|
|
object *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int width, height;
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
wgetscrsize(&width, &height);
|
|
|
|
return makepoint(width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
stdwin_getscrmm(self, args)
|
|
|
|
object *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int width, height;
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
wgetscrmm(&width, &height);
|
|
|
|
return makepoint(width, height);
|
|
|
|
}
|
|
|
|
|
1992-06-23 06:07:03 -03:00
|
|
|
#ifdef unix
|
|
|
|
static object *
|
|
|
|
stdwin_connectionnumber(self, args)
|
|
|
|
object *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
|
|
|
return newintobject((long) wconnectionnumber());
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static struct methodlist stdwin_methods[] = {
|
|
|
|
{"askfile", stdwin_askfile},
|
|
|
|
{"askstr", stdwin_askstr},
|
|
|
|
{"askync", stdwin_askync},
|
1991-04-16 05:43:03 -03:00
|
|
|
{"fetchcolor", stdwin_fetchcolor},
|
1992-06-23 06:07:03 -03:00
|
|
|
#ifdef unix
|
|
|
|
{"fileno", stdwin_connectionnumber},
|
|
|
|
{"connectionnumber", stdwin_connectionnumber},
|
|
|
|
#endif
|
1990-10-14 09:07:46 -03:00
|
|
|
{"fleep", stdwin_fleep},
|
1991-06-03 07:55:14 -03:00
|
|
|
{"getactive", stdwin_getactive},
|
1990-10-14 09:07:46 -03:00
|
|
|
{"getcutbuffer", stdwin_getcutbuffer},
|
1991-04-03 15:12:14 -04:00
|
|
|
{"getdefscrollbars", stdwin_getdefscrollbars},
|
1991-02-13 19:19:39 -04:00
|
|
|
{"getdefwinpos", stdwin_getdefwinpos},
|
|
|
|
{"getdefwinsize", stdwin_getdefwinsize},
|
1990-10-14 09:07:46 -03:00
|
|
|
{"getevent", stdwin_getevent},
|
1991-05-05 17:13:41 -03:00
|
|
|
{"getscrmm", stdwin_getscrmm},
|
|
|
|
{"getscrsize", stdwin_getscrsize},
|
1991-04-16 05:43:03 -03:00
|
|
|
{"getselection", stdwin_getselection},
|
1990-10-14 09:07:46 -03:00
|
|
|
{"menucreate", stdwin_menucreate},
|
|
|
|
{"message", stdwin_message},
|
|
|
|
{"open", stdwin_open},
|
1991-01-16 10:06:18 -04:00
|
|
|
{"pollevent", stdwin_pollevent},
|
1990-10-30 12:01:48 -04:00
|
|
|
{"resetselection", stdwin_resetselection},
|
|
|
|
{"rotatecutbuffers", stdwin_rotatecutbuffers},
|
1990-10-14 09:07:46 -03:00
|
|
|
{"setcutbuffer", stdwin_setcutbuffer},
|
1991-04-03 15:12:14 -04:00
|
|
|
{"setdefscrollbars", stdwin_setdefscrollbars},
|
1990-10-14 09:07:46 -03:00
|
|
|
{"setdefwinpos", stdwin_setdefwinpos},
|
|
|
|
{"setdefwinsize", stdwin_setdefwinsize},
|
|
|
|
|
|
|
|
/* Text measuring methods borrow code from drawing objects: */
|
|
|
|
{"baseline", drawing_baseline},
|
|
|
|
{"lineheight", drawing_lineheight},
|
|
|
|
{"textbreak", drawing_textbreak},
|
|
|
|
{"textwidth", drawing_textwidth},
|
1991-04-03 15:12:14 -04:00
|
|
|
|
|
|
|
/* Same for font setting methods: */
|
|
|
|
{"setfont", drawing_setfont},
|
|
|
|
|
|
|
|
/* Same for color setting/getting methods: */
|
|
|
|
{"getbgcolor", drawing_getbgcolor},
|
|
|
|
{"getfgcolor", drawing_getfgcolor},
|
|
|
|
{"setbgcolor", drawing_setbgcolor},
|
|
|
|
{"setfgcolor", drawing_setfgcolor},
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
{NULL, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
initstdwin()
|
|
|
|
{
|
1991-12-16 11:44:53 -04:00
|
|
|
object *m, *d;
|
|
|
|
static int inited = 0;
|
|
|
|
|
1991-02-19 08:26:49 -04:00
|
|
|
if (!inited) {
|
|
|
|
winit();
|
|
|
|
inited = 1;
|
|
|
|
}
|
1991-12-16 11:44:53 -04:00
|
|
|
m = initmodule("stdwin", stdwin_methods);
|
|
|
|
d = getmoduledict(m);
|
|
|
|
|
|
|
|
/* Initialize stdwin.error exception */
|
|
|
|
StdwinError = newstringobject("stdwin.error");
|
|
|
|
if (StdwinError == NULL || dictinsert(d, "error", StdwinError) != 0)
|
|
|
|
fatal("can't define stdwin.error");
|
1992-08-05 16:58:53 -03:00
|
|
|
#ifdef USE_THREAD
|
|
|
|
StdwinLock = allocate_lock();
|
|
|
|
if (StdwinLock == NULL)
|
|
|
|
fatal("can't allocate stdwin lock");
|
|
|
|
#endif
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|