/* * tkSquare.c -- * * This module implements "square" widgets. A "square" is * a widget that displays a single square that can be moved * around and resized. This file is intended as an example * of how to build a widget. * * Copyright 1991-1992 Regents of the University of California. * 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. The University of California * makes no representations about the suitability of this * software for any purpose. It is provided "as is" without * express or implied warranty. */ #ifndef lint static char rcsid[] = "$Header: /user6/ouster/wish/scripts/demos/RCS/tkSquare.c,v 1.2 92/04/29 11:45:17 ouster Exp $ SPRITE (Berkeley)"; #endif #include "tkConfig.h" #include "tk.h" /* * A data structure of the following type is kept for each square * widget managed by this file: */ typedef struct { Tk_Window tkwin; /* Window that embodies the square. NULL * means that the window has been destroyed * but the data structures haven't yet been * cleaned up.*/ Tcl_Interp *interp; /* Interpreter associated with widget. */ int x, y; /* Position of square's upper-left corner * within widget. */ int size; /* Width and height of square. */ int flags; /* Various flags; see below for * definitions. */ /* * Information used when displaying widget: */ int borderWidth; /* Width of 3-D border around whole widget. */ Tk_3DBorder bgBorder; /* Used for drawing background. */ Tk_3DBorder fgBorder; /* For drawing square. */ int relief; /* Indicates whether window as a whole is * raised, sunken, or flat. */ int doubleBuffer; /* Non-zero means double-buffer redisplay * with pixmap; zero means draw straight * onto the display. */ } Square; /* * Flag bits for squares: * * REDRAW_PENDING - 1 means redraw has already been scheduled. */ #define REDRAW_PENDING 1 /* * Information used for argv parsing. */ static Tk_ConfigSpec configSpecs[] = { {TK_CONFIG_BORDER, "-background", "background", "Background", "#cdb79e", Tk_Offset(Square, bgBorder), TK_CONFIG_COLOR_ONLY}, {TK_CONFIG_BORDER, "-background", "background", "Background", "white", Tk_Offset(Square, bgBorder), TK_CONFIG_MONO_ONLY}, {TK_CONFIG_SYNONYM, "-bd", "borderWidth", (char *) NULL, (char *) NULL, 0, 0}, {TK_CONFIG_SYNONYM, "-bg", "background", (char *) NULL, (char *) NULL, 0, 0}, {TK_CONFIG_INT, "-borderwidth", "borderWidth", "BorderWidth", "2", Tk_Offset(Square, borderWidth), 0}, {TK_CONFIG_INT, "-dbl", "doubleBuffer", "DoubleBuffer", "1", Tk_Offset(Square, doubleBuffer), 0}, {TK_CONFIG_SYNONYM, "-fg", "foreground", (char *) NULL, (char *) NULL, 0, 0}, {TK_CONFIG_BORDER, "-foreground", "foreground", "Foreground", "#b03060", Tk_Offset(Square, fgBorder), TK_CONFIG_COLOR_ONLY}, {TK_CONFIG_BORDER, "-foreground", "foreground", "Foreground", "black", Tk_Offset(Square, fgBorder), TK_CONFIG_MONO_ONLY}, {TK_CONFIG_RELIEF, "-relief", "relief", "Relief", "raised", Tk_Offset(Square, relief), 0}, {TK_CONFIG_END, (char *) NULL, (char *) NULL, (char *) NULL, (char *) NULL, 0, 0} }; /* * Forward declarations for procedures defined later in this file: */ static int ConfigureSquare _ANSI_ARGS_((Tcl_Interp *interp, Square *squarePtr, int argc, char **argv, int flags)); static void DestroySquare _ANSI_ARGS_((ClientData clientData)); static void DisplaySquare _ANSI_ARGS_((ClientData clientData)); static void KeepInWindow _ANSI_ARGS_((Square *squarePtr)); static void SquareEventProc _ANSI_ARGS_((ClientData clientData, XEvent *eventPtr)); static int SquareWidgetCmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp *, int argc, char **argv)); /* *-------------------------------------------------------------- * * Tk_SquareCmd -- * * This procedure is invoked to process the "square" Tcl * command. It creates a new "square" widget. * * Results: * A standard Tcl result. * * Side effects: * A new widget is created and configured. * *-------------------------------------------------------------- */ int Tk_SquareCmd(clientData, interp, argc, argv) ClientData clientData; /* Main window associated with * interpreter. */ Tcl_Interp *interp; /* Current interpreter. */ int argc; /* Number of arguments. */ char **argv; /* Argument strings. */ { Tk_Window main = (Tk_Window) clientData; register Square *squarePtr; Tk_Window tkwin; if (argc < 2) { Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0], " pathName ?options?\"", (char *) NULL); return TCL_ERROR; } tkwin = Tk_CreateWindowFromPath(interp, main, argv[1], (char *) NULL); if (tkwin == NULL) { return TCL_ERROR; } /* * Initialize fields that won't be initialized by ConfigureSquare, * or which ConfigureSquare expects to have reasonable values * (e.g. resource pointers). */ squarePtr = (Square *) ckalloc(sizeof(Square)); squarePtr->tkwin = tkwin; squarePtr->interp = interp; squarePtr->x = 0; squarePtr->y = 0; squarePtr->size = 20; squarePtr->bgBorder = NULL; squarePtr->fgBorder = NULL; squarePtr->flags = 0; Tk_SetClass(squarePtr->tkwin, "Square"); Tk_CreateEventHandler(squarePtr->tkwin, ExposureMask|StructureNotifyMask, SquareEventProc, (ClientData) squarePtr); Tcl_CreateCommand(interp, Tk_PathName(squarePtr->tkwin), SquareWidgetCmd, (ClientData) squarePtr, (void (*)()) NULL); if (ConfigureSquare(interp, squarePtr, argc-2, argv+2, 0) != TCL_OK) { Tk_DestroyWindow(squarePtr->tkwin); return TCL_ERROR; } interp->result = Tk_PathName(squarePtr->tkwin); return TCL_OK; } /* *---------------------------------------------------------------------- * * ConfigureSquare -- * * This procedure is called to process an argv/argc list in * conjunction with the Tk option database to configure (or * reconfigure) a square widget. * * Results: * The return value is a standard Tcl result. If TCL_ERROR is * returned, then interp->result contains an error message. * * Side effects: * Configuration information, such as colors, border width, * etc. get set for squarePtr; old resources get freed, * if there were any. * *---------------------------------------------------------------------- */ static int ConfigureSquare(interp, squarePtr, argc, argv, flags) Tcl_Interp *interp; /* Used for error reporting. */ register Square *squarePtr; /* Information about widget. */ int argc; /* Number of valid entries in argv. */ char **argv; /* Arguments. */ int flags; /* Flags to pass to * Tk_ConfigureWidget. */ { if (Tk_ConfigureWidget(interp, squarePtr->tkwin, configSpecs, argc, argv, (char *) squarePtr, flags) != TCL_OK) { return TCL_ERROR; } /* * A few options need special processing, such as setting the * background from a 3-D border. */ Tk_SetBackgroundFromBorder(squarePtr->tkwin, squarePtr->bgBorder); /* * Register the desired geometry for the window. Then arrange for * the window to be redisplayed. */ Tk_GeometryRequest(squarePtr->tkwin, 200, 150); Tk_SetInternalBorder(squarePtr->tkwin, squarePtr->borderWidth); if (!(squarePtr->flags & REDRAW_PENDING)) { Tk_DoWhenIdle(DisplaySquare, (ClientData) squarePtr); squarePtr->flags |= REDRAW_PENDING; } return TCL_OK; } /* *-------------------------------------------------------------- * * DisplaySquare -- * * This procedure redraws the contents of a square window. * It is invoked as a do-when-idle handler, so it only runs * when there's nothing else for the application to do. * * Results: * None. * * Side effects: * Information appears on the screen. * *-------------------------------------------------------------- */ static void DisplaySquare(clientData) ClientData clientData; /* Information about window. */ { register Square *squarePtr = (Square *) clientData; register Tk_Window tkwin = squarePtr->tkwin; Pixmap pm = None; Drawable d; squarePtr->flags &= ~REDRAW_PENDING; if ((tkwin == NULL) || !Tk_IsMapped(tkwin)) { return; } /* * Create a pixmap for double-buffering, if necessary. */ if (squarePtr->doubleBuffer) { pm = XCreatePixmap(Tk_Display(tkwin), Tk_WindowId(tkwin), Tk_Width(tkwin), Tk_Height(tkwin), DefaultDepthOfScreen(Tk_Screen(tkwin))); d = pm; } else { d = Tk_WindowId(tkwin); } /* * Redraw the widget's background and border. */ Tk_Fill3DRectangle(Tk_Display(tkwin), d, squarePtr->bgBorder, 0, 0, Tk_Width(tkwin), Tk_Height(tkwin), squarePtr->borderWidth, squarePtr->relief); /* * Display the square. */ Tk_Fill3DRectangle(Tk_Display(tkwin), d, squarePtr->fgBorder, squarePtr->x, squarePtr->y, squarePtr->size, squarePtr->size, squarePtr->borderWidth, TK_RELIEF_RAISED); /* * If double-buffered, copy to the screen and release the pixmap. */ if (squarePtr->doubleBuffer) { XCopyArea(Tk_Display(tkwin), pm, Tk_WindowId(tkwin), DefaultGCOfScreen(Tk_Screen(tkwin)), 0, 0, Tk_Width(tkwin), Tk_Height(tkwin), 0, 0); XFreePixmap(Tk_Display(tkwin), pm); } } /* *-------------------------------------------------------------- * * SquareWidgetCmd -- * * This procedure is invoked to process the Tcl command * that corresponds to a widget managed by this module. * See the user documentation for details on what it does. * * Results: * A standard Tcl result. * * Side effects: * See the user documentation. * *-------------------------------------------------------------- */ static int SquareWidgetCmd(clientData, interp, argc, argv) ClientData clientData; /* Information about square widget. */ Tcl_Interp *interp; /* Current interpreter. */ int argc; /* Number of arguments. */ char **argv; /* Argument strings. */ { register Square *squarePtr = (Square *) clientData; int result = TCL_OK; int length; char c; if (argc < 2) { Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0], " option ?arg arg ...?\"", (char *) NULL); return TCL_ERROR; } Tk_Preserve((ClientData) squarePtr); c = argv[1][0]; length = strlen(argv[1]); if ((c == 'c') && (strncmp(argv[1], "configure", length) == 0)) { if (argc == 2) { result = Tk_ConfigureInfo(interp, squarePtr->tkwin, configSpecs, (char *) squarePtr, (char *) NULL, 0); } else if (argc == 3) { result = Tk_ConfigureInfo(interp, squarePtr->tkwin, configSpecs, (char *) squarePtr, argv[2], 0); } else { result = ConfigureSquare(interp, squarePtr, argc-2, argv+2, TK_CONFIG_ARGV_ONLY); } } else if ((c == 'p') && (strncmp(argv[1], "position", length) == 0)) { if ((argc != 2) && (argc != 4)) { Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0], " position ?x y?\"", (char *) NULL); goto error; } if (argc == 4) { if ((Tcl_GetInt(interp, argv[2], &squarePtr->x) != TCL_OK) || (Tcl_GetInt(interp, argv[3], &squarePtr->y) != TCL_OK)) { goto error; } KeepInWindow(squarePtr); } sprintf(interp->result, "%d %d", squarePtr->x, squarePtr->y); } else if ((c == 's') && (strncmp(argv[1], "size", length) == 0)) { if ((argc != 2) && (argc != 3)) { Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0], " size ?amount?\"", (char *) NULL); goto error; } if (argc == 3) { int i; if (Tcl_GetInt(interp, argv[2], &i) != TCL_OK) { goto error; } if ((i <= 0) || (i > 100)) { Tcl_AppendResult(interp, "bad size \"", argv[2], "\"", (char *) NULL); goto error; } squarePtr->size = i; KeepInWindow(squarePtr); } sprintf(interp->result, "%d", squarePtr->size); } else { Tcl_AppendResult(interp, "bad option \"", argv[1], "\": must be configure, position, or size", (char *) NULL); goto error; } if (!(squarePtr->flags & REDRAW_PENDING)) { Tk_DoWhenIdle(DisplaySquare, (ClientData) squarePtr); squarePtr->flags |= REDRAW_PENDING; } Tk_Release((ClientData) squarePtr); return result; error: Tk_Release((ClientData) squarePtr); return TCL_ERROR; } /* *-------------------------------------------------------------- * * SquareEventProc -- * * This procedure is invoked by the Tk dispatcher for various * events on squares. * * Results: * None. * * Side effects: * When the window gets deleted, internal structures get * cleaned up. When it gets exposed, it is redisplayed. * *-------------------------------------------------------------- */ static void SquareEventProc(clientData, eventPtr) ClientData clientData; /* Information about window. */ XEvent *eventPtr; /* Information about event. */ { Square *squarePtr = (Square *) clientData; if ((eventPtr->type == Expose) && (eventPtr->xexpose.count == 0)) { if (!(squarePtr->flags & REDRAW_PENDING)) { Tk_DoWhenIdle(DisplaySquare, (ClientData) squarePtr); squarePtr->flags |= REDRAW_PENDING; } } else if (eventPtr->type == ConfigureNotify) { KeepInWindow(squarePtr); if (!(squarePtr->flags & REDRAW_PENDING)) { Tk_DoWhenIdle(DisplaySquare, (ClientData) squarePtr); squarePtr->flags |= REDRAW_PENDING; } } else if (eventPtr->type == DestroyNotify) { Tcl_DeleteCommand(squarePtr->interp, Tk_PathName(squarePtr->tkwin)); squarePtr->tkwin = NULL; if (squarePtr->flags & REDRAW_PENDING) { Tk_CancelIdleCall(DisplaySquare, (ClientData) squarePtr); } Tk_EventuallyFree((ClientData) squarePtr, DestroySquare); } } /* *---------------------------------------------------------------------- * * DestroySquare -- * * This procedure is invoked by Tk_EventuallyFree or Tk_Release * to clean up the internal structure of a square at a safe time * (when no-one is using it anymore). * * Results: * None. * * Side effects: * Everything associated with the square is freed up. * *---------------------------------------------------------------------- */ static void DestroySquare(clientData) ClientData clientData; /* Info about square widget. */ { register Square *squarePtr = (Square *) clientData; if (squarePtr->bgBorder != NULL) { Tk_Free3DBorder(squarePtr->bgBorder); } if (squarePtr->fgBorder != NULL) { Tk_Free3DBorder(squarePtr->fgBorder); } ckfree((char *) squarePtr); } /* *---------------------------------------------------------------------- * * KeepInWindow -- * * Adjust the position of the square if necessary to keep it in * the widget's window. * * Results: * None. * * Side effects: * The x and y position of the square are adjusted if necessary * to keep the square in the window. * *---------------------------------------------------------------------- */ static void KeepInWindow(squarePtr) register Square *squarePtr; /* Pointer to widget record. */ { int i, bd; if (squarePtr->relief == TK_RELIEF_FLAT) { bd = 0; } else { bd = squarePtr->borderWidth; } i = (Tk_Width(squarePtr->tkwin) - bd) - (squarePtr->x + squarePtr->size); if (i < 0) { squarePtr->x += i; } i = (Tk_Height(squarePtr->tkwin) - bd) - (squarePtr->y + squarePtr->size); if (i < 0) { squarePtr->y += i; } if (squarePtr->x < bd) { squarePtr->x = bd; } if (squarePtr->y < bd) { squarePtr->y = bd; } }