-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexamples.xml
executable file
·476 lines (394 loc) · 16.1 KB
/
examples.xml
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
<?xml version="1.0" encoding="UTF-8"?>
<chapter id="examples">
<title>Examples</title>
<simplesect>
<para>The <ulink url="../examples/hello.rb"><filename>hello.rb</filename></ulink>
example program is about as short as it gets for a working FXRuby program.
Use this as a starting point for understanding the basic elements of an
FXRuby program, especially if you're new to GUI programming in
general.</para>
<title>hello</title>
<screenshot><mediaobject> <imageobject><imagedata align="center"
fileref="images/hello.png" format="PNG"></imagedata></imageobject>
</mediaobject></screenshot>
</simplesect>
<simplesect>
<title>hello2</title>
<para>The <ulink url="../examples/hello2.rb"><filename>hello2.rb</filename></ulink>
example kicks it up a notch by adding an icon and tooltip to the button
from the <filename>hello.rb</filename> example.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/hello2.png" format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>scribble</title>
<para>The <ulink url="../examples/scribble.rb"><filename>scribble.rb</filename></ulink>
example is a good demonstration of how to obtain a device context for a
window (in this case, an <classname>FXCanvas</classname>) and draw into
that window. It also provides a basic demonstration of how FOX's GUI
updating mechanism can be used to automatically update the state of
widgets based on the application's state. Observe the "Clear"
button becoming enabled and disabled (greyed-out) depending on whether the
canvas is currently "dirty" or "clean", and then see how
this updating is actually handled in the code.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/scribble.png" format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>button</title>
<para>The <ulink url="../examples/button.rb"><filename>button.rb</filename></ulink>
example program shows off the various options (or button styles) for
<classname>FXButton</classname> widgets.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/button.png" format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>datatarget</title>
<para>The <ulink url="../examples/datatarget.rb"><filename>datatarget.rb</filename></ulink>
example program demonstrates most or all of the widgets that can work with
FOX data targets (that is, instances of class <classname>FXDataTarget</classname>).
Data targets are special objects that have a a string, float or integer
value associated with them, and can interact with widgets to keep the data
target's value in sync with the widget's setting. For example, you
can create a data target with a string value and attach that to a text
field widget. When the user types a new value in the text field, the data
target's value is automatically updated; and when the data
target's value is changed, the text field will update its setting.
Since a single data targets can be attached to multiple widgets, this can
be a useful way to keep multiple controls for the same logical value in
sync with each other.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/datatarget.png"
format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>dialog</title>
<para>The <ulink url="../examples/dialog.rb"><filename>dialog.rb</filename></ulink>
example is a simple program demonstrating how to construct and display
modal and non-modal dialog boxes.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/dialog.png" format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>dirlist</title>
<para>The <ulink url="../examples/dirlist.rb"><filename>dirlist.rb</filename></ulink>
example program demonstrates the <classname>FXDirList</classname> widget.
The directory list is a special kind of tree list, where each tree item
represents a directory (or folder) in the file system.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/dirlist.png" format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>iconlist</title>
<para>The <ulink url="../examples/iconlist.rb"><filename>iconlist.rb</filename></ulink>
example program demonstrates the <classname>FXIconList</classname> widget.
An icon list is a special kind of list widget that can display its
contents in one of three basic modes (details mode, small icons mode or
large icons mode). The first screenshot below shows an icon list in
details mode, while the second shows the same icon list in "big
icons" mode.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/iconlist-details.png"
format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/iconlist-bigicons.png"
format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>mditest</title>
<para>The <ulink url="../examples/mditest.rb"><filename>mditest.rb</filename></ulink>
example program demonstrates FOX's Multiple Document Interface (MDI)
capabilities, specifically the <classname>FXMDIClient</classname> and
<classname>FXMDIChild</classname> classes.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/mditest.png" format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>groupbox</title>
<para>The <ulink url="../examples/groupbox.rb"><filename>groupbox.rb</filename></ulink>
example program is a kind of "periodic table of widgets"
demonstration, FOX-style. It shows off a lot of the FOX widgets as well as
providing a good exercise of FOX's layout managers.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/groupbox.png" format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>header</title>
<para>The <ulink url="../examples/header.rb"><filename>header.rb</filename></ulink>
example program mainly demonstrates the <classname>FXHeader</classname>
widget and the <classname>FXSplitter</classname> layout manager.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/header.png" format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>image</title>
<para>The <ulink url="../examples/image.rb"><filename>image.rb</filename></ulink>
example demonstrates how to draw directly into an <classname>FXImage</classname>
object and then "draw" that image into a canvas.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/image.png" format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>splitter</title>
<para>The <ulink url="../examples/splitter.rb"><filename>splitter.rb</filename></ulink>
example demonstrates the <classname>FXSplitter</classname> layout manager.
It also provides an example of the <classname>FXTreeList</classname>
widget (on the left side of the split) and the <classname>FXMatrix</classname>
layout manager (in the middle pane).</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/splitter.png" format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>foursplit</title>
<para>The <ulink url="../examples/foursplit.rb"><filename>foursplit.rb</filename></ulink>
example program demonstrates the <classname>FX4Splitter</classname> layout
manager. This four-way split is especially useful for CAD-type programs
where it's necessary to show multiple views of the model
simultaneously.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/foursplit.png"
format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>shutter</title>
<para>The <ulink url="../examples/shutter.rb"><filename>shutter.rb</filename></ulink>
example provides a simple demonstration of the <classname>FXShutter</classname>
widget, with the skeleton of a PIM-type application. The very nice icons
used for this program are courtesy of <ulink
url="http://www.forrestwalter.com/icons">Gort's Icons</ulink>.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/shutter.png" format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>tabbook</title>
<para>The <ulink url="../examples/tabbook.rb"><filename>tabbook.rb</filename></ulink>
example exists mainly to demonstrate the <classname>FXTabBook</classname>
widget, but shows off a few other features in the process.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/tabbook.png" format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>table</title>
<para>The <ulink url="../examples/table.rb"><filename>table.rb</filename></ulink>
example features the <classname>FXTable</classname> widget, sometimes
known as a "grid" or "spreadsheet" widget in other
toolkits.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/table.png" format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>gltest</title>
<para>The <ulink url="../examples/gltest.rb"><filename>gltest.rb</filename></ulink>
example program demonstrates how to create a basic OpenGL canvas (i.e. an
instance of the <classname>FXGLCanvas</classname> widget) and draw into
it. It also demonstrates how to use timers and chores. This example
requires the Ruby/OpenGL extension, available from the Ruby Application
Archive.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/gltest.png" format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>glviewer</title>
<para>The <ulink url="../examples/glviewer.rb"><filename>glviewer.rb</filename></ulink>
example program demonstrates how to use the <classname>FXGLViewer</classname>
widget and draw various kinds of GL objects into it. It can also be used
as model for a fairly complicated FXRuby application, since it includes a
lot of typical features (like a menu bar, toolbar, status line, etc.).</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/glviewer.png" format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>imageviewer</title>
<para>Like the <ulink url="../examples/glviewer.rb"><filename>glviewer.rb</filename></ulink>
example, the <ulink url="../examples/imageviewer.rb"><filename>imageviewer.rb</filename></ulink>
can be used as a model for a typical full-featured GUI application, with a
menu bar, toolbar, and so forth. It also features the
<classname>FXImageView</classname> widget.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/imageviewer.png"
format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>dilbert</title>
<para>The <ulink url="../examples/dilbert.rb"><filename>dilbert.rb</filename></ulink>
example fetches the "Daily Dilbert" cartoon and displays it in a
window. This was just a fun little exercise for me, but it does provide a
more bare-bones example of the <classname>FXImageView</classname> widget
than that provided by the (more complicated) <filename>imageviewer.rb</filename>
example.</para>
<para>This example program requires the html-parser extension, available
from the Ruby Application Archive.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/dilbert.png" format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>raabrowser</title>
<para>The <ulink url="../examples/raabrowser.rb"><filename>raabrowser.rb</filename></ulink>
example program shows a treelist view of the current Ruby Application
Archive (RAA) contents, and product-specific information for the currently
selected product in the panel on the right. This is a good demonstration
of the following features:</para>
<itemizedlist mark="bullet">
<listitem>
<para>the <classname>FXSplitter</classname> layout manager, used to
split the left side (containing the tree list) from the right side
(containing the information panel). If the panel on the left is too
narrow to see all of its contents (especially when you've expanded
the tree) try resizing the split.</para>
</listitem>
<listitem>
<para>the <classname>FXTreeList</classname> widget, used to display
the RAA contents.</para>
</listitem>
<listitem>
<para>data targets (i.e. instances of class <classname>FXDataTarget</classname>),
which are used for the contents of the fields in the information
panel.</para>
</listitem>
</itemizedlist>
<para>This example program requires the <ulink
url="http://www.jin.gr.jp/~nahi/Ruby/SOAP4R">SOAP4R</ulink> extension.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/raabrowser.png"
format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>babelfish</title>
<para>The <ulink url="../examples/babelfish.rb"><filename>babelfish.rb</filename></ulink>
example program, like the <filename>raabrowser.rb</filename> example,
depends on the <ulink url="http://www.jin.gr.jp/~nahi/Ruby/SOAP4R">SOAP4R</ulink>
extension. Other than that it doesn't bring anything new to the table.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/babelfish.png"
format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
<simplesect>
<title>browser</title>
<para>The <ulink url="../examples/browser.rb"><filename>browser.rb</filename></ulink>
example program is mainly a "me too" for the class browser
distributed with Ruby/GTK. It's hard for me to get excited about it,
but here it is.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="images/browser.png" format="PNG" />
</imageobject>
</mediaobject>
</screenshot>
</simplesect>
</chapter>