11 #if WINGS_H_VERSION < 20000521
12 #error There_is_an_old_WINGs.h_file_somewhere_in_your_system._Please_remove_it.
23 #endif /* __cplusplus */
29 #define WC_UserWidget 128
33 #define SCROLLER_WIDTH 20
37 #define XDND_VERSION 4
40 typedef struct W_Application
{
41 char *applicationName
;
48 typedef struct W_Font
{
49 struct W_Screen
*screen
;
59 unsigned int notFontSet
:1;
63 typedef struct W_Pixmap
{
64 struct W_Screen
*screen
;
68 unsigned short height
;
74 typedef struct W_Color
{
75 struct W_Screen
*screen
;
86 typedef struct W_FocusInfo
{
87 struct W_View
*toplevel
;
88 struct W_View
*focused
; /* view that has the focus in this toplevel */
89 struct W_FocusInfo
*next
;
94 struct W_DraggingInfo
{
95 Window destinationWindow
;
100 unsigned sourceOperation
;
102 WMPoint imageLocation
;
110 /* should be treated as internal data */
118 typedef struct W_Screen
{
131 struct W_View
*rootView
;
135 /* application related */
137 W_FocusInfo
*focusInfo
;
139 struct W_Pixmap
*applicationIcon
;
141 struct W_Window
*windowList
; /* list of windows in the app */
143 Window groupLeader
; /* the leader of the application */
144 /* also used for other things */
146 struct W_SelectionHandlers
*selectionHandlerList
;
149 unsigned int hasAppIcon
:1;
150 unsigned int simpleApplication
:1;
153 WMOpenPanel
*sharedOpenPanel
;
154 WMSavePanel
*sharedSavePanel
;
156 struct W_FontPanel
*sharedFontPanel
;
158 struct W_ColorPanel
*sharedColorPanel
;
162 struct W_View
*dragSourceView
;
163 struct W_DraggingInfo dragInfo
;
176 GC monoGC
; /* GC for 1bpp visuals */
180 GC ixorGC
; /* IncludeInferiors XOR */
188 WMHashTable
*fontCache
;
192 struct W_Balloon
*balloon
;
195 struct W_Pixmap
*checkButtonImageOn
;
196 struct W_Pixmap
*checkButtonImageOff
;
198 struct W_Pixmap
*radioButtonImageOn
;
199 struct W_Pixmap
*radioButtonImageOff
;
201 struct W_Pixmap
*buttonArrow
;
202 struct W_Pixmap
*pushedButtonArrow
;
204 struct W_Pixmap
*scrollerDimple
;
206 struct W_Pixmap
*upArrow
;
207 struct W_Pixmap
*downArrow
;
208 struct W_Pixmap
*leftArrow
;
209 struct W_Pixmap
*rightArrow
;
211 struct W_Pixmap
*hiUpArrow
;
212 struct W_Pixmap
*hiDownArrow
;
213 struct W_Pixmap
*hiLeftArrow
;
214 struct W_Pixmap
*hiRightArrow
;
216 struct W_Pixmap
*pullDownIndicator
;
217 struct W_Pixmap
*popUpIndicator
;
219 struct W_Pixmap
*checkMark
;
221 struct W_Pixmap
*homeIcon
;
222 struct W_Pixmap
*altHomeIcon
;
224 struct W_Pixmap
*trashcanIcon
;
225 struct W_Pixmap
*altTrashcanIcon
;
227 struct W_Pixmap
*createDirIcon
;
228 struct W_Pixmap
*altCreateDirIcon
;
230 struct W_Pixmap
*disketteIcon
;
231 struct W_Pixmap
*altDisketteIcon
;
232 struct W_Pixmap
*unmountIcon
;
233 struct W_Pixmap
*altUnmountIcon
;
235 struct W_Pixmap
*magnifyIcon
;
236 /* struct W_Pixmap *altMagnifyIcon;*/
237 struct W_Pixmap
*wheelIcon
;
238 struct W_Pixmap
*grayIcon
;
239 struct W_Pixmap
*rgbIcon
;
240 struct W_Pixmap
*cmykIcon
;
241 struct W_Pixmap
*hsbIcon
;
242 struct W_Pixmap
*customPaletteIcon
;
243 struct W_Pixmap
*colorListIcon
;
245 struct W_Pixmap
*defaultObjectIcon
;
247 Cursor defaultCursor
;
251 Cursor invisibleCursor
;
253 Atom attribsAtom
; /* GNUstepWindowAttributes */
255 Atom deleteWindowAtom
; /* WM_DELETE_WINDOW */
257 Atom protocolsAtom
; /* _XA_WM_PROTOCOLS */
259 Atom clipboardAtom
; /* CLIPBOARD */
261 Atom xdndAwareAtom
; /* XdndAware */
262 Atom xdndSelectionAtom
;
265 Atom xdndPositionAtom
;
267 Atom xdndFinishedAtom
;
268 Atom xdndTypeListAtom
;
275 Atom xdndActionPrivate
;
277 Atom wmIconDragOffsetAtom
;
279 Atom wmStateAtom
; /* WM_STATE */
281 /* stuff for detecting double-clicks */
282 Time lastClickTime
; /* time of last mousedown event */
283 Window lastClickWindow
; /* window of the last mousedown */
285 struct W_View
*modalView
;
287 unsigned ignoreNextDoubleClick
:1;
292 typedef struct W_ViewDelegate
{
295 void (*didMove
)(struct W_ViewDelegate
*, WMView
*);
297 void (*didResize
)(struct W_ViewDelegate
*, WMView
*);
299 void (*willMove
)(struct W_ViewDelegate
*, WMView
*, int*, int*);
301 void (*willResize
)(struct W_ViewDelegate
*, WMView
*,
302 unsigned int*, unsigned int*);
307 typedef struct W_View
{
308 struct W_Screen
*screen
;
310 WMWidget
*self
; /* must point to the widget the
313 W_ViewDelegate
*delegate
;
321 struct W_View
*nextFocusChain
; /* next/prev in focus chain */
322 struct W_View
*prevFocusChain
;
324 struct W_View
*parent
; /* parent WMView */
326 struct W_View
*childrenList
; /* first in list of child windows */
328 struct W_View
*nextSister
; /* next on parent's children list */
330 struct W_EventHandler
*handlerList
;/* list of event handlers for this window */
332 unsigned long attribFlags
;
333 XSetWindowAttributes attribs
;
335 void *hangedData
; /* data holder for user program */
340 Atom
*droppableTypes
;
341 struct W_DragSourceProcs
*dragSourceProcs
;
342 struct W_DragDestinationProcs
*dragDestinationProcs
;
347 unsigned int realized
:1;
348 unsigned int mapped
:1;
349 unsigned int parentDying
:1;
350 unsigned int dying
:1; /* the view is being destroyed */
351 unsigned int topLevel
:1; /* is a top level window */
352 unsigned int root
:1; /* is the root window */
353 unsigned int mapWhenRealized
:1;/* map the view when it's realized */
354 unsigned int alreadyDead
:1; /* view was freed */
356 unsigned int dontCompressMotion
:1; /* motion notify event compress */
357 unsigned int notifySizeChanged
:1;
358 unsigned int dontCompressExpose
:1; /* will compress all expose
361 unsigned int worksWhenModal
:1;
362 unsigned int pendingRelease1
:1;
363 unsigned int pendingRelease2
:1;
364 unsigned int pendingRelease3
:1;
365 unsigned int pendingRelease4
:1;
366 unsigned int pendingRelease5
:1;
367 unsigned int xdndHintSet
:1;
374 typedef struct W_EventHandler
{
375 unsigned long eventMask
;
381 struct W_EventHandler
*nextHandler
;
387 typedef struct _WINGsConfiguration
{
389 char *boldSystemFont
;
393 unsigned doubleClickDelay
;
394 unsigned mouseWheelUp
;
395 unsigned mouseWheelDown
;
396 } _WINGsConfiguration
;
398 extern _WINGsConfiguration WINGsConfiguration
;
402 #define CHECK_CLASS(widget, class) assert(W_CLASS(widget)==(class))
405 #define W_CLASS(widget) (((W_WidgetType*)(widget))->widgetClass)
406 #define W_VIEW(widget) (((W_WidgetType*)(widget))->view)
408 #define W_VIEW_REALIZED(view) (view)->flags.realized
409 #define W_VIEW_MAPPED(view) (view)->flags.mapped
411 #define W_VIEW_SCREEN(view) (view)->screen
412 #define W_VIEW_DRAWABLE(view) (view)->window
414 #define W_VIEW_WIDTH(view) (view)->size.width
415 #define W_VIEW_HEIGHT(view) (view)->size.height
418 #define W_PIXEL(c) (c)->color.pixel
420 #define W_FONTID(f) (f)->font->fid
422 #define W_DRAWABLE(scr) (scr)->rcontext->drawable
426 W_View
*W_GetViewForXWindow(Display
*display
, Window window
);
428 W_View
*W_CreateView(W_View
*parent
);
430 W_View
*W_CreateTopView(W_Screen
*screen
);
433 W_View
*W_CreateRootView(W_Screen
*screen
);
435 void W_DestroyView(W_View
*view
);
437 void W_RealizeView(W_View
*view
);
439 void W_ReparentView(W_View
*view
, W_View
*newParent
, int x
, int y
);
441 void W_MapView(W_View
*view
);
443 void W_MapSubviews(W_View
*view
);
445 void W_UnmapSubviews(W_View
*view
);
447 W_View
*W_TopLevelOfView(W_View
*view
);
449 void W_UnmapView(W_View
*view
);
451 void W_MoveView(W_View
*view
, int x
, int y
);
453 void W_ResizeView(W_View
*view
, unsigned int width
, unsigned int height
);
455 void W_SetViewBackgroundColor(W_View
*view
, WMColor
*color
);
457 void W_DrawRelief(W_Screen
*scr
, Drawable d
, int x
, int y
, unsigned int width
,
458 unsigned int height
, WMReliefType relief
);
460 void W_DrawReliefWithGC(W_Screen
*scr
, Drawable d
, int x
, int y
,
461 unsigned int width
, unsigned int height
,
463 GC black
, GC dark
, GC light
, GC white
);
465 void W_CleanUpEvents(W_View
*view
);
467 void W_CallDestroyHandlers(W_View
*view
);
469 void W_PaintTextAndImage(W_View
*view
, int wrap
, GC textGC
, W_Font
*font
,
470 WMReliefType relief
, char *text
,
471 WMAlignment alignment
, W_Pixmap
*image
,
472 WMImagePosition position
, GC backGC
, int ofs
);
474 void W_PaintText(W_View
*view
, Drawable d
, WMFont
*font
, int x
, int y
,
475 int width
, WMAlignment alignment
, GC gc
,
476 int wrap
, char *text
, int length
);
478 int W_GetTextHeight(WMFont
*font
, char *text
, int width
, int wrap
);
481 int W_TextWidth(WMFont
*font
, char *text
, int length
);
484 void W_BroadcastMessage(W_View
*targetParent
, XEvent
*event
);
486 void W_DispatchMessage(W_View
*target
, XEvent
*event
);
488 void W_SetFocusOfToplevel(W_View
*toplevel
, W_View
*view
);
490 W_View
*W_FocusedViewOfToplevel(W_View
*view
);
492 void W_SetFocusOfTopLevel(W_View
*toplevel
, W_View
*view
);
494 void W_ReleaseView(WMView
*view
);
496 WMView
*W_RetainView(WMView
*view
);
498 void W_InitApplication(WMScreen
*scr
);
500 void W_InitNotificationCenter(void);
502 W_Class
W_RegisterUserWidget(void);
504 void W_RedisplayView(WMView
*view
);
506 Bool
W_ApplicationInitialized(void);
508 void W_HandleSelectionEvent(XEvent
*event
);
510 void W_HandleDNDClientMessage(WMView
*toplevel
, XClientMessageEvent
*event
);
512 void W_FlushASAPNotificationQueue();
514 void W_FlushIdleNotificationQueue();
516 struct W_Balloon
*W_CreateBalloon(WMScreen
*scr
);
518 void W_BalloonHandleEnterView(WMView
*view
);
520 void W_BalloonHandleLeaveView(WMView
*view
);
524 #endif /* __cplusplus */
526 #endif /* _WINGSP_H_ */