tictactoe-randall 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/bin/Board.rb +305 -0
- data/bin/ModalWindow.rb +25 -0
- data/bin/blank.jpg +0 -0
- data/bin/glade/Board.glade +690 -0
- data/bin/glade/ModalWindow.glade +63 -0
- data/bin/o.jpg +0 -0
- data/bin/player.rb +32 -0
- data/bin/tictactoe.rb +492 -0
- data/bin/x.jpg +0 -0
- data/tictactoe_randall +13 -0
- metadata +104 -0
@@ -0,0 +1,690 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<interface>
|
3
|
+
<requires lib="gtk+" version="2.16"/>
|
4
|
+
<!-- interface-naming-policy project-wide -->
|
5
|
+
<object class="GtkWindow" id="window1">
|
6
|
+
<property name="visible">True</property>
|
7
|
+
<property name="title" translatable="yes">Tic Tac Toe</property>
|
8
|
+
<property name="modal">True</property>
|
9
|
+
<property name="window_position">center-always</property>
|
10
|
+
<property name="default_width">500</property>
|
11
|
+
<property name="default_height">500</property>
|
12
|
+
<signal name="destroy" handler="destroy_window"/>
|
13
|
+
<child>
|
14
|
+
<object class="GtkVBox" id="vbox1">
|
15
|
+
<property name="visible">True</property>
|
16
|
+
<property name="orientation">vertical</property>
|
17
|
+
<child>
|
18
|
+
<object class="GtkMenuBar" id="menubar1">
|
19
|
+
<property name="visible">True</property>
|
20
|
+
<child>
|
21
|
+
<object class="GtkMenuItem" id="menuitem1">
|
22
|
+
<property name="visible">True</property>
|
23
|
+
<property name="label" translatable="yes">_Game</property>
|
24
|
+
<property name="use_underline">True</property>
|
25
|
+
<child type="submenu">
|
26
|
+
<object class="GtkMenu" id="menu1">
|
27
|
+
<property name="visible">True</property>
|
28
|
+
<child>
|
29
|
+
<object class="GtkImageMenuItem" id="imagemenuitem1">
|
30
|
+
<property name="label">gtk-new</property>
|
31
|
+
<property name="visible">True</property>
|
32
|
+
<property name="use_underline">True</property>
|
33
|
+
<property name="use_stock">True</property>
|
34
|
+
</object>
|
35
|
+
</child>
|
36
|
+
<child>
|
37
|
+
<object class="GtkImageMenuItem" id="imagemenuitem2">
|
38
|
+
<property name="label">Reset Score</property>
|
39
|
+
<property name="visible">True</property>
|
40
|
+
<property name="image">image10</property>
|
41
|
+
<property name="use_stock">False</property>
|
42
|
+
</object>
|
43
|
+
</child>
|
44
|
+
<child>
|
45
|
+
<object class="GtkSeparatorMenuItem" id="separatormenuitem1">
|
46
|
+
<property name="visible">True</property>
|
47
|
+
</object>
|
48
|
+
</child>
|
49
|
+
<child>
|
50
|
+
<object class="GtkImageMenuItem" id="imagemenuitem5">
|
51
|
+
<property name="label">gtk-quit</property>
|
52
|
+
<property name="visible">True</property>
|
53
|
+
<property name="use_underline">True</property>
|
54
|
+
<property name="use_stock">True</property>
|
55
|
+
</object>
|
56
|
+
</child>
|
57
|
+
</object>
|
58
|
+
</child>
|
59
|
+
</object>
|
60
|
+
</child>
|
61
|
+
<child>
|
62
|
+
<object class="GtkMenuItem" id="menuitem2">
|
63
|
+
<property name="visible">True</property>
|
64
|
+
<property name="label" translatable="yes">_Edit</property>
|
65
|
+
<property name="use_underline">True</property>
|
66
|
+
<child type="submenu">
|
67
|
+
<object class="GtkMenu" id="menu2">
|
68
|
+
<property name="visible">True</property>
|
69
|
+
<child>
|
70
|
+
<object class="GtkImageMenuItem" id="imagemenuitem6">
|
71
|
+
<property name="label">Undo</property>
|
72
|
+
<property name="visible">True</property>
|
73
|
+
<property name="image">image11</property>
|
74
|
+
<property name="use_stock">False</property>
|
75
|
+
</object>
|
76
|
+
</child>
|
77
|
+
</object>
|
78
|
+
</child>
|
79
|
+
</object>
|
80
|
+
</child>
|
81
|
+
<child>
|
82
|
+
<object class="GtkMenuItem" id="menuitem4">
|
83
|
+
<property name="visible">True</property>
|
84
|
+
<property name="label" translatable="yes">_Help</property>
|
85
|
+
<property name="use_underline">True</property>
|
86
|
+
<child type="submenu">
|
87
|
+
<object class="GtkMenu" id="menu3">
|
88
|
+
<property name="visible">True</property>
|
89
|
+
<child>
|
90
|
+
<object class="GtkImageMenuItem" id="imagemenuitem10">
|
91
|
+
<property name="label">gtk-about</property>
|
92
|
+
<property name="visible">True</property>
|
93
|
+
<property name="use_underline">True</property>
|
94
|
+
<property name="use_stock">True</property>
|
95
|
+
</object>
|
96
|
+
</child>
|
97
|
+
</object>
|
98
|
+
</child>
|
99
|
+
</object>
|
100
|
+
</child>
|
101
|
+
</object>
|
102
|
+
<packing>
|
103
|
+
<property name="expand">False</property>
|
104
|
+
<property name="position">0</property>
|
105
|
+
</packing>
|
106
|
+
</child>
|
107
|
+
<child>
|
108
|
+
<object class="GtkHBox" id="hbox1">
|
109
|
+
<property name="visible">True</property>
|
110
|
+
<child>
|
111
|
+
<object class="GtkTable" id="table1">
|
112
|
+
<property name="visible">True</property>
|
113
|
+
<property name="n_rows">3</property>
|
114
|
+
<child>
|
115
|
+
<object class="GtkVPaned" id="vpaned1">
|
116
|
+
<property name="visible">True</property>
|
117
|
+
<property name="can_focus">True</property>
|
118
|
+
<property name="orientation">vertical</property>
|
119
|
+
<child>
|
120
|
+
<object class="GtkTable" id="table2">
|
121
|
+
<property name="visible">True</property>
|
122
|
+
<property name="n_columns">3</property>
|
123
|
+
<child>
|
124
|
+
<object class="GtkImage" id="image1">
|
125
|
+
<property name="visible">True</property>
|
126
|
+
<property name="stock">gtk-missing-image</property>
|
127
|
+
</object>
|
128
|
+
</child>
|
129
|
+
<child>
|
130
|
+
<object class="GtkImage" id="image2">
|
131
|
+
<property name="visible">True</property>
|
132
|
+
<property name="stock">gtk-missing-image</property>
|
133
|
+
</object>
|
134
|
+
<packing>
|
135
|
+
<property name="left_attach">1</property>
|
136
|
+
<property name="right_attach">2</property>
|
137
|
+
</packing>
|
138
|
+
</child>
|
139
|
+
<child>
|
140
|
+
<object class="GtkImage" id="image3">
|
141
|
+
<property name="visible">True</property>
|
142
|
+
<property name="stock">gtk-missing-image</property>
|
143
|
+
</object>
|
144
|
+
<packing>
|
145
|
+
<property name="left_attach">2</property>
|
146
|
+
<property name="right_attach">3</property>
|
147
|
+
</packing>
|
148
|
+
</child>
|
149
|
+
</object>
|
150
|
+
<packing>
|
151
|
+
<property name="resize">False</property>
|
152
|
+
<property name="shrink">True</property>
|
153
|
+
</packing>
|
154
|
+
</child>
|
155
|
+
<child>
|
156
|
+
<object class="GtkHButtonBox" id="hbuttonbox1">
|
157
|
+
<property name="visible">True</property>
|
158
|
+
<child>
|
159
|
+
<object class="GtkButton" id="button1">
|
160
|
+
<property name="label" translatable="yes">Square 1</property>
|
161
|
+
<property name="visible">True</property>
|
162
|
+
<property name="can_focus">True</property>
|
163
|
+
<property name="receives_default">True</property>
|
164
|
+
</object>
|
165
|
+
<packing>
|
166
|
+
<property name="expand">False</property>
|
167
|
+
<property name="fill">False</property>
|
168
|
+
<property name="position">0</property>
|
169
|
+
</packing>
|
170
|
+
</child>
|
171
|
+
<child>
|
172
|
+
<object class="GtkButton" id="button2">
|
173
|
+
<property name="label" translatable="yes">Square 2</property>
|
174
|
+
<property name="visible">True</property>
|
175
|
+
<property name="can_focus">True</property>
|
176
|
+
<property name="receives_default">True</property>
|
177
|
+
</object>
|
178
|
+
<packing>
|
179
|
+
<property name="expand">False</property>
|
180
|
+
<property name="fill">False</property>
|
181
|
+
<property name="position">1</property>
|
182
|
+
</packing>
|
183
|
+
</child>
|
184
|
+
<child>
|
185
|
+
<object class="GtkButton" id="button3">
|
186
|
+
<property name="label" translatable="yes">Square 3</property>
|
187
|
+
<property name="visible">True</property>
|
188
|
+
<property name="can_focus">True</property>
|
189
|
+
<property name="receives_default">True</property>
|
190
|
+
</object>
|
191
|
+
<packing>
|
192
|
+
<property name="expand">False</property>
|
193
|
+
<property name="fill">False</property>
|
194
|
+
<property name="position">2</property>
|
195
|
+
</packing>
|
196
|
+
</child>
|
197
|
+
</object>
|
198
|
+
<packing>
|
199
|
+
<property name="resize">False</property>
|
200
|
+
<property name="shrink">True</property>
|
201
|
+
</packing>
|
202
|
+
</child>
|
203
|
+
</object>
|
204
|
+
</child>
|
205
|
+
<child>
|
206
|
+
<object class="GtkVPaned" id="vpaned2">
|
207
|
+
<property name="visible">True</property>
|
208
|
+
<property name="can_focus">True</property>
|
209
|
+
<property name="orientation">vertical</property>
|
210
|
+
<child>
|
211
|
+
<object class="GtkTable" id="table3">
|
212
|
+
<property name="visible">True</property>
|
213
|
+
<property name="n_columns">3</property>
|
214
|
+
<child>
|
215
|
+
<object class="GtkImage" id="image4">
|
216
|
+
<property name="visible">True</property>
|
217
|
+
<property name="stock">gtk-missing-image</property>
|
218
|
+
</object>
|
219
|
+
</child>
|
220
|
+
<child>
|
221
|
+
<object class="GtkImage" id="image5">
|
222
|
+
<property name="visible">True</property>
|
223
|
+
<property name="stock">gtk-missing-image</property>
|
224
|
+
</object>
|
225
|
+
<packing>
|
226
|
+
<property name="left_attach">1</property>
|
227
|
+
<property name="right_attach">2</property>
|
228
|
+
</packing>
|
229
|
+
</child>
|
230
|
+
<child>
|
231
|
+
<object class="GtkImage" id="image6">
|
232
|
+
<property name="visible">True</property>
|
233
|
+
<property name="stock">gtk-missing-image</property>
|
234
|
+
</object>
|
235
|
+
<packing>
|
236
|
+
<property name="left_attach">2</property>
|
237
|
+
<property name="right_attach">3</property>
|
238
|
+
</packing>
|
239
|
+
</child>
|
240
|
+
</object>
|
241
|
+
<packing>
|
242
|
+
<property name="resize">False</property>
|
243
|
+
<property name="shrink">True</property>
|
244
|
+
</packing>
|
245
|
+
</child>
|
246
|
+
<child>
|
247
|
+
<object class="GtkHButtonBox" id="hbuttonbox2">
|
248
|
+
<property name="visible">True</property>
|
249
|
+
<child>
|
250
|
+
<object class="GtkButton" id="button4">
|
251
|
+
<property name="label" translatable="yes">Square 4</property>
|
252
|
+
<property name="visible">True</property>
|
253
|
+
<property name="can_focus">True</property>
|
254
|
+
<property name="receives_default">True</property>
|
255
|
+
</object>
|
256
|
+
<packing>
|
257
|
+
<property name="expand">False</property>
|
258
|
+
<property name="fill">False</property>
|
259
|
+
<property name="position">0</property>
|
260
|
+
</packing>
|
261
|
+
</child>
|
262
|
+
<child>
|
263
|
+
<object class="GtkButton" id="button5">
|
264
|
+
<property name="label" translatable="yes">Square 5</property>
|
265
|
+
<property name="visible">True</property>
|
266
|
+
<property name="can_focus">True</property>
|
267
|
+
<property name="receives_default">True</property>
|
268
|
+
</object>
|
269
|
+
<packing>
|
270
|
+
<property name="expand">False</property>
|
271
|
+
<property name="fill">False</property>
|
272
|
+
<property name="position">1</property>
|
273
|
+
</packing>
|
274
|
+
</child>
|
275
|
+
<child>
|
276
|
+
<object class="GtkButton" id="button6">
|
277
|
+
<property name="label" translatable="yes">Square 6</property>
|
278
|
+
<property name="visible">True</property>
|
279
|
+
<property name="can_focus">True</property>
|
280
|
+
<property name="receives_default">True</property>
|
281
|
+
</object>
|
282
|
+
<packing>
|
283
|
+
<property name="expand">False</property>
|
284
|
+
<property name="fill">False</property>
|
285
|
+
<property name="position">2</property>
|
286
|
+
</packing>
|
287
|
+
</child>
|
288
|
+
</object>
|
289
|
+
<packing>
|
290
|
+
<property name="resize">False</property>
|
291
|
+
<property name="shrink">True</property>
|
292
|
+
</packing>
|
293
|
+
</child>
|
294
|
+
</object>
|
295
|
+
<packing>
|
296
|
+
<property name="top_attach">1</property>
|
297
|
+
<property name="bottom_attach">2</property>
|
298
|
+
</packing>
|
299
|
+
</child>
|
300
|
+
<child>
|
301
|
+
<object class="GtkVPaned" id="vpaned3">
|
302
|
+
<property name="visible">True</property>
|
303
|
+
<property name="can_focus">True</property>
|
304
|
+
<property name="orientation">vertical</property>
|
305
|
+
<child>
|
306
|
+
<object class="GtkTable" id="table4">
|
307
|
+
<property name="visible">True</property>
|
308
|
+
<property name="n_columns">3</property>
|
309
|
+
<child>
|
310
|
+
<object class="GtkImage" id="image7">
|
311
|
+
<property name="visible">True</property>
|
312
|
+
<property name="stock">gtk-missing-image</property>
|
313
|
+
</object>
|
314
|
+
</child>
|
315
|
+
<child>
|
316
|
+
<object class="GtkImage" id="image8">
|
317
|
+
<property name="visible">True</property>
|
318
|
+
<property name="stock">gtk-missing-image</property>
|
319
|
+
</object>
|
320
|
+
<packing>
|
321
|
+
<property name="left_attach">1</property>
|
322
|
+
<property name="right_attach">2</property>
|
323
|
+
</packing>
|
324
|
+
</child>
|
325
|
+
<child>
|
326
|
+
<object class="GtkImage" id="image9">
|
327
|
+
<property name="visible">True</property>
|
328
|
+
<property name="stock">gtk-missing-image</property>
|
329
|
+
</object>
|
330
|
+
<packing>
|
331
|
+
<property name="left_attach">2</property>
|
332
|
+
<property name="right_attach">3</property>
|
333
|
+
</packing>
|
334
|
+
</child>
|
335
|
+
</object>
|
336
|
+
<packing>
|
337
|
+
<property name="resize">False</property>
|
338
|
+
<property name="shrink">True</property>
|
339
|
+
</packing>
|
340
|
+
</child>
|
341
|
+
<child>
|
342
|
+
<object class="GtkHButtonBox" id="hbuttonbox3">
|
343
|
+
<property name="visible">True</property>
|
344
|
+
<child>
|
345
|
+
<object class="GtkButton" id="button7">
|
346
|
+
<property name="label" translatable="yes">Square 7</property>
|
347
|
+
<property name="visible">True</property>
|
348
|
+
<property name="can_focus">True</property>
|
349
|
+
<property name="receives_default">True</property>
|
350
|
+
</object>
|
351
|
+
<packing>
|
352
|
+
<property name="expand">False</property>
|
353
|
+
<property name="fill">False</property>
|
354
|
+
<property name="position">0</property>
|
355
|
+
</packing>
|
356
|
+
</child>
|
357
|
+
<child>
|
358
|
+
<object class="GtkButton" id="button8">
|
359
|
+
<property name="label" translatable="yes">Square 8</property>
|
360
|
+
<property name="visible">True</property>
|
361
|
+
<property name="can_focus">True</property>
|
362
|
+
<property name="receives_default">True</property>
|
363
|
+
</object>
|
364
|
+
<packing>
|
365
|
+
<property name="expand">False</property>
|
366
|
+
<property name="fill">False</property>
|
367
|
+
<property name="position">1</property>
|
368
|
+
</packing>
|
369
|
+
</child>
|
370
|
+
<child>
|
371
|
+
<object class="GtkButton" id="button9">
|
372
|
+
<property name="label" translatable="yes">Square 9</property>
|
373
|
+
<property name="visible">True</property>
|
374
|
+
<property name="can_focus">True</property>
|
375
|
+
<property name="receives_default">True</property>
|
376
|
+
</object>
|
377
|
+
<packing>
|
378
|
+
<property name="expand">False</property>
|
379
|
+
<property name="fill">False</property>
|
380
|
+
<property name="position">2</property>
|
381
|
+
</packing>
|
382
|
+
</child>
|
383
|
+
</object>
|
384
|
+
<packing>
|
385
|
+
<property name="resize">False</property>
|
386
|
+
<property name="shrink">True</property>
|
387
|
+
</packing>
|
388
|
+
</child>
|
389
|
+
</object>
|
390
|
+
<packing>
|
391
|
+
<property name="top_attach">2</property>
|
392
|
+
<property name="bottom_attach">3</property>
|
393
|
+
</packing>
|
394
|
+
</child>
|
395
|
+
</object>
|
396
|
+
<packing>
|
397
|
+
<property name="position">0</property>
|
398
|
+
</packing>
|
399
|
+
</child>
|
400
|
+
<child>
|
401
|
+
<object class="GtkVBox" id="vbox3">
|
402
|
+
<property name="visible">True</property>
|
403
|
+
<property name="orientation">vertical</property>
|
404
|
+
<child>
|
405
|
+
<object class="GtkVPaned" id="vpaned4">
|
406
|
+
<property name="visible">True</property>
|
407
|
+
<property name="can_focus">True</property>
|
408
|
+
<property name="orientation">vertical</property>
|
409
|
+
<child>
|
410
|
+
<object class="GtkLabel" id="label1">
|
411
|
+
<property name="visible">True</property>
|
412
|
+
<property name="label" translatable="yes">label</property>
|
413
|
+
</object>
|
414
|
+
<packing>
|
415
|
+
<property name="resize">False</property>
|
416
|
+
<property name="shrink">True</property>
|
417
|
+
</packing>
|
418
|
+
</child>
|
419
|
+
<child>
|
420
|
+
<object class="GtkHBox" id="hbox2">
|
421
|
+
<property name="visible">True</property>
|
422
|
+
<child>
|
423
|
+
<object class="GtkVPaned" id="vpaned5">
|
424
|
+
<property name="visible">True</property>
|
425
|
+
<property name="can_focus">True</property>
|
426
|
+
<property name="orientation">vertical</property>
|
427
|
+
<child>
|
428
|
+
<object class="GtkLabel" id="label2">
|
429
|
+
<property name="visible">True</property>
|
430
|
+
<property name="label" translatable="yes">label</property>
|
431
|
+
</object>
|
432
|
+
<packing>
|
433
|
+
<property name="resize">False</property>
|
434
|
+
<property name="shrink">True</property>
|
435
|
+
</packing>
|
436
|
+
</child>
|
437
|
+
<child>
|
438
|
+
<object class="GtkLabel" id="label6">
|
439
|
+
<property name="visible">True</property>
|
440
|
+
<property name="label" translatable="yes">label</property>
|
441
|
+
</object>
|
442
|
+
<packing>
|
443
|
+
<property name="resize">True</property>
|
444
|
+
<property name="shrink">True</property>
|
445
|
+
</packing>
|
446
|
+
</child>
|
447
|
+
</object>
|
448
|
+
<packing>
|
449
|
+
<property name="position">0</property>
|
450
|
+
</packing>
|
451
|
+
</child>
|
452
|
+
<child>
|
453
|
+
<object class="GtkVPaned" id="vpaned6">
|
454
|
+
<property name="visible">True</property>
|
455
|
+
<property name="can_focus">True</property>
|
456
|
+
<property name="orientation">vertical</property>
|
457
|
+
<child>
|
458
|
+
<object class="GtkLabel" id="label3">
|
459
|
+
<property name="visible">True</property>
|
460
|
+
<property name="label" translatable="yes">label</property>
|
461
|
+
</object>
|
462
|
+
<packing>
|
463
|
+
<property name="resize">False</property>
|
464
|
+
<property name="shrink">True</property>
|
465
|
+
</packing>
|
466
|
+
</child>
|
467
|
+
<child>
|
468
|
+
<object class="GtkLabel" id="label7">
|
469
|
+
<property name="visible">True</property>
|
470
|
+
<property name="label" translatable="yes">label</property>
|
471
|
+
</object>
|
472
|
+
<packing>
|
473
|
+
<property name="resize">True</property>
|
474
|
+
<property name="shrink">True</property>
|
475
|
+
</packing>
|
476
|
+
</child>
|
477
|
+
</object>
|
478
|
+
<packing>
|
479
|
+
<property name="position">0</property>
|
480
|
+
</packing>
|
481
|
+
</child>
|
482
|
+
<child>
|
483
|
+
<object class="GtkVPaned" id="vpaned7">
|
484
|
+
<property name="visible">True</property>
|
485
|
+
<property name="can_focus">True</property>
|
486
|
+
<property name="orientation">vertical</property>
|
487
|
+
<child>
|
488
|
+
<object class="GtkLabel" id="label4">
|
489
|
+
<property name="visible">True</property>
|
490
|
+
<property name="label" translatable="yes">label</property>
|
491
|
+
</object>
|
492
|
+
<packing>
|
493
|
+
<property name="resize">False</property>
|
494
|
+
<property name="shrink">True</property>
|
495
|
+
</packing>
|
496
|
+
</child>
|
497
|
+
<child>
|
498
|
+
<object class="GtkLabel" id="label8">
|
499
|
+
<property name="visible">True</property>
|
500
|
+
<property name="label" translatable="yes">label</property>
|
501
|
+
</object>
|
502
|
+
<packing>
|
503
|
+
<property name="resize">True</property>
|
504
|
+
<property name="shrink">True</property>
|
505
|
+
</packing>
|
506
|
+
</child>
|
507
|
+
</object>
|
508
|
+
<packing>
|
509
|
+
<property name="position">0</property>
|
510
|
+
</packing>
|
511
|
+
</child>
|
512
|
+
</object>
|
513
|
+
<packing>
|
514
|
+
<property name="resize">True</property>
|
515
|
+
<property name="shrink">True</property>
|
516
|
+
</packing>
|
517
|
+
</child>
|
518
|
+
</object>
|
519
|
+
<packing>
|
520
|
+
<property name="position">0</property>
|
521
|
+
</packing>
|
522
|
+
</child>
|
523
|
+
<child>
|
524
|
+
<object class="GtkHSeparator" id="hseparator1">
|
525
|
+
<property name="visible">True</property>
|
526
|
+
</object>
|
527
|
+
<packing>
|
528
|
+
<property name="expand">False</property>
|
529
|
+
<property name="position">1</property>
|
530
|
+
</packing>
|
531
|
+
</child>
|
532
|
+
<child>
|
533
|
+
<object class="GtkVBox" id="vbox4">
|
534
|
+
<property name="visible">True</property>
|
535
|
+
<property name="orientation">vertical</property>
|
536
|
+
<child>
|
537
|
+
<object class="GtkLabel" id="label9">
|
538
|
+
<property name="visible">True</property>
|
539
|
+
<property name="label" translatable="yes">Opponent</property>
|
540
|
+
</object>
|
541
|
+
<packing>
|
542
|
+
<property name="position">0</property>
|
543
|
+
</packing>
|
544
|
+
</child>
|
545
|
+
<child>
|
546
|
+
<object class="GtkRadioButton" id="radiobutton1">
|
547
|
+
<property name="label" translatable="yes">Human</property>
|
548
|
+
<property name="visible">True</property>
|
549
|
+
<property name="can_focus">True</property>
|
550
|
+
<property name="receives_default">False</property>
|
551
|
+
<property name="yalign">0.50999999046325684</property>
|
552
|
+
<property name="active">True</property>
|
553
|
+
<property name="draw_indicator">True</property>
|
554
|
+
</object>
|
555
|
+
<packing>
|
556
|
+
<property name="position">1</property>
|
557
|
+
</packing>
|
558
|
+
</child>
|
559
|
+
<child>
|
560
|
+
<object class="GtkRadioButton" id="radiobutton2">
|
561
|
+
<property name="label" translatable="yes">Computer</property>
|
562
|
+
<property name="visible">True</property>
|
563
|
+
<property name="can_focus">True</property>
|
564
|
+
<property name="receives_default">False</property>
|
565
|
+
<property name="draw_indicator">True</property>
|
566
|
+
<property name="group">radiobutton1</property>
|
567
|
+
</object>
|
568
|
+
<packing>
|
569
|
+
<property name="position">2</property>
|
570
|
+
</packing>
|
571
|
+
</child>
|
572
|
+
</object>
|
573
|
+
<packing>
|
574
|
+
<property name="position">2</property>
|
575
|
+
</packing>
|
576
|
+
</child>
|
577
|
+
<child>
|
578
|
+
<object class="GtkHSeparator" id="hseparator2">
|
579
|
+
<property name="visible">True</property>
|
580
|
+
</object>
|
581
|
+
<packing>
|
582
|
+
<property name="expand">False</property>
|
583
|
+
<property name="position">3</property>
|
584
|
+
</packing>
|
585
|
+
</child>
|
586
|
+
<child>
|
587
|
+
<object class="GtkVPaned" id="vpaned8">
|
588
|
+
<property name="visible">True</property>
|
589
|
+
<property name="can_focus">True</property>
|
590
|
+
<property name="orientation">vertical</property>
|
591
|
+
<child>
|
592
|
+
<object class="GtkLabel" id="label10">
|
593
|
+
<property name="visible">True</property>
|
594
|
+
<property name="label" translatable="yes">Difficulty</property>
|
595
|
+
</object>
|
596
|
+
<packing>
|
597
|
+
<property name="resize">False</property>
|
598
|
+
<property name="shrink">True</property>
|
599
|
+
</packing>
|
600
|
+
</child>
|
601
|
+
<child>
|
602
|
+
<object class="GtkHBox" id="hbox4">
|
603
|
+
<property name="visible">True</property>
|
604
|
+
<child>
|
605
|
+
<object class="GtkCheckButton" id="checkbutton1">
|
606
|
+
<property name="label" translatable="yes">Easy</property>
|
607
|
+
<property name="visible">True</property>
|
608
|
+
<property name="can_focus">True</property>
|
609
|
+
<property name="receives_default">False</property>
|
610
|
+
<property name="draw_indicator">True</property>
|
611
|
+
</object>
|
612
|
+
<packing>
|
613
|
+
<property name="position">0</property>
|
614
|
+
</packing>
|
615
|
+
</child>
|
616
|
+
<child>
|
617
|
+
<object class="GtkCheckButton" id="checkbutton2">
|
618
|
+
<property name="label" translatable="yes">Normal</property>
|
619
|
+
<property name="visible">True</property>
|
620
|
+
<property name="can_focus">True</property>
|
621
|
+
<property name="receives_default">False</property>
|
622
|
+
<property name="draw_indicator">True</property>
|
623
|
+
</object>
|
624
|
+
<packing>
|
625
|
+
<property name="position">1</property>
|
626
|
+
</packing>
|
627
|
+
</child>
|
628
|
+
<child>
|
629
|
+
<object class="GtkCheckButton" id="checkbutton3">
|
630
|
+
<property name="label" translatable="yes">Hard</property>
|
631
|
+
<property name="visible">True</property>
|
632
|
+
<property name="can_focus">True</property>
|
633
|
+
<property name="receives_default">False</property>
|
634
|
+
<property name="draw_indicator">True</property>
|
635
|
+
</object>
|
636
|
+
<packing>
|
637
|
+
<property name="position">2</property>
|
638
|
+
</packing>
|
639
|
+
</child>
|
640
|
+
</object>
|
641
|
+
<packing>
|
642
|
+
<property name="resize">True</property>
|
643
|
+
<property name="shrink">True</property>
|
644
|
+
</packing>
|
645
|
+
</child>
|
646
|
+
</object>
|
647
|
+
<packing>
|
648
|
+
<property name="position">4</property>
|
649
|
+
</packing>
|
650
|
+
</child>
|
651
|
+
</object>
|
652
|
+
<packing>
|
653
|
+
<property name="position">1</property>
|
654
|
+
</packing>
|
655
|
+
</child>
|
656
|
+
</object>
|
657
|
+
<packing>
|
658
|
+
<property name="position">1</property>
|
659
|
+
</packing>
|
660
|
+
</child>
|
661
|
+
<child>
|
662
|
+
<object class="GtkVBox" id="vbox2">
|
663
|
+
<property name="visible">True</property>
|
664
|
+
<property name="orientation">vertical</property>
|
665
|
+
<child>
|
666
|
+
<object class="GtkLabel" id="label5">
|
667
|
+
<property name="visible">True</property>
|
668
|
+
<property name="label" translatable="yes">label</property>
|
669
|
+
</object>
|
670
|
+
<packing>
|
671
|
+
<property name="position">0</property>
|
672
|
+
</packing>
|
673
|
+
</child>
|
674
|
+
</object>
|
675
|
+
<packing>
|
676
|
+
<property name="position">2</property>
|
677
|
+
</packing>
|
678
|
+
</child>
|
679
|
+
</object>
|
680
|
+
</child>
|
681
|
+
</object>
|
682
|
+
<object class="GtkImage" id="image10">
|
683
|
+
<property name="visible">True</property>
|
684
|
+
<property name="stock">gtk-go-down</property>
|
685
|
+
</object>
|
686
|
+
<object class="GtkImage" id="image11">
|
687
|
+
<property name="visible">True</property>
|
688
|
+
<property name="stock">gtk-undo</property>
|
689
|
+
</object>
|
690
|
+
</interface>
|