Added Xft support in WINGs (for drawing antialiased fonts with transparency)
[wmaker-crm.git] / WINGs / WINGs / WINGs.h
blob3d1ee48438064cd73f8b808c4d68100b41dae586
3 #ifndef _WINGS_H_
4 #define _WINGS_H_
6 #include <wraster.h>
7 #include <WINGs/WUtil.h>
8 #include <X11/Xlib.h>
10 #define WINGS_H_VERSION 20021008
13 #ifdef __cplusplus
14 extern "C" {
15 #endif /* __cplusplus */
16 #if 0
18 #endif
21 typedef unsigned long WMPixel;
24 typedef struct {
25 unsigned int width;
26 unsigned int height;
27 } WMSize;
29 typedef struct {
30 int x;
31 int y;
32 } WMPoint;
34 typedef struct {
35 WMPoint pos;
36 WMSize size;
37 } WMRect;
43 #define ClientMessageMask (1L<<30)
46 #ifndef _DEFINED_GNUSTEP_WINDOW_INFO
47 #define _DEFINED_GNUSTEP_WINDOW_INFO
49 * Window levels are taken from GNUstep (gui/AppKit/NSWindow.h)
50 * NSDesktopWindowLevel intended to be the level at which things
51 * on the desktop sit ... so you should be able
52 * to put a desktop background just below it.
54 * Applications are actually permitted to use any value in the
55 * range INT_MIN+1 to INT_MAX
57 enum {
58 WMDesktopWindowLevel = -1000, /* GNUstep addition */
59 WMNormalWindowLevel = 0,
60 WMFloatingWindowLevel = 3,
61 WMSubmenuWindowLevel = 3,
62 WMTornOffMenuWindowLevel = 3,
63 WMMainMenuWindowLevel = 20,
64 WMDockWindowLevel = 21, /* Deprecated - use NSStatusWindowLevel */
65 WMStatusWindowLevel = 21,
66 WMModalPanelWindowLevel = 100,
67 WMPopUpMenuWindowLevel = 101,
68 WMScreenSaverWindowLevel = 1000
72 /* window attributes */
73 enum {
74 WMBorderlessWindowMask = 0,
75 WMTitledWindowMask = 1,
76 WMClosableWindowMask = 2,
77 WMMiniaturizableWindowMask = 4,
78 WMResizableWindowMask = 8,
79 WMIconWindowMask = 64,
80 WMMiniWindowMask = 128
82 #endif
85 /* button types */
86 typedef enum {
87 /* 0 is reserved for internal use */
88 WBTMomentaryPush = 1,
89 WBTPushOnPushOff = 2,
90 WBTToggle = 3,
91 WBTSwitch = 4,
92 WBTRadio = 5,
93 WBTMomentaryChange = 6,
94 WBTOnOff = 7,
95 WBTMomentaryLight = 8
96 } WMButtonType;
98 /* button behaviour masks */
99 enum {
100 WBBSpringLoadedMask = (1 << 0),
101 WBBPushInMask = (1 << 1),
102 WBBPushChangeMask = (1 << 2),
103 WBBPushLightMask = (1 << 3),
104 WBBStateLightMask = (1 << 5),
105 WBBStateChangeMask = (1 << 6),
106 WBBStatePushMask = (1 << 7)
110 /* frame title positions */
111 typedef enum {
112 WTPNoTitle,
113 WTPAboveTop,
114 WTPAtTop,
115 WTPBelowTop,
116 WTPAboveBottom,
117 WTPAtBottom,
118 WTPBelowBottom
119 } WMTitlePosition;
122 /* relief types */
123 typedef enum {
124 WRFlat,
125 WRSimple,
126 WRRaised,
127 WRSunken,
128 WRGroove,
129 WRRidge,
130 WRPushed
131 } WMReliefType;
134 /* alignment types */
135 typedef enum {
136 WALeft,
137 WACenter,
138 WARight,
139 WAJustified /* not valid for textfields */
140 } WMAlignment;
143 /* image position */
144 typedef enum {
145 WIPNoImage,
146 WIPImageOnly,
147 WIPLeft,
148 WIPRight,
149 WIPBelow,
150 WIPAbove,
151 WIPOverlaps
152 } WMImagePosition;
155 /* scroller arrow position */
156 typedef enum {
157 WSAMaxEnd,
158 WSAMinEnd,
159 WSANone
160 } WMScrollArrowPosition;
162 /* scroller parts */
163 typedef enum {
164 WSNoPart,
165 WSDecrementPage,
166 WSIncrementPage,
167 WSDecrementLine,
168 WSIncrementLine,
169 WSDecrementWheel,
170 WSIncrementWheel,
171 WSKnob,
172 WSKnobSlot
173 } WMScrollerPart;
175 /* usable scroller parts */
176 typedef enum {
177 WSUNoParts,
178 WSUOnlyArrows,
179 WSUAllParts
180 } WMUsableScrollerParts;
182 /* matrix types */
183 typedef enum {
184 WMRadioMode,
185 WMHighlightMode,
186 WMListMode,
187 WMTrackMode
188 } WMMatrixTypes;
191 typedef enum {
192 WTTopTabsBevelBorder,
193 WTNoTabsBevelBorder,
194 WTNoTabsLineBorder,
195 WTNoTabsNoBorder
196 } WMTabViewType;
199 /* text movement types */
200 enum {
201 WMIllegalTextMovement,
202 WMReturnTextMovement,
203 WMEscapeTextMovement,
204 WMTabTextMovement,
205 WMBacktabTextMovement,
206 WMLeftTextMovement,
207 WMRightTextMovement,
208 WMUpTextMovement,
209 WMDownTextMovement
212 /* text field special events */
213 enum {
214 WMInsertTextEvent,
215 WMDeleteTextEvent
219 enum {
220 WLNotFound = -1 /* element was not found in WMList */
224 /* drag operations */
225 typedef enum {
226 WDOperationNone,
227 WDOperationCopy,
228 WDOperationMove,
229 WDOperationLink,
230 WDOperationAsk,
231 WDOperationPrivate
232 } WMDragOperationType;
235 typedef enum {
236 WMGrayModeColorPanel = 1,
237 WMRGBModeColorPanel = 2,
238 WMCMYKModeColorPanel = 3,
239 WMHSBModeColorPanel = 4,
240 WMCustomPaletteModeColorPanel = 5,
241 WMColorListModeColorPanel = 6,
242 WMWheelModeColorPanel = 7
243 } WMColorPanelMode;
247 /* system images */
248 #define WSIReturnArrow 1
249 #define WSIHighlightedReturnArrow 2
250 #define WSIScrollerDimple 3
251 #define WSIArrowLeft 4
252 #define WSIHighlightedArrowLeft 5
253 #define WSIArrowRight 6
254 #define WSIHighlightedArrowRight 7
255 #define WSIArrowUp 8
256 #define WSIHighlightedArrowUp 9
257 #define WSIArrowDown 10
258 #define WSIHighlightedArrowDown 11
259 #define WSICheckMark 12
261 enum {
262 WLDSSelected = (1 << 16),
263 WLDSDisabled = (1 << 17),
264 WLDSFocused = (1 << 18),
265 WLDSIsBranch = (1 << 19)
268 /* alert panel return values */
269 enum {
270 WAPRDefault = 0,
271 WAPRAlternate = 1,
272 WAPROther = -1,
273 WAPRError = -2
278 /* types of input observers */
279 enum {
280 WIReadMask = (1 << 0),
281 WIWriteMask = (1 << 1),
282 WIExceptMask = (1 << 2)
287 typedef int W_Class;
289 enum {
290 WC_Window = 0,
291 WC_Frame = 1,
292 WC_Label = 2,
293 WC_Button = 3,
294 WC_TextField = 4,
295 WC_Scroller = 5,
296 WC_ScrollView = 6,
297 WC_List = 7,
298 WC_Browser = 8,
299 WC_PopUpButton = 9,
300 WC_ColorWell = 10,
301 WC_Slider = 11,
302 WC_Matrix = 12, /* not ready */
303 WC_SplitView = 13,
304 WC_TabView = 14,
305 WC_ProgressIndicator = 15,
306 WC_MenuView = 16,
307 WC_Ruler = 17,
308 WC_Text = 18,
309 WC_Box = 19
312 /* All widgets must start with the following structure
313 * in that order. Used for typecasting to get some generic data */
314 typedef struct W_WidgetType {
315 W_Class widgetClass;
316 struct W_View *view;
318 } W_WidgetType;
321 #define WMWidgetClass(widget) (((W_WidgetType*)(widget))->widgetClass)
322 #define WMWidgetView(widget) (((W_WidgetType*)(widget))->view)
325 /* widgets */
327 typedef void WMWidget;
329 typedef struct W_Pixmap WMPixmap;
330 typedef struct W_Font WMFont;
331 typedef struct W_Color WMColor;
333 typedef struct W_Screen WMScreen;
335 typedef struct W_View WMView;
337 typedef struct W_Window WMWindow;
338 typedef struct W_Frame WMFrame;
339 typedef struct W_Button WMButton;
340 typedef struct W_Label WMLabel;
341 typedef struct W_TextField WMTextField;
342 typedef struct W_Scroller WMScroller;
343 typedef struct W_ScrollView WMScrollView;
344 typedef struct W_List WMList;
345 typedef struct W_Browser WMBrowser;
346 typedef struct W_PopUpButton WMPopUpButton;
347 typedef struct W_ProgressIndicator WMProgressIndicator;
348 typedef struct W_ColorWell WMColorWell;
349 typedef struct W_Slider WMSlider;
350 typedef struct W_Matrix WMMatrix; /* not ready */
351 typedef struct W_SplitView WMSplitView;
352 typedef struct W_TabView WMTabView;
353 typedef struct W_Ruler WMRuler;
354 typedef struct W_Text WMText;
355 typedef struct W_Box WMBox;
358 /* not widgets */
359 typedef struct W_TabViewItem WMTabViewItem;
360 typedef struct W_MenuItem WMMenuItem;
363 typedef struct W_FilePanel WMFilePanel;
364 typedef WMFilePanel WMOpenPanel;
365 typedef WMFilePanel WMSavePanel;
367 typedef struct W_FontPanel WMFontPanel;
369 typedef struct W_ColorPanel WMColorPanel;
372 /* item for WMList */
373 typedef struct WMListItem {
374 char *text;
375 void *clientData; /* ptr for user clientdata. */
377 unsigned int uflags:16; /* flags for the user */
378 unsigned int selected:1;
379 unsigned int disabled:1;
380 unsigned int isBranch:1;
381 unsigned int loaded:1;
382 } WMListItem;
384 /* struct for message panel */
385 typedef struct WMAlertPanel {
386 WMWindow *win; /* window */
387 WMBox *vbox;
388 WMBox *hbox;
389 WMButton *defBtn; /* default button */
390 WMButton *altBtn; /* alternative button */
391 WMButton *othBtn; /* other button */
392 WMLabel *iLbl; /* icon label */
393 WMLabel *tLbl; /* title label */
394 WMLabel *mLbl; /* message label */
395 WMFrame *line; /* separator */
396 short result; /* button that was pushed */
397 } WMAlertPanel;
400 typedef struct WMGenericPanel {
401 WMWindow *win;
402 WMBox *vbox;
404 WMLabel *iLbl;
405 WMLabel *tLbl;
407 WMFrame *line;
409 WMFrame *content;
411 WMBox *buttonBox;
412 WMButton *defBtn;
413 WMButton *altBtn;
415 short result;
416 } WMGenericPanel;
421 typedef struct WMInputPanel {
422 WMWindow *win; /* window */
423 WMButton *defBtn; /* default button */
424 WMButton *altBtn; /* alternative button */
425 WMLabel *tLbl; /* title label */
426 WMLabel *mLbl; /* message label */
427 WMTextField *text; /* text field */
428 short result; /* button that was pushed */
429 } WMInputPanel;
432 /* WMRuler: */
433 typedef struct {
434 WMArray *tabs; /* a growable array of tabstops */
435 unsigned short left; /* left margin marker */
436 unsigned short right; /* right margin marker */
437 unsigned short first; /* indentation marker for first line only */
438 unsigned short body; /* body indentation marker */
439 unsigned short retainCount;
440 } WMRulerMargins;
441 /* All indentation and tab markers are _relative_ to the left margin marker */
444 typedef void WMEventProc(XEvent *event, void *clientData);
446 typedef void WMEventHook(XEvent *event);
448 /* self is set to the widget from where the callback is being called and
449 * clientData to the data set to with WMSetClientData() */
450 typedef void WMAction(WMWidget *self, void *clientData);
452 /* same as WMAction, but for stuff that arent widgets */
453 typedef void WMAction2(void *self, void *clientData);
456 typedef void WMDropDataCallback(WMView *view, WMData *data);
458 /* delegate method like stuff */
459 typedef void WMListDrawProc(WMList *lPtr, int index, Drawable d, char *text,
460 int state, WMRect *rect);
463 typedef void WMSplitViewResizeSubviewsProc(WMSplitView *sPtr,
464 unsigned int oldWidth,
465 unsigned int oldHeight);
468 typedef void WMSplitViewConstrainProc(WMSplitView *sPtr, int dividerIndex,
469 int *minSize, int *maxSize);
471 typedef WMWidget* WMMatrixCreateCellProc(WMMatrix *mPtr);
476 typedef struct WMBrowserDelegate {
477 void *data;
479 void (*createRowsForColumn)(struct WMBrowserDelegate *self,
480 WMBrowser *sender, int column, WMList *list);
482 char* (*titleOfColumn)(struct WMBrowserDelegate *self, WMBrowser *sender,
483 int column);
485 void (*didScroll)(struct WMBrowserDelegate *self, WMBrowser *sender);
487 void (*willScroll)(struct WMBrowserDelegate *self, WMBrowser *sender);
488 } WMBrowserDelegate;
491 typedef struct WMTextFieldDelegate {
492 void *data;
494 void (*didBeginEditing)(struct WMTextFieldDelegate *self,
495 WMNotification *notif);
497 void (*didChange)(struct WMTextFieldDelegate *self,
498 WMNotification *notif);
500 void (*didEndEditing)(struct WMTextFieldDelegate *self,
501 WMNotification *notif);
503 Bool (*shouldBeginEditing)(struct WMTextFieldDelegate *self,
504 WMTextField *tPtr);
506 Bool (*shouldEndEditing)(struct WMTextFieldDelegate *self,
507 WMTextField *tPtr);
508 } WMTextFieldDelegate;
511 typedef struct WMTextDelegate {
512 void *data;
514 Bool (*didDoubleClickOnPicture)(struct WMTextDelegate *self,
515 void *description);
517 } WMTextDelegate;
521 typedef struct WMTabViewDelegate {
522 void *data;
524 void (*didChangeNumberOfItems)(struct WMTabViewDelegate *self,
525 WMTabView *tabView);
527 void (*didSelectItem)(struct WMTabViewDelegate *self, WMTabView *tabView,
528 WMTabViewItem *item);
530 Bool (*shouldSelectItem)(struct WMTabViewDelegate *self, WMTabView *tabView,
531 WMTabViewItem *item);
533 void (*willSelectItem)(struct WMTabViewDelegate *self, WMTabView *tabView,
534 WMTabViewItem *item);
535 } WMTabViewDelegate;
540 typedef void WMSelectionCallback(WMView *view, Atom selection, Atom target,
541 Time timestamp, void *cdata, WMData *data);
544 typedef struct WMSelectionProcs {
545 WMData* (*convertSelection)(WMView *view, Atom selection, Atom target,
546 void *cdata, Atom *type);
547 void (*selectionLost)(WMView *view, Atom selection, void *cdata);
548 void (*selectionDone)(WMView *view, Atom selection, Atom target,
549 void *cdata);
550 } WMSelectionProcs;
553 typedef struct W_DraggingInfo WMDraggingInfo;
556 typedef struct W_DragSourceProcs {
557 unsigned (*draggingSourceOperation)(WMView *self, Bool local);
558 void (*beganDragImage)(WMView *self, WMPixmap *image, WMPoint point);
559 void (*endedDragImage)(WMView *self, WMPixmap *image, WMPoint point,
560 Bool deposited);
561 WMData* (*fetchDragData)(WMView *self, char *type);
562 /* Bool (*ignoreModifierKeysWhileDragging)(WMView *view);*/
563 } WMDragSourceProcs;
567 typedef struct W_DragDestinationProcs {
568 unsigned (*draggingEntered)(WMView *self, WMDraggingInfo *info);
569 unsigned (*draggingUpdated)(WMView *self, WMDraggingInfo *info);
570 void (*draggingExited)(WMView *self, WMDraggingInfo *info);
571 Bool (*prepareForDragOperation)(WMView *self, WMDraggingInfo *info);
572 Bool (*performDragOperation)(WMView *self, WMDraggingInfo *info);
573 void (*concludeDragOperation)(WMView *self, WMDraggingInfo *info);
574 } WMDragDestinationProcs;
578 /* ...................................................................... */
581 WMPoint wmkpoint(int x, int y);
583 WMSize wmksize(unsigned int width, unsigned int height);
585 #ifdef ANSI_C_DOESNT_LIKE_IT_THIS_WAY
586 #define wmksize(width, height) (WMSize){(width), (height)}
587 #define wmkpoint(x, y) (WMPoint){(x), (y)}
588 #endif
590 /* ....................................................................... */
594 void WMInitializeApplication(char *applicationName, int *argc, char **argv);
596 void WMSetResourcePath(char *path);
598 /* don't free the returned string */
599 char* WMGetApplicationName();
601 /* Try to locate resource file. ext may be NULL */
602 char* WMPathForResourceOfType(char *resource, char *ext);
605 WMScreen* WMOpenScreen(const char *display);
607 WMScreen* WMCreateScreenWithRContext(Display *display, int screen,
608 RContext *context);
610 WMScreen* WMCreateScreen(Display *display, int screen);
612 WMScreen* WMCreateSimpleApplicationScreen(Display *display);
614 void WMScreenMainLoop(WMScreen *scr);
616 void WMBreakModalLoop(WMScreen *scr);
618 void WMRunModalLoop(WMScreen *scr, WMView *view);
620 RContext* WMScreenRContext(WMScreen *scr);
622 Display* WMScreenDisplay(WMScreen *scr);
624 int WMScreenDepth(WMScreen *scr);
628 void WMSetApplicationIconImage(WMScreen *app, RImage *image);
630 RImage* WMGetApplicationIconImage(WMScreen *app);
632 void WMSetApplicationIconPixmap(WMScreen *app, WMPixmap *icon);
634 WMPixmap* WMGetApplicationIconPixmap(WMScreen *app);
636 /* If color==NULL it will use the default color for panels: ae/aa/ae */
637 WMPixmap* WMCreateApplicationIconBlendedPixmap(WMScreen *scr, RColor *color);
639 void WMSetApplicationIconWindow(WMScreen *scr, Window window);
641 void WMSetFocusToWidget(WMWidget *widget);
643 WMEventHook* WMHookEventHandler(WMEventHook *handler);
645 int WMHandleEvent(XEvent *event);
647 Bool WMScreenPending(WMScreen *scr);
649 void WMCreateEventHandler(WMView *view, unsigned long mask,
650 WMEventProc *eventProc, void *clientData);
652 void WMDeleteEventHandler(WMView *view, unsigned long mask,
653 WMEventProc *eventProc, void *clientData);
655 int WMIsDoubleClick(XEvent *event);
657 /*int WMIsTripleClick(XEvent *event);*/
659 void WMNextEvent(Display *dpy, XEvent *event);
661 void WMMaskEvent(Display *dpy, long mask, XEvent *event);
664 /* ....................................................................... */
667 Bool WMCreateSelectionHandler(WMView *view, Atom selection, Time timestamp,
668 WMSelectionProcs *procs, void *cdata);
670 void WMDeleteSelectionHandler(WMView *view, Atom selection, Time timestamp);
672 Bool WMRequestSelection(WMView *view, Atom selection, Atom target,
673 Time timestamp, WMSelectionCallback *callback,
674 void *cdata);
677 extern char *WMSelectionOwnerDidChangeNotification;
679 /* ....................................................................... */
681 void WMSetViewDragSourceProcs(WMView *view, WMDragSourceProcs *procs);
683 void WMDragImageFromView(WMView *view, WMPixmap *image, char *dataTypes[],
684 WMPoint atLocation, WMSize mouseOffset, XEvent *event,
685 Bool slideBack);
687 void WMRegisterViewForDraggedTypes(WMView *view, char *acceptedTypes[]);
689 void WMUnregisterViewDraggedTypes(WMView *view);
691 void WMSetViewDragDestinationProcs(WMView *view, WMDragDestinationProcs *procs);
694 WMPoint WMGetDraggingInfoImageLocation(WMDraggingInfo *info);
696 /* ....................................................................... */
698 WMFont* WMCreateFontSet(WMScreen *scrPtr, char *fontName);
700 WMFont* WMCreateNormalFont(WMScreen *scrPtr, char *fontName);
702 WMFont* WMCreateAAFont(WMScreen *scrPtr, char *fontName);
704 WMFont* WMCreateFont(WMScreen *scrPtr, char *fontName);
706 WMFont* WMRetainFont(WMFont *font);
708 void WMReleaseFont(WMFont *font);
710 unsigned int WMFontHeight(WMFont *font);
713 WMFont* WMUserFontOfSize(WMScreen *scrPtr, int size);
715 WMFont* WMUserFixedPitchFontOfSize(WMScreen *scrPtr, int size);
719 void WMSetWidgetDefaultFont(WMScreen *scr, WMFont *font);
721 void WMSetWidgetDefaultBoldFont(WMScreen *scr, WMFont *font);
723 WMFont* WMDefaultSystemFont(WMScreen *scrPtr);
725 WMFont* WMDefaultBoldSystemFont(WMScreen *scrPtr);
727 WMFont* WMSystemFontOfSize(WMScreen *scrPtr, int size);
729 WMFont* WMBoldSystemFontOfSize(WMScreen *scrPtr, int size);
731 XFontSet WMGetFontFontSet(WMFont *font);
733 WMFont* WMNormalizeFont(WMScreen *scr, WMFont *font);
735 WMFont* WMStrengthenFont(WMScreen *scr, WMFont *font);
737 WMFont* WMUnstrengthenFont(WMScreen *scr, WMFont *font);
739 WMFont* WMEmphasizeFont(WMScreen *scr, WMFont *font);
741 WMFont* WMUnemphasizeFont(WMScreen *scr, WMFont *font);
743 WMFont* WMGetFontOfSize(WMScreen *scr, WMFont *font, int size);
745 /* ....................................................................... */
747 WMPixmap* WMRetainPixmap(WMPixmap *pixmap);
749 void WMReleasePixmap(WMPixmap *pixmap);
751 WMPixmap* WMCreatePixmap(WMScreen *scrPtr, int width, int height, int depth,
752 Bool masked);
754 WMPixmap* WMCreatePixmapFromXPixmaps(WMScreen *scrPtr, Pixmap pixmap,
755 Pixmap mask, int width, int height,
756 int depth);
758 WMPixmap* WMCreatePixmapFromRImage(WMScreen *scrPtr, RImage *image,
759 int threshold);
761 WMPixmap* WMCreatePixmapFromXPMData(WMScreen *scrPtr, char **data);
763 WMSize WMGetPixmapSize(WMPixmap *pixmap);
765 WMPixmap* WMCreatePixmapFromFile(WMScreen *scrPtr, char *fileName);
767 WMPixmap* WMCreateBlendedPixmapFromRImage(WMScreen *scrPtr, RImage *image,
768 RColor *color);
770 WMPixmap* WMCreateBlendedPixmapFromFile(WMScreen *scrPtr, char *fileName,
771 RColor *color);
773 void WMDrawPixmap(WMPixmap *pixmap, Drawable d, int x, int y);
775 Pixmap WMGetPixmapXID(WMPixmap *pixmap);
777 Pixmap WMGetPixmapMaskXID(WMPixmap *pixmap);
779 WMPixmap* WMGetSystemPixmap(WMScreen *scr, int image);
781 /* ....................................................................... */
784 WMColor* WMDarkGrayColor(WMScreen *scr);
786 WMColor* WMGrayColor(WMScreen *scr);
788 WMColor* WMBlackColor(WMScreen *scr);
790 WMColor* WMWhiteColor(WMScreen *scr);
792 void WMSetColorInGC(WMColor *color, GC gc);
794 GC WMColorGC(WMColor *color);
796 WMPixel WMColorPixel(WMColor *color);
798 void WMPaintColorSwatch(WMColor *color, Drawable d, int x, int y,
799 unsigned int width, unsigned int height);
801 void WMReleaseColor(WMColor *color);
803 WMColor* WMRetainColor(WMColor *color);
805 WMColor* WMCreateRGBColor(WMScreen *scr, unsigned short red,
806 unsigned short green, unsigned short blue,
807 Bool exact);
809 WMColor* WMCreateRGBAColor(WMScreen *scr, unsigned short red,
810 unsigned short green, unsigned short blue,
811 unsigned short alpha, Bool exact);
813 WMColor* WMCreateNamedColor(WMScreen *scr, char *name, Bool exact);
815 void WMSetColorAlpha(WMColor *color, unsigned short alpha);
817 unsigned short WMRedComponentOfColor(WMColor *color);
819 unsigned short WMGreenComponentOfColor(WMColor *color);
821 unsigned short WMBlueComponentOfColor(WMColor *color);
823 char* WMGetColorRGBDescription(WMColor *color);
825 /* ....................................................................... */
828 void WMDrawString(WMScreen *scr, Drawable d, WMColor *color, WMFont *font,
829 int x, int y, char *text, int length);
831 void WMDrawImageString(WMScreen *scr, Drawable d, WMColor *color,
832 WMColor *background, WMFont *font, int x, int y,
833 char *text, int length);
835 int WMWidthOfString(WMFont *font, char *text, int length);
839 /* ....................................................................... */
841 WMScreen* WMWidgetScreen(WMWidget *w);
843 unsigned int WMScreenWidth(WMScreen *scr);
845 unsigned int WMScreenHeight(WMScreen *scr);
847 void WMUnmapWidget(WMWidget *w);
849 void WMMapWidget(WMWidget *w);
851 Bool WMWidgetIsMapped(WMWidget *w);
853 void WMRaiseWidget(WMWidget *w);
855 void WMLowerWidget(WMWidget *w);
857 void WMMoveWidget(WMWidget *w, int x, int y);
859 void WMResizeWidget(WMWidget *w, unsigned int width, unsigned int height);
861 void WMSetWidgetBackgroundColor(WMWidget *w, WMColor *color);
863 void WMMapSubwidgets(WMWidget *w);
865 void WMUnmapSubwidgets(WMWidget *w);
867 void WMRealizeWidget(WMWidget *w);
869 void WMReparentWidget(WMWidget *w, WMWidget *newParent, int x, int y);
871 void WMDestroyWidget(WMWidget *widget);
873 void WMHangData(WMWidget *widget, void *data);
875 void* WMGetHangedData(WMWidget *widget);
877 unsigned int WMWidgetWidth(WMWidget *w);
879 unsigned int WMWidgetHeight(WMWidget *w);
881 Window WMWidgetXID(WMWidget *w);
883 Window WMViewXID(WMView *view);
885 void WMRedisplayWidget(WMWidget *w);
887 void WMSetViewNotifySizeChanges(WMView *view, Bool flag);
889 void WMSetViewExpandsToParent(WMView *view, int topOffs, int leftOffs,
890 int rightOffs, int bottomOffs);
892 WMSize WMGetViewSize(WMView *view);
894 WMPoint WMGetViewPosition(WMView *view);
896 WMPoint WMGetViewScreenPosition(WMView *view);
898 WMWidget* WMWidgetOfView(WMView *view);
900 void WMSetViewNextResponder(WMView *view, WMView *responder);
902 void WMRelayToNextResponder(WMView *view, XEvent *event);
904 /* notifications */
905 extern char *WMViewSizeDidChangeNotification;
907 extern char *WMViewFocusDidChangeNotification;
909 extern char *WMViewRealizedNotification;
912 /* ....................................................................... */
914 void WMSetBalloonTextForView(char *text, WMView *view);
916 void WMSetBalloonTextAlignment(WMScreen *scr, WMAlignment alignment);
918 void WMSetBalloonFont(WMScreen *scr, WMFont *font);
920 void WMSetBalloonTextColor(WMScreen *scr, WMColor *color);
922 void WMSetBalloonDelay(WMScreen *scr, int delay);
924 void WMSetBalloonEnabled(WMScreen *scr, Bool flag);
927 /* ....................................................................... */
929 WMWindow* WMCreateWindow(WMScreen *screen, char *name);
931 WMWindow* WMCreateWindowWithStyle(WMScreen *screen, char *name, int style);
933 WMWindow* WMCreatePanelWithStyleForWindow(WMWindow *owner, char *name,
934 int style);
936 WMWindow* WMCreatePanelForWindow(WMWindow *owner, char *name);
938 void WMChangePanelOwner(WMWindow *win, WMWindow *newOwner);
940 void WMSetWindowTitle(WMWindow *wPtr, char *title);
942 void WMSetWindowMiniwindowTitle(WMWindow *win, char *title);
944 void WMSetWindowMiniwindowPixmap(WMWindow *win, WMPixmap *pixmap);
946 void WMSetWindowCloseAction(WMWindow *win, WMAction *action, void *clientData);
948 void WMSetWindowInitialPosition(WMWindow *win, int x, int y);
950 void WMSetWindowUserPosition(WMWindow *win, int x, int y);
952 void WMSetWindowAspectRatio(WMWindow *win, int minX, int minY,
953 int maxX, int maxY);
955 void WMSetWindowMaxSize(WMWindow *win, unsigned width, unsigned height);
957 void WMSetWindowMinSize(WMWindow *win, unsigned width, unsigned height);
959 void WMSetWindowBaseSize(WMWindow *win, unsigned width, unsigned height);
961 void WMSetWindowResizeIncrements(WMWindow *win, unsigned wIncr, unsigned hIncr);
963 void WMSetWindowLevel(WMWindow *win, int level);
965 void WMSetWindowDocumentEdited(WMWindow *win, Bool flag);
967 void WMCloseWindow(WMWindow *win);
969 /* ....................................................................... */
971 void WMSetButtonAction(WMButton *bPtr, WMAction *action, void *clientData);
973 #define WMCreateCommandButton(parent) \
974 WMCreateCustomButton((parent), WBBSpringLoadedMask\
975 |WBBPushInMask\
976 |WBBPushLightMask\
977 |WBBPushChangeMask)
979 #define WMCreateRadioButton(parent) \
980 WMCreateButton((parent), WBTRadio)
982 #define WMCreateSwitchButton(parent) \
983 WMCreateButton((parent), WBTSwitch)
985 WMButton* WMCreateButton(WMWidget *parent, WMButtonType type);
987 WMButton* WMCreateCustomButton(WMWidget *parent, int behaviourMask);
989 void WMSetButtonImageDefault(WMButton *bPtr);
991 void WMSetButtonImage(WMButton *bPtr, WMPixmap *image);
993 void WMSetButtonAltImage(WMButton *bPtr, WMPixmap *image);
995 void WMSetButtonImagePosition(WMButton *bPtr, WMImagePosition position);
997 void WMSetButtonFont(WMButton *bPtr, WMFont *font);
999 void WMSetButtonTextAlignment(WMButton *bPtr, WMAlignment alignment);
1001 void WMSetButtonText(WMButton *bPtr, char *text);
1003 void WMSetButtonAltText(WMButton *bPtr, char *text);
1005 void WMSetButtonTextColor(WMButton *bPtr, WMColor *color);
1007 void WMSetButtonAltTextColor(WMButton *bPtr, WMColor *color);
1009 void WMSetButtonDisabledTextColor(WMButton *bPtr, WMColor *color);
1011 void WMSetButtonSelected(WMButton *bPtr, int isSelected);
1013 int WMGetButtonSelected(WMButton *bPtr);
1015 void WMSetButtonBordered(WMButton *bPtr, int isBordered);
1017 void WMSetButtonEnabled(WMButton *bPtr, Bool flag);
1019 int WMGetButtonEnabled(WMButton *bPtr);
1021 void WMSetButtonImageDimsWhenDisabled(WMButton *bPtr, Bool flag);
1023 void WMSetButtonTag(WMButton *bPtr, int tag);
1025 void WMGroupButtons(WMButton *bPtr, WMButton *newMember);
1027 void WMPerformButtonClick(WMButton *bPtr);
1029 void WMSetButtonContinuous(WMButton *bPtr, Bool flag);
1031 void WMSetButtonPeriodicDelay(WMButton *bPtr, float delay, float interval);
1033 /* ....................................................................... */
1035 WMLabel* WMCreateLabel(WMWidget *parent);
1037 void WMSetLabelWraps(WMLabel *lPtr, Bool flag);
1039 void WMSetLabelImage(WMLabel *lPtr, WMPixmap *image);
1041 WMPixmap* WMGetLabelImage(WMLabel *lPtr);
1043 char* WMGetLabelText(WMLabel *lPtr);
1045 void WMSetLabelImagePosition(WMLabel *lPtr, WMImagePosition position);
1047 void WMSetLabelTextAlignment(WMLabel *lPtr, WMAlignment alignment);
1049 void WMSetLabelRelief(WMLabel *lPtr, WMReliefType relief);
1051 void WMSetLabelText(WMLabel *lPtr, char *text);
1053 WMFont* WMGetLabelFont(WMLabel *lPtr);
1055 void WMSetLabelFont(WMLabel *lPtr, WMFont *font);
1057 void WMSetLabelTextColor(WMLabel *lPtr, WMColor *color);
1059 /* ....................................................................... */
1061 WMFrame* WMCreateFrame(WMWidget *parent);
1063 void WMSetFrameTitlePosition(WMFrame *fPtr, WMTitlePosition position);
1065 void WMSetFrameRelief(WMFrame *fPtr, WMReliefType relief);
1067 void WMSetFrameTitle(WMFrame *fPtr, char *title);
1069 /* ....................................................................... */
1071 WMTextField* WMCreateTextField(WMWidget *parent);
1073 void WMInsertTextFieldText(WMTextField *tPtr, char *text, int position);
1075 void WMDeleteTextFieldRange(WMTextField *tPtr, WMRange range);
1077 /* you can free the returned string */
1078 char* WMGetTextFieldText(WMTextField *tPtr);
1080 void WMSetTextFieldText(WMTextField *tPtr, char *text);
1082 void WMSetTextFieldAlignment(WMTextField *tPtr, WMAlignment alignment);
1084 void WMSetTextFieldFont(WMTextField *tPtr, WMFont *font);
1086 WMFont* WMGetTextFieldFont(WMTextField *tPtr);
1088 void WMSetTextFieldBordered(WMTextField *tPtr, Bool bordered);
1090 void WMSetTextFieldBeveled(WMTextField *tPtr, Bool flag);
1092 Bool WMGetTextFieldEditable(WMTextField *tPtr);
1094 void WMSetTextFieldEditable(WMTextField *tPtr, Bool flag);
1096 void WMSetTextFieldSecure(WMTextField *tPtr, Bool flag);
1098 void WMSelectTextFieldRange(WMTextField *tPtr, WMRange range);
1100 void WMSetTextFieldCursorPosition(WMTextField *tPtr, unsigned int position);
1102 void WMSetTextFieldNextTextField(WMTextField *tPtr, WMTextField *next);
1104 void WMSetTextFieldPrevTextField(WMTextField *tPtr, WMTextField *prev);
1106 void WMSetTextFieldDelegate(WMTextField *tPtr, WMTextFieldDelegate *delegate);
1108 WMTextFieldDelegate* WMGetTextFieldDelegate(WMTextField *tPtr);
1110 extern char *WMTextDidChangeNotification;
1111 extern char *WMTextDidBeginEditingNotification;
1112 extern char *WMTextDidEndEditingNotification;
1114 /* ....................................................................... */
1116 WMScroller* WMCreateScroller(WMWidget *parent);
1118 void WMSetScrollerParameters(WMScroller *sPtr, float floatValue,
1119 float knobProportion);
1121 float WMGetScrollerKnobProportion(WMScroller *sPtr);
1123 float WMGetScrollerValue(WMScroller *sPtr);
1125 WMScrollerPart WMGetScrollerHitPart(WMScroller *sPtr);
1127 void WMSetScrollerAction(WMScroller *sPtr, WMAction *action, void *clientData);
1129 void WMSetScrollerArrowsPosition(WMScroller *sPtr,
1130 WMScrollArrowPosition position);
1132 extern char *WMScrollerDidScrollNotification;
1134 /* ....................................................................... */
1136 WMList* WMCreateList(WMWidget *parent);
1138 void WMSetListAllowMultipleSelection(WMList *lPtr, Bool flag);
1140 void WMSetListAllowEmptySelection(WMList *lPtr, Bool flag);
1142 #define WMAddListItem(lPtr, text) WMInsertListItem((lPtr), -1, (text))
1144 WMListItem* WMInsertListItem(WMList *lPtr, int row, char *text);
1146 void WMSortListItems(WMList *lPtr);
1148 void WMSortListItemsWithComparer(WMList *lPtr, WMCompareDataProc *func);
1150 int WMFindRowOfListItemWithTitle(WMList *lPtr, char *title);
1152 WMListItem* WMGetListItem(WMList *lPtr, int row);
1154 WMArray* WMGetListItems(WMList *lPtr);
1156 void WMRemoveListItem(WMList *lPtr, int row);
1158 void WMSelectListItem(WMList *lPtr, int row);
1160 void WMUnselectListItem(WMList *lPtr, int row);
1162 /* This will select all items in range, and deselect all the others */
1163 void WMSetListSelectionToRange(WMList *lPtr, WMRange range);
1165 /* This will select all items in range, leaving the others as they are */
1166 void WMSelectListItemsInRange(WMList *lPtr, WMRange range);
1168 void WMSelectAllListItems(WMList *lPtr);
1170 void WMUnselectAllListItems(WMList *lPtr);
1172 void WMSetListUserDrawProc(WMList *lPtr, WMListDrawProc *proc);
1174 void WMSetListUserDrawItemHeight(WMList *lPtr, unsigned short height);
1176 int WMGetListItemHeight(WMList *lPtr);
1178 /* don't free the returned data */
1179 WMArray* WMGetListSelectedItems(WMList *lPtr);
1182 * For the following 2 functions, in case WMList allows multiple selection,
1183 * the first item in the list of selected items, respective its row number,
1184 * will be returned.
1187 /* don't free the returned data */
1188 WMListItem* WMGetListSelectedItem(WMList *lPtr);
1190 int WMGetListSelectedItemRow(WMList *lPtr);
1192 void WMSetListAction(WMList *lPtr, WMAction *action, void *clientData);
1194 void WMSetListDoubleAction(WMList *lPtr, WMAction *action, void *clientData);
1196 void WMClearList(WMList *lPtr);
1198 int WMGetListNumberOfRows(WMList *lPtr);
1200 void WMSetListPosition(WMList *lPtr, int row);
1202 void WMSetListBottomPosition(WMList *lPtr, int row);
1204 int WMGetListPosition(WMList *lPtr);
1206 Bool WMListAllowsMultipleSelection(WMList *lPtr);
1208 Bool WMListAllowsEmptySelection(WMList *lPtr);
1211 extern char *WMListDidScrollNotification;
1212 extern char *WMListSelectionDidChangeNotification;
1214 /* ....................................................................... */
1216 WMBrowser* WMCreateBrowser(WMWidget *parent);
1218 void WMSetBrowserAllowMultipleSelection(WMBrowser *bPtr, Bool flag);
1220 void WMSetBrowserAllowEmptySelection(WMBrowser *bPtr, Bool flag);
1222 void WMSetBrowserPathSeparator(WMBrowser *bPtr, char *separator);
1224 void WMSetBrowserTitled(WMBrowser *bPtr, Bool flag);
1226 void WMLoadBrowserColumnZero(WMBrowser *bPtr);
1228 int WMAddBrowserColumn(WMBrowser *bPtr);
1230 void WMRemoveBrowserItem(WMBrowser *bPtr, int column, int row);
1232 void WMSetBrowserMaxVisibleColumns(WMBrowser *bPtr, int columns);
1234 void WMSetBrowserColumnTitle(WMBrowser *bPtr, int column, char *title);
1236 WMListItem* WMInsertBrowserItem(WMBrowser *bPtr, int column, int row, char *text, Bool isBranch);
1238 void WMSortBrowserColumn(WMBrowser *bPtr, int column);
1240 void WMSortBrowserColumnWithComparer(WMBrowser *bPtr, int column,
1241 WMCompareDataProc *func);
1243 /* Don't free the returned string. */
1244 char* WMSetBrowserPath(WMBrowser *bPtr, char *path);
1246 /* free the returned string */
1247 char* WMGetBrowserPath(WMBrowser *bPtr);
1249 /* free the returned string */
1250 char* WMGetBrowserPathToColumn(WMBrowser *bPtr, int column);
1252 /* free the returned array */
1253 WMArray* WMGetBrowserPaths(WMBrowser *bPtr);
1255 void WMSetBrowserAction(WMBrowser *bPtr, WMAction *action, void *clientData);
1257 void WMSetBrowserDoubleAction(WMBrowser *bPtr, WMAction *action,
1258 void *clientData);
1260 WMListItem* WMGetBrowserSelectedItemInColumn(WMBrowser *bPtr, int column);
1262 int WMGetBrowserFirstVisibleColumn(WMBrowser *bPtr);
1264 int WMGetBrowserSelectedColumn(WMBrowser *bPtr);
1266 int WMGetBrowserSelectedRowInColumn(WMBrowser *bPtr, int column);
1268 int WMGetBrowserNumberOfColumns(WMBrowser *bPtr);
1270 int WMGetBrowserMaxVisibleColumns(WMBrowser *bPtr);
1272 WMList* WMGetBrowserListInColumn(WMBrowser *bPtr, int column);
1274 void WMSetBrowserDelegate(WMBrowser *bPtr, WMBrowserDelegate *delegate);
1276 Bool WMBrowserAllowsMultipleSelection(WMBrowser *bPtr);
1278 Bool WMBrowserAllowsEmptySelection(WMBrowser *bPtr);
1280 void WMSetBrowserHasScroller(WMBrowser *bPtr, int hasScroller);
1282 /* ....................................................................... */
1285 Bool WMMenuItemIsSeparator(WMMenuItem *item);
1287 WMMenuItem* WMCreateMenuItem(void);
1289 void WMDestroyMenuItem(WMMenuItem *item);
1291 Bool WMGetMenuItemEnabled(WMMenuItem *item);
1293 void WMSetMenuItemEnabled(WMMenuItem *item, Bool flag);
1295 char* WMGetMenuItemShortcut(WMMenuItem *item);
1297 unsigned WMGetMenuItemShortcutModifierMask(WMMenuItem *item);
1299 void WMSetMenuItemShortcut(WMMenuItem *item, char *shortcut);
1301 void WMSetMenuItemShortcutModifierMask(WMMenuItem *item, unsigned mask);
1303 void* WMGetMenuItemRepresentedObject(WMMenuItem *item);
1305 void WMSetMenuItemRepresentedObject(WMMenuItem *item, void *object);
1307 void WMSetMenuItemAction(WMMenuItem *item, WMAction *action, void *data);
1309 WMAction* WMGetMenuItemAction(WMMenuItem *item);
1311 void* WMGetMenuItemData(WMMenuItem *item);
1313 void WMSetMenuItemTitle(WMMenuItem *item, char *title);
1315 char* WMGetMenuItemTitle(WMMenuItem *item);
1317 void WMSetMenuItemState(WMMenuItem *item, int state);
1319 int WMGetMenuItemState(WMMenuItem *item);
1321 void WMSetMenuItemPixmap(WMMenuItem *item, WMPixmap *pixmap);
1323 WMPixmap* WMGetMenuItemPixmap(WMMenuItem *item);
1325 void WMSetMenuItemOnStatePixmap(WMMenuItem *item, WMPixmap *pixmap);
1327 WMPixmap* WMGetMenuItemOnStatePixmap(WMMenuItem *item);
1329 void WMSetMenuItemOffStatePixmap(WMMenuItem *item, WMPixmap *pixmap);
1331 WMPixmap* WMGetMenuItemOffStatePixmap(WMMenuItem *item);
1333 void WMSetMenuItemMixedStatePixmap(WMMenuItem *item, WMPixmap *pixmap);
1335 WMPixmap* WMGetMenuItemMixedStatePixmap(WMMenuItem *item);
1337 /*void WMSetMenuItemSubmenu(WMMenuItem *item, WMMenu *submenu);
1340 WMMenu* WMGetMenuItemSubmenu(WMMenuItem *item);
1342 Bool WMGetMenuItemHasSubmenu(WMMenuItem *item);
1345 /* ....................................................................... */
1347 WMPopUpButton* WMCreatePopUpButton(WMWidget *parent);
1349 void WMSetPopUpButtonAction(WMPopUpButton *sPtr, WMAction *action,
1350 void *clientData);
1352 void WMSetPopUpButtonPullsDown(WMPopUpButton *bPtr, Bool flag);
1354 WMMenuItem* WMAddPopUpButtonItem(WMPopUpButton *bPtr, char *title);
1356 WMMenuItem* WMInsertPopUpButtonItem(WMPopUpButton *bPtr, int index,
1357 char *title);
1359 void WMRemovePopUpButtonItem(WMPopUpButton *bPtr, int index);
1361 void WMSetPopUpButtonItemEnabled(WMPopUpButton *bPtr, int index, Bool flag);
1363 Bool WMGetPopUpButtonItemEnabled(WMPopUpButton *bPtr, int index);
1365 void WMSetPopUpButtonSelectedItem(WMPopUpButton *bPtr, int index);
1367 int WMGetPopUpButtonSelectedItem(WMPopUpButton *bPtr);
1369 void WMSetPopUpButtonText(WMPopUpButton *bPtr, char *text);
1371 /* don't free the returned data */
1372 char* WMGetPopUpButtonItem(WMPopUpButton *bPtr, int index);
1374 WMMenuItem* WMGetPopUpButtonMenuItem(WMPopUpButton *bPtr, int index);
1377 int WMGetPopUpButtonNumberOfItems(WMPopUpButton *bPtr);
1379 void WMSetPopUpButtonEnabled(WMPopUpButton *bPtr, Bool flag);
1381 Bool WMGetPopUpButtonEnabled(WMPopUpButton *bPtr);
1383 /* ....................................................................... */
1385 WMProgressIndicator* WMCreateProgressIndicator(WMWidget *parent);
1387 void WMSetProgressIndicatorMinValue(WMProgressIndicator *progressindicator, int value);
1389 void WMSetProgressIndicatorMaxValue(WMProgressIndicator *progressindicator, int value);
1391 void WMSetProgressIndicatorValue(WMProgressIndicator *progressindicator, int value);
1393 int WMGetProgressIndicatorMinValue(WMProgressIndicator *progressindicator);
1395 int WMGetProgressIndicatorMaxValue(WMProgressIndicator *progressindicator);
1397 int WMGetProgressIndicatorValue(WMProgressIndicator *progressindicator);
1400 /* ....................................................................... */
1402 WMColorPanel* WMGetColorPanel(WMScreen *scrPtr);
1404 void WMFreeColorPanel(WMColorPanel *panel);
1406 void WMShowColorPanel(WMColorPanel *panel);
1408 void WMCloseColorPanel(WMColorPanel *panel);
1410 void WMSetColorPanelColor(WMColorPanel *panel, WMColor *color);
1412 WMColor* WMGetColorPanelColor(WMColorPanel *panel);
1414 void WMSetColorPanelPickerMode(WMColorPanel *panel, WMColorPanelMode mode);
1416 void WMSetColorPanelAction(WMColorPanel *panel, WMAction2 *action, void *data);
1418 extern char *WMColorPanelColorChangedNotification;
1420 /* ....................................................................... */
1422 WMColorWell* WMCreateColorWell(WMWidget *parent);
1424 void WMSetColorWellColor(WMColorWell *cPtr, WMColor *color);
1426 WMColor* WMGetColorWellColor(WMColorWell *cPtr);
1428 void WSetColorWellBordered(WMColorWell *cPtr, Bool flag);
1431 extern char *WMColorWellDidChangeNotification;
1434 /* ...................................................................... */
1436 WMScrollView* WMCreateScrollView(WMWidget *parent);
1438 void WMResizeScrollViewContent(WMScrollView *sPtr, unsigned int width,
1439 unsigned int height);
1441 void WMSetScrollViewHasHorizontalScroller(WMScrollView *sPtr, Bool flag);
1443 void WMSetScrollViewHasVerticalScroller(WMScrollView *sPtr, Bool flag);
1445 void WMSetScrollViewContentView(WMScrollView *sPtr, WMView *view);
1447 void WMSetScrollViewRelief(WMScrollView *sPtr, WMReliefType type);
1449 WMRect WMGetScrollViewVisibleRect(WMScrollView *sPtr);
1451 WMScroller* WMGetScrollViewHorizontalScroller(WMScrollView *sPtr);
1453 WMScroller* WMGetScrollViewVerticalScroller(WMScrollView *sPtr);
1455 void WMSetScrollViewLineScroll(WMScrollView *sPtr, int amount);
1457 void WMSetScrollViewPageScroll(WMScrollView *sPtr, int amount);
1459 /* ....................................................................... */
1461 WMSlider* WMCreateSlider(WMWidget *parent);
1463 int WMGetSliderMinValue(WMSlider *slider);
1465 int WMGetSliderMaxValue(WMSlider *slider);
1467 int WMGetSliderValue(WMSlider *slider);
1469 void WMSetSliderMinValue(WMSlider *slider, int value);
1471 void WMSetSliderMaxValue(WMSlider *slider, int value);
1473 void WMSetSliderValue(WMSlider *slider, int value);
1475 void WMSetSliderContinuous(WMSlider *slider, Bool flag);
1477 void WMSetSliderAction(WMSlider *slider, WMAction *action, void *data);
1479 void WMSetSliderKnobThickness(WMSlider *sPtr, int thickness);
1481 void WMSetSliderImage(WMSlider *sPtr, WMPixmap *pixmap);
1483 /* ....................................................................... */
1486 WMSplitView* WMCreateSplitView(WMWidget *parent);
1488 Bool WMGetSplitViewVertical(WMSplitView *sPtr);
1490 void WMSetSplitViewVertical(WMSplitView *sPtr, Bool flag);
1492 int WMGetSplitViewSubviewsCount(WMSplitView *sPtr); /* ??? remove ??? */
1494 WMView* WMGetSplitViewSubviewAt(WMSplitView *sPtr, int index);
1496 /* remove the first subview == view */
1497 void WMRemoveSplitViewSubview(WMSplitView *sPtr, WMView *view);
1499 void WMRemoveSplitViewSubviewAt(WMSplitView *sPtr, int index);
1502 void WMAddSplitViewSubview(WMSplitView *sPtr, WMView *subview);
1504 void WMAdjustSplitViewSubviews(WMSplitView *sPtr);
1506 void WMSetSplitViewConstrainProc(WMSplitView *sPtr,
1507 WMSplitViewConstrainProc *proc);
1510 void WMSetSplitViewResizeSubviewsProc(WMSplitView *sPtr,
1511 WMSplitViewResizeSubviewsProc *proc);
1514 int WMGetSplitViewDividerThickness(WMSplitView *sPtr);
1516 /* ...................................................................... */
1518 WMRuler* WMCreateRuler (WMWidget *parent);
1520 WMRulerMargins* WMGetRulerMargins(WMRuler *rPtr);
1522 void WMSetRulerMargins(WMRuler *rPtr, WMRulerMargins margins);
1524 Bool WMIsMarginEqualToMargin(WMRulerMargins *aMargin, WMRulerMargins *anotherMargin);
1526 int WMGetGrabbedRulerMargin(WMRuler *rPtr);
1528 int WMGetReleasedRulerMargin(WMRuler *rPtr);
1530 int WMGetRulerOffset(WMRuler *rPtr);
1532 void WMSetRulerOffset(WMRuler *rPtr, int pixels);
1534 void WMSetRulerMoveAction(WMRuler *rPtr, WMAction *action, void *clientData);
1536 void WMSetRulerReleaseAction(WMRuler *rPtr, WMAction *action, void *clientData);
1538 /* ....................................................................... */
1541 #define WMCreateText(parent) WMCreateTextForDocumentType \
1542 ((parent), (NULL), (NULL))
1544 WMText* WMCreateTextForDocumentType(WMWidget *parent, WMAction *parser,
1545 WMAction *writer);
1547 void WMSetTextDelegate(WMText *tPtr, WMTextDelegate *delegate);
1549 void WMFreezeText(WMText *tPtr);
1551 #define WMRefreshText(tPtr) WMThawText((tPtr))
1553 void WMThawText(WMText *tPtr);
1555 int WMScrollText(WMText *tPtr, int amount);
1557 int WMPageText(WMText *tPtr, Bool direction);
1559 void WMSetTextHasHorizontalScroller(WMText *tPtr, Bool shouldhave);
1561 void WMSetTextHasVerticalScroller(WMText *tPtr, Bool shouldhave);
1563 void WMSetTextHasRuler(WMText *tPtr, Bool shouldhave);
1565 void WMShowTextRuler(WMText *tPtr, Bool show);
1567 int WMGetTextRulerShown(WMText *tPtr);
1569 void WMSetTextEditable(WMText *tPtr, Bool editable);
1571 int WMGetTextEditable(WMText *tPtr);
1573 void WMSetTextUsesMonoFont(WMText *tPtr, Bool mono);
1575 int WMGetTextUsesMonoFont(WMText *tPtr);
1577 void WMSetTextIndentNewLines(WMText *tPtr, Bool indent);
1579 void WMSetTextIgnoresNewline(WMText *tPtr, Bool ignore);
1581 int WMGetTextIgnoresNewline(WMText *tPtr);
1583 void WMSetTextDefaultFont(WMText *tPtr, WMFont *font);
1585 WMFont* WMGetTextDefaultFont(WMText *tPtr);
1587 void WMSetTextDefaultColor(WMText *tPtr, WMColor *color);
1589 WMColor* WMGetTextDefaultColor(WMText *tPtr);
1591 void WMSetTextRelief(WMText *tPtr, WMReliefType relief);
1593 void WMSetTextForegroundColor(WMText *tPtr, WMColor *color);
1595 void WMSetTextBackgroundColor(WMText *tPtr, WMColor *color);
1597 void WMSetTextBackgroundPixmap(WMText *tPtr, WMPixmap *pixmap);
1599 void WMPrependTextStream(WMText *tPtr, char *text);
1601 void WMAppendTextStream(WMText *tPtr, char *text);
1603 #define WMClearText(tPtr) WMAppendTextStream \
1604 ((tPtr), (NULL))
1606 /* free the text */
1607 char* WMGetTextStream(WMText *tPtr);
1609 /* free the text */
1610 char* WMGetTextSelectedStream(WMText *tPtr);
1612 /* destroy the array */
1613 WMArray* WMGetTextObjects(WMText *tPtr);
1615 /* destroy the array */
1616 WMArray* WMGetTextSelectedObjects(WMText *tPtr);
1618 void WMSetTextSelectionColor(WMText *tPtr, WMColor *color);
1620 WMColor* WMGetTextSelectionColor(WMText *tPtr);
1622 void WMSetTextSelectionFont(WMText *tPtr, WMFont *font);
1624 WMFont* WMGetTextSelectionFont(WMText *tPtr);
1626 void WMSetTextSelectionUnderlined(WMText *tPtr, int underlined);
1628 int WMGetTextSelectionUnderlined(WMText *tPtr);
1630 void WMSetTextAlignment(WMText *tPtr, WMAlignment alignment);
1632 Bool WMFindInTextStream(WMText *tPtr, char *needle, Bool direction,
1633 Bool caseSensitive);
1635 Bool WMReplaceTextSelection(WMText *tPtr, char *replacement);
1638 /* parser related stuff... use only if implementing a new parser */
1640 void* WMCreateTextBlockWithObject(WMText *tPtr, WMWidget *w, char *description,
1641 WMColor *color, unsigned short first,
1642 unsigned short extraInfo);
1644 void* WMCreateTextBlockWithPixmap(WMText *tPtr, WMPixmap *p, char *description,
1645 WMColor *color, unsigned short first,
1646 unsigned short extraInfo);
1648 void* WMCreateTextBlockWithText(WMText *tPtr, char *text, WMFont *font,
1649 WMColor *color, unsigned short first,
1650 unsigned short length);
1652 void WMSetTextBlockProperties(WMText *tPtr, void *vtb, unsigned int first,
1653 unsigned int kanji, unsigned int underlined,
1654 int script, WMRulerMargins *margins);
1656 /* do NOT free the margins */
1657 void WMGetTextBlockProperties(WMText *tPtr, void *vtb, unsigned int *first,
1658 unsigned int *kanji, unsigned int *underlined,
1659 int *script, WMRulerMargins *margins);
1661 int WMGetTextInsertType(WMText *tPtr);
1663 /*int WMGetTextBlocks(WMText *tPtr);
1665 void WMSetCurrentTextBlock(WMText *tPtr, int current);
1667 int WMGetCurrentTextBlock(WMText *tPtr);*/
1669 void WMPrependTextBlock(WMText *tPtr, void *vtb);
1671 void WMAppendTextBlock(WMText *tPtr, void *vtb);
1673 void* WMRemoveTextBlock(WMText *tPtr);
1675 void WMDestroyTextBlock(WMText *tPtr, void *vtb);
1677 /* ....................................................................... */
1680 WMTabView* WMCreateTabView(WMWidget *parent);
1682 void WMSetTabViewType(WMTabView *tPtr, WMTabViewType type);
1684 void WMSetTabViewEnabled(WMTabView *tPtr, Bool flag);
1686 void WMSetTabViewFont(WMTabView *tPtr, WMFont *font);
1688 void WMAddItemInTabView(WMTabView *tPtr, WMTabViewItem *item);
1690 void WMInsertItemInTabView(WMTabView *tPtr, int index, WMTabViewItem *item);
1692 void WMRemoveTabViewItem(WMTabView *tPtr, WMTabViewItem *item);
1694 WMTabViewItem* WMAddTabViewItemWithView(WMTabView *tPtr, WMView *view,
1695 int identifier, char *label);
1697 WMTabViewItem* WMTabViewItemAtPoint(WMTabView *tPtr, int x, int y);
1699 void WMSelectFirstTabViewItem(WMTabView *tPtr);
1701 void WMSelectLastTabViewItem(WMTabView *tPtr);
1703 void WMSelectNextTabViewItem(WMTabView *tPtr);
1705 void WMSelectPreviousTabViewItem(WMTabView *tPtr);
1707 WMTabViewItem* WMGetSelectedTabViewItem(WMTabView *tPtr);
1709 void WMSelectTabViewItem(WMTabView *tPtr, WMTabViewItem *item);
1711 void WMSelectTabViewItemAtIndex(WMTabView *tPtr, int index);
1713 void WMSetTabViewDelegate(WMTabView *tPtr, WMTabViewDelegate *delegate);
1716 WMTabViewItem* WMCreateTabViewItemWithIdentifier(int identifier);
1718 void WMSetTabViewItemEnabled(WMTabViewItem *tPtr, Bool flag);
1720 int WMGetTabViewItemIdentifier(WMTabViewItem *item);
1722 void WMSetTabViewItemLabel(WMTabViewItem *item, char *label);
1724 char* WMGetTabViewItemLabel(WMTabViewItem *item);
1726 void WMSetTabViewItemView(WMTabViewItem *item, WMView *view);
1728 WMView* WMGetTabViewItemView(WMTabViewItem *item);
1730 void WMDestroyTabViewItem(WMTabViewItem *item);
1733 /* ....................................................................... */
1735 WMBox* WMCreateBox(WMWidget *parent);
1737 void WMSetBoxBorderWidth(WMBox *box, unsigned width);
1739 void WMAddBoxSubview(WMBox *bPtr, WMView *view, Bool expand, Bool fill,
1740 int minSize, int maxSize, int space);
1742 void WMAddBoxSubviewAtEnd(WMBox *bPtr, WMView *view, Bool expand, Bool fill,
1743 int minSize, int maxSize, int space);
1745 void WMRemoveBoxSubview(WMBox *bPtr, WMView *view);
1747 void WMSetBoxHorizontal(WMBox *box, Bool flag);
1749 /* ....................................................................... */
1751 int WMRunAlertPanel(WMScreen *app, WMWindow *owner, char *title, char *msg,
1752 char *defaultButton, char *alternateButton,
1753 char *otherButton);
1755 /* you can free the returned string */
1756 char* WMRunInputPanel(WMScreen *app, WMWindow *owner, char *title, char *msg,
1757 char *defaultText, char *okButton, char *cancelButton);
1759 WMAlertPanel* WMCreateAlertPanel(WMScreen *app, WMWindow *owner, char *title,
1760 char *msg, char *defaultButton,
1761 char *alternateButton, char *otherButton);
1763 WMInputPanel* WMCreateInputPanel(WMScreen *app, WMWindow *owner, char *title,
1764 char *msg, char *defaultText, char *okButton,
1765 char *cancelButton);
1768 WMGenericPanel* WMCreateGenericPanel(WMScreen *scrPtr, WMWindow *owner,
1769 char *title, char *defaultButton,
1770 char *alternateButton);
1772 void WMDestroyAlertPanel(WMAlertPanel *panel);
1774 void WMDestroyInputPanel(WMInputPanel *panel);
1776 void WMDestroyGenericPanel(WMGenericPanel *panel);
1778 /* ....................................................................... */
1780 /* only 1 instance per WMScreen */
1781 WMOpenPanel* WMGetOpenPanel(WMScreen *scrPtr);
1783 WMSavePanel* WMGetSavePanel(WMScreen *scrPtr);
1785 void WMSetFilePanelCanChooseDirectories(WMFilePanel *panel, Bool flag);
1787 void WMSetFilePanelCanChooseFiles(WMFilePanel *panel, Bool flag);
1789 void WMSetFilePanelAutoCompletion(WMFilePanel *panel, Bool flag);
1791 void WMSetFilePanelDirectory(WMFilePanel *panel, char *path);
1793 /* you can free the returned string */
1794 char* WMGetFilePanelFileName(WMFilePanel *panel);
1796 void WMFreeFilePanel(WMFilePanel *panel);
1798 int WMRunModalFilePanelForDirectory(WMFilePanel *panel, WMWindow *owner,
1799 char *path, char *name, char **fileTypes);
1801 void WMSetFilePanelAccessoryView(WMFilePanel *panel, WMView *view);
1803 WMView* WMGetFilePanelAccessoryView(WMFilePanel *panel);
1806 /* ...................................................................... */
1808 /* only 1 instance per WMScreen */
1809 WMFontPanel* WMGetFontPanel(WMScreen *scr);
1811 void WMShowFontPanel(WMFontPanel *panel);
1813 void WMHideFontPanel(WMFontPanel *panel);
1815 void WMSetFontPanelFont(WMFontPanel *panel, WMFont *font);
1817 /* you can free the returned string */
1818 char* WMGetFontPanelFontName(WMFontPanel *panel);
1820 WMFont* WMGetFontPanelFont(WMFontPanel *panel);
1822 #ifdef __cplusplus
1824 #endif /* __cplusplus */
1826 #endif