summaryrefslogtreecommitdiffhomepage
path: root/X-Plane-SDK/Delphi/Widgets/XPWidgetUtils.pas
blob: 9dcb1d26f9de185d3fe49c9b09a1759403a076d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
{
   Copyright 2005-2012 Sandy Barbour and Ben Supnik
   
   All rights reserved.  See license.txt for usage.
   
   X-Plane SDK Version: 2.1.1                                                  
}

UNIT XPWidgetUtils;
INTERFACE
{
   XPWidgetUtils - USAGE NOTES 
   
   The XPWidgetUtils library contains useful functions that make writing and 
   using  widgets less of a pain. 
   
   One set of functions are the widget behavior functions.  These functions 
   each add specific useful behaviors to widgets.  They can be used in two 
   manners: 
   
   1. You can add a widget behavior function to a widget as a callback proc 
   using the XPAddWidgetCallback function.  The widget will gain that 
   behavior.  Remember that the last function you add has highest priority.  
   You can use this to change or augment the behavior of an existing finished 
   widget. 
   
   2. You can call a widget function from inside your own widget function.  
   This allows you to include useful behaviors in custom-built widgets.  A 
   number of the standard widgets get their behavior from this library.  To do 
   this, call the behavior function from your function first.  If it returns 
   1, that means it handled the event and you don't need to; simply return 1.  
}

USES   XPWidgetDefs;
   {$A4}
{$IFDEF MSWINDOWS}
   {$DEFINE DELPHI}
{$ENDIF}
{___________________________________________________________________________
 * GENERAL UTILITIES
 ___________________________________________________________________________}
{
                                                                               
}



   {
    XPWidgetCreate_t
    
    This structure contains all of the parameters needed to create a wiget. It 
    is used with XPUCreateWidgets to create widgets in bulk from an array.  All 
    parameters correspond to those of XPCreateWidget except for the container 
    index. If the container index is equal to the index of a widget in the 
    array, the widget in the array passed to XPUCreateWidgets is used as the 
    parent of this widget.  Note that if you pass an index greater than your 
    own position in the array, the parent you are requesting will not exist 
    yet. If the container index is NO_PARENT, the parent widget is specified as 
    NULL. If the container index is PARAM_PARENT, the widget passed into 
    XPUCreateWidgets is used.                                                   
   }
TYPE
   XPWidgetCreate_t = RECORD
     left                     : integer;
     top                      : integer;
     right                    : integer;
     bottom                   : integer;
     visible                  : integer;
     descriptor               : Pchar;
     isRoot                   : integer;
     containerIndex           : integer;
     widgetClass              : XPWidgetClass;
   END;
   PXPWidgetCreate_t = ^XPWidgetCreate_t;

CONST
   NO_PARENT            = -1;

   PARAM_PARENT         = -2;


   {
    XPUCreateWidgets
    
    This function creates a series of widgets from a table...see 
    XPCreateWidget_t above.  Pass in an array of widget creation structures and 
    an array of widget IDs that will receive each widget. 
    
    Widget parents are specified by index into the created widget table, 
    allowing  you to create nested widget structures.  You can create multiple 
    widget trees in one table.  Generally you should create widget trees from 
    the top down. 
    
    You can also pass in a widget ID that will be used when the widget's parent 
    is listed as PARAM_PARENT; this allows you to embed widgets created with  
    XPUCreateWidgets in a widget created previously.                            
   }
   PROCEDURE XPUCreateWidgets(
                                        inWidgetDefs        : PXPWidgetCreate_t;    
                                        inCount             : integer;    
                                        inParamParent       : XPWidgetID;    
                                        ioWidgets           : PXPWidgetID);    
{$IFDEF DELPHI}
                                       cdecl; external 'XPWIDGETS.DLL';
{$ELSE}
                                       cdecl; external '';
{$ENDIF}

   {
    XPUMoveWidgetBy
    
    Simply moves a widget by an amount, +x = right, +y=up, without resizing the 
    widget.                                                                     
   }
   PROCEDURE XPUMoveWidgetBy(
                                        inWidget            : XPWidgetID;    
                                        inDeltaX            : integer;    
                                        inDeltaY            : integer);    
{$IFDEF DELPHI}
                                       cdecl; external 'XPWIDGETS.DLL';
{$ELSE}
                                       cdecl; external '';
{$ENDIF}

{___________________________________________________________________________
 * LAYOUT MANAGERS
 ___________________________________________________________________________}
{
   The layout managers are widget behavior functions for handling where 
   widgets move. Layout managers can be called from a widget function or 
   attached to a widget later.                                                 
}



   {
    XPUFixedLayout
    
    This function causes the widget to maintain its children in fixed position 
    relative to itself as it is resized.  Use this on the top level 'window' 
    widget for your window.                                                     
   }
   FUNCTION XPUFixedLayout(
                                        inMessage           : XPWidgetMessage;    
                                        inWidget            : XPWidgetID;    
                                        inParam1            : intptr_t;    
                                        inParam2            : intptr_t) : integer;    
{$IFDEF DELPHI}
                                       cdecl; external 'XPWIDGETS.DLL';
{$ELSE}
                                       cdecl; external '';
{$ENDIF}

{___________________________________________________________________________
 * WIDGET PROC BEHAVIORS
 ___________________________________________________________________________}
{
   These widget behavior functions add other useful behaviors to widgets. 
   These functions cannot be attached to a widget; they must be called from 
   your widget function.                                                       
}



   {
    XPUSelectIfNeeded
    
    This causes the widget to bring its window to the foreground if it is not 
    already.  inEatClick specifies whether clicks in the background should be 
    consumed by bringin the window to the foreground.                           
   }
   FUNCTION XPUSelectIfNeeded(
                                        inMessage           : XPWidgetMessage;    
                                        inWidget            : XPWidgetID;    
                                        inParam1            : intptr_t;    
                                        inParam2            : intptr_t;    
                                        inEatClick          : integer) : integer;    
{$IFDEF DELPHI}
                                       cdecl; external 'XPWIDGETS.DLL';
{$ELSE}
                                       cdecl; external '';
{$ENDIF}

   {
    XPUDefocusKeyboard
    
    This causes a click in the widget to send keyboard focus back to X-Plane. 
    This stops editing of any text fields, etc.                                 
   }
   FUNCTION XPUDefocusKeyboard(
                                        inMessage           : XPWidgetMessage;    
                                        inWidget            : XPWidgetID;    
                                        inParam1            : intptr_t;    
                                        inParam2            : intptr_t;    
                                        inEatClick          : integer) : integer;    
{$IFDEF DELPHI}
                                       cdecl; external 'XPWIDGETS.DLL';
{$ELSE}
                                       cdecl; external '';
{$ENDIF}

   {
    XPUDragWidget
    
    XPUDragWidget drags the widget in response to mouse clicks.  Pass in not 
    only the event, but the global coordinates of the drag region, which might 
    be a sub-region of your widget (for example, a title bar).                  
   }
   FUNCTION XPUDragWidget(
                                        inMessage           : XPWidgetMessage;    
                                        inWidget            : XPWidgetID;    
                                        inParam1            : intptr_t;    
                                        inParam2            : intptr_t;    
                                        inLeft              : integer;    
                                        inTop               : integer;    
                                        inRight             : integer;    
                                        inBottom            : integer) : integer;    
{$IFDEF DELPHI}
                                       cdecl; external 'XPWIDGETS.DLL';
{$ELSE}
                                       cdecl; external '';
{$ENDIF}

IMPLEMENTATION
END.