17a84e134Smrg/*********************************************************** 27a84e134Smrg 37a84e134SmrgCopyright 1987, 1988, 1994, 1998 The Open Group 47a84e134Smrg 57a84e134SmrgPermission to use, copy, modify, distribute, and sell this software and its 67a84e134Smrgdocumentation for any purpose is hereby granted without fee, provided that 77a84e134Smrgthe above copyright notice appear in all copies and that both that 87a84e134Smrgcopyright notice and this permission notice appear in supporting 97a84e134Smrgdocumentation. 107a84e134Smrg 117a84e134SmrgThe above copyright notice and this permission notice shall be included in 127a84e134Smrgall copies or substantial portions of the Software. 137a84e134Smrg 147a84e134SmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 157a84e134SmrgIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 167a84e134SmrgFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 177a84e134SmrgOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 187a84e134SmrgAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 197a84e134SmrgCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 207a84e134Smrg 217a84e134SmrgExcept as contained in this notice, the name of The Open Group shall not be 227a84e134Smrgused in advertising or otherwise to promote the sale, use or other dealings 237a84e134Smrgin this Software without prior written authorization from The Open Group. 247a84e134Smrg 257a84e134Smrg 267a84e134SmrgCopyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts. 277a84e134Smrg 287a84e134Smrg All Rights Reserved 297a84e134Smrg 30421c997bSmrgPermission to use, copy, modify, and distribute this software and its 31421c997bSmrgdocumentation for any purpose and without fee is hereby granted, 327a84e134Smrgprovided that the above copyright notice appear in all copies and that 33421c997bSmrgboth that copyright notice and this permission notice appear in 347a84e134Smrgsupporting documentation, and that the name of Digital not be 357a84e134Smrgused in advertising or publicity pertaining to distribution of the 36421c997bSmrgsoftware without specific, written prior permission. 377a84e134Smrg 387a84e134SmrgDIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING 397a84e134SmrgALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL 407a84e134SmrgDIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR 417a84e134SmrgANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, 427a84e134SmrgWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, 437a84e134SmrgARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS 447a84e134SmrgSOFTWARE. 457a84e134Smrg 467a84e134Smrg******************************************************************/ 477a84e134Smrg 487a84e134Smrg/* 497a84e134Smrg * Grip.c - Grip Widget (Used by Paned Widget) 507a84e134Smrg * 517a84e134Smrg */ 527a84e134Smrg#ifdef HAVE_CONFIG_H 537a84e134Smrg#include <config.h> 547a84e134Smrg#endif 557a84e134Smrg#include <X11/IntrinsicP.h> 567a84e134Smrg#include <X11/StringDefs.h> 577a84e134Smrg#include <X11/Xaw/GripP.h> 587a84e134Smrg#include <X11/Xaw/XawInit.h> 597a84e134Smrg 607a84e134Smrg/* 617a84e134Smrg * Prototypes 627a84e134Smrg */ 637a84e134Smrgstatic void 647a84e134SmrgGripAction(Widget, XEvent*, String*, Cardinal*); 657a84e134Smrg 667a84e134Smrg/* 677a84e134Smrg * Initialization 687a84e134Smrg */ 697a84e134Smrgstatic XtResource resources[] = { 707a84e134Smrg { 717a84e134Smrg XtNwidth, 727a84e134Smrg XtCWidth, 737a84e134Smrg XtRDimension, 747a84e134Smrg sizeof(Dimension), 757a84e134Smrg XtOffsetOf(GripRec, core.width), 767a84e134Smrg XtRImmediate, 777a84e134Smrg (XtPointer)DEFAULT_GRIP_SIZE 787a84e134Smrg }, 797a84e134Smrg { 807a84e134Smrg XtNheight, 817a84e134Smrg XtCHeight, 827a84e134Smrg XtRDimension, 837a84e134Smrg sizeof(Dimension), 847a84e134Smrg XtOffsetOf(GripRec, core.height), 857a84e134Smrg XtRImmediate, 867a84e134Smrg (XtPointer)DEFAULT_GRIP_SIZE 877a84e134Smrg }, 887a84e134Smrg { 897a84e134Smrg XtNforeground, 907a84e134Smrg XtCForeground, 917a84e134Smrg XtRPixel, 927a84e134Smrg sizeof(Pixel), 937a84e134Smrg XtOffsetOf(GripRec, core.background_pixel), 947a84e134Smrg XtRString, 955ec34c4cSmrg (XtPointer)XtDefaultForeground 967a84e134Smrg }, 977a84e134Smrg { 987a84e134Smrg XtNborderWidth, 997a84e134Smrg XtCBorderWidth, 1007a84e134Smrg XtRDimension, 1017a84e134Smrg sizeof(Dimension), 1027a84e134Smrg XtOffsetOf(GripRec, core.border_width), 1037a84e134Smrg XtRImmediate, 1047a84e134Smrg (XtPointer)0 1057a84e134Smrg }, 1067a84e134Smrg { 1077a84e134Smrg XtNcallback, 1087a84e134Smrg XtCCallback, 1097a84e134Smrg XtRCallback, 1107a84e134Smrg sizeof(XtPointer), 1117a84e134Smrg XtOffsetOf(GripRec, grip.grip_action), 1127a84e134Smrg XtRCallback, 1137a84e134Smrg NULL 1147a84e134Smrg }, 1157a84e134Smrg}; 1167a84e134Smrg 1177a84e134Smrgstatic XtActionsRec actionsList[] = 1187a84e134Smrg{ 1197a84e134Smrg {"GripAction", GripAction}, 1207a84e134Smrg}; 1217a84e134Smrg 1227a84e134Smrg#define Superclass (&simpleClassRec) 1237a84e134Smrg 1247a84e134SmrgGripClassRec gripClassRec = { 1257a84e134Smrg /* core */ 1267a84e134Smrg { 1277a84e134Smrg (WidgetClass)Superclass, /* superclass */ 1287a84e134Smrg "Grip", /* class name */ 1297a84e134Smrg sizeof(GripRec), /* size */ 1307a84e134Smrg XawInitializeWidgetSet, /* class initialize */ 1317a84e134Smrg NULL, /* class_part_init */ 1327a84e134Smrg False, /* class_inited */ 1337a84e134Smrg NULL, /* initialize */ 1347a84e134Smrg NULL, /* initialize_hook */ 1357a84e134Smrg XtInheritRealize, /* realize */ 1367a84e134Smrg actionsList, /* actions */ 1377a84e134Smrg XtNumber(actionsList), /* num_actions */ 1387a84e134Smrg resources, /* resources */ 1397a84e134Smrg XtNumber(resources), /* num_resources */ 1407a84e134Smrg NULLQUARK, /* xrm_class */ 1417a84e134Smrg True, /* compress_motion */ 1427a84e134Smrg True, /* compress_exposure */ 1437a84e134Smrg True, /* compress_enterleave */ 1447a84e134Smrg False, /* visible_interest */ 1457a84e134Smrg NULL, /* destroy */ 1467a84e134Smrg NULL, /* resize */ 1477a84e134Smrg XtInheritExpose, /* expose */ 1487a84e134Smrg NULL, /* set_values */ 1497a84e134Smrg NULL, /* set_values_hook */ 1507a84e134Smrg XtInheritSetValuesAlmost, /* set_values_almost */ 1517a84e134Smrg NULL, /* get_values_hook */ 1527a84e134Smrg NULL, /* accept_focus */ 1537a84e134Smrg XtVersion, /* version */ 1547a84e134Smrg NULL, /* callback_private */ 1557a84e134Smrg NULL, /* tm_table */ 1567a84e134Smrg XtInheritQueryGeometry, /* query_geometry */ 1577a84e134Smrg XtInheritDisplayAccelerator, /* display_accelerator */ 1587a84e134Smrg NULL, /* extension */ 1597a84e134Smrg }, 1607a84e134Smrg /* simple */ 1617a84e134Smrg { 1627a84e134Smrg XtInheritChangeSensitive, /* change_sensitive */ 163efbcb2bfSmrg#ifndef OLDXAW 164efbcb2bfSmrg NULL, 165efbcb2bfSmrg#endif 1667a84e134Smrg }, 1677a84e134Smrg /* grip */ 1687a84e134Smrg { 1697a84e134Smrg NULL, /* extension */ 1707a84e134Smrg } 1717a84e134Smrg}; 1727a84e134Smrg 1737a84e134SmrgWidgetClass gripWidgetClass = (WidgetClass)&gripClassRec; 1747a84e134Smrg 1757a84e134Smrg/* 1767a84e134Smrg * Implementation 1777a84e134Smrg */ 1787a84e134Smrgstatic void 1797a84e134SmrgGripAction(Widget widget, XEvent *event, String *params, Cardinal *num_params) 1807a84e134Smrg{ 181efbcb2bfSmrg XawGripCallDataRec call_data = { 182efbcb2bfSmrg .event = event, 183efbcb2bfSmrg .params = params, 184efbcb2bfSmrg .num_params = *num_params 185efbcb2bfSmrg }; 1867a84e134Smrg 1877a84e134Smrg XtCallCallbacks(widget, XtNcallback, (XtPointer)&call_data); 1887a84e134Smrg} 189