-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex_old.html
2682 lines (2548 loc) · 97.3 KB
/
index_old.html
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
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en"><head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1"><!-- Begin Jekyll SEO tag v2.8.0 -->
<title>gtkDcoding | Simple examples of how to use GtkD to build GUI applications.</title>
<meta name="generator" content="Bluefish 2.2.13" />
<meta property="og:title" content="gtkDcoding" />
<meta name="author" content="Ron Tarrant" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="Simple examples of how to use GtkD to build GUI applications." />
<meta property="og:description" content="Simple examples of how to use GtkD to build GUI applications." />
<link rel="canonical" href="http://localhost:4000/" />
<meta property="og:url" content="http://localhost:4000/" />
<meta property="og:site_name" content="gtkDcoding" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="gtkDcoding" />
<script type="application/ld+json">
{"@context":"https://schema.org","@type":"WebSite","author":{"@type":"Person","name":"Ron Tarrant"},"description":"Simple examples of how to use GtkD to build GUI applications.","headline":"gtkDcoding","name":"gtkDcoding","url":"http://localhost:4000/"}</script>
<!-- End Jekyll SEO tag -->
<link rel="stylesheet" href="/assets/main.css">
<link rel="stylesheet" href="/css/style.css" /><link type="application/atom+xml" rel="alternate" href="http://localhost:4000/feed.xml" title="gtkDcoding" /></head>
<body><header class="site-header" role="banner">
<div class="wrapper"><a class="site-title" rel="author" href="/">gtkDcoding</a><nav class="site-nav">
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger">
<span class="menu-icon">
<svg viewBox="0 0 18 15" width="18px" height="15px">
<path d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.032C17.335,0,18,0.665,18,1.484L18,1.484z M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.032C17.335,6.031,18,6.696,18,7.516L18,7.516z M18,13.516C18,14.335,17.335,15,16.516,15H1.484 C0.665,15,0,14.335,0,13.516l0,0c0-0.82,0.665-1.483,1.484-1.483h15.032C17.335,12.031,18,12.695,18,13.516L18,13.516z"/>
</svg>
</span>
</label>
<div class="trigger"><a class="page-link" href="/about/">About</a><a class="page-link" href="/index-reverse/">Posts in Date Order</a><a class="page-link" href="/topics/">Blog Posts by Topic</a></div>
</nav></div>
</header>
<main class="page-content" aria-label="Content">
<div class="wrapper">
<div class="home"><div class="masthead-logo">
<link rel="stylesheet" href="/css/style.css" />
<link rel="stylesheet" href="/css/main.css" />
<link rel="stylesheet" href="/css/colors.css" />
<p><img src="/images/logos/logo_v11e_811x223.png" alt="image" /></p>
<!-- draw in the content of the page header that uses this layout -->
</div><!-- <h2 class="post-list-heading">Musings of a GtkD Coder</h2> -->
<div class="post-list">
<ul class="post-list">
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Friday, September 24, 2021 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0115-gtk-gio-app-open-flag.html"</a> <!-- build page URL -->
0115: GTK GIO Application Flags - Opening Files <!-- title text -->
</div>
<BR>
<div class="post-blurb">
How GTK/GIO flags that allow opening files from the command line.
</div>
<div class="topic-color_app post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/app.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Friday, September 17, 2021 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0114-gtk-gio-app-flags-and-cl-args.html"</a> <!-- build page URL -->
0114: GTK GIO Application Flags and Command Line Arguments <!-- title text -->
</div>
<BR>
<div class="post-blurb">
How GTK/GIO uses flags in the processing command line arguments.
</div>
<div class="topic-color_app post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/app.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Friday, September 10, 2021 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0113-gtk-gio-application-ids-signals.html"</a> <!-- build page URL -->
0113: GTK GIO Application IDs and Signals <!-- title text -->
</div>
<BR>
<div class="post-blurb">
Wherein we discover the role and naming conventions for application ID's and signals.
</div>
<div class="topic-color_app post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/app.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Friday, September 3, 2021 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0112-gtk-gio-application-barebones.html"</a> <!-- build page URL -->
0112: GTK GIO Applications - Introduction <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers a D-specific implementation of Scale Widget controlling placement of a graphic element.
</div>
<div class="topic-color_app post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/app.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Thursday, May 28, 2020 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0111-graphic-position-scale-button.html"</a> <!-- build page URL -->
0111: A Scale Widget to Control Graphic Placement <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers a D-specific implementation of Scale Widget controlling placement of a graphic element.
</div>
<div class="topic-color_scale post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/scale.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Sunday, May 17, 2020 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0110-scale-button.html"</a> <!-- build page URL -->
0110: Scale Button <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers a D-specific implementation of the Scale Button.
</div>
<div class="topic-color_scale post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/scale.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Wednesday, May 6, 2020 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0109-sfx-bindproperty.html"</a> <!-- build page URL -->
0109: SFX – Sync Properties Over Multiple Widgets <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers a D-specific implementation of the Observer pattern.
</div>
<div class="topic-color_sfx post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/sfx.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Saturday, April 25, 2020 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0108-snippets-iv-arrays.html"</a> <!-- build page URL -->
0108: D Snippets IV - Using Arrays in a UI Context <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers a D-specific implementation of the Observer pattern.
</div>
<div class="topic-color_dlang post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/dlang.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Tuesday, April 14, 2020 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0107-dlang-ui-snippets-iii.html"</a> <!-- build page URL -->
0107: D Snippets III - A Practical Observer <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers a D-specific implementation of the Observer pattern.
</div>
<div class="topic-color_dlang post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/dlang.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Friday, April 3, 2020 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0106-dlang-ui-snippets-ii.html"</a> <!-- build page URL -->
0106: D Snippets II - A Generic Observer <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers a generic Observer pattern implemented in D.
</div>
<div class="topic-color_dlang post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/dlang.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Monday, March 23, 2020 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0105-dlang-ui-snippets-i.html"</a> <!-- build page URL -->
0105: D Snippets I - Observer vs. Singleton <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial compares the observer and singleton patterns in practical examples.
</div>
<div class="topic-color_dlang post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/dlang.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Thursday, March 12, 2020 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0104-widget-opacity-ii.html"</a> <!-- build page URL -->
0104: Widget Opacity II <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers ghosting and disabling a Widget.
</div>
<div class="topic-color_sfx post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/sfx.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Sunday, March 1, 2020 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0103-widget-opacity.html"</a> <!-- build page URL -->
0103: SFX - Widget Opacity <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers ghosting a Widget using opacity.
</div>
<div class="topic-color_sfx post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/sfx.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Wednesday, February 19, 2020 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0102-grid-spacing.html"</a> <!-- build page URL -->
0102: Grid Column & Row Spacing <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers spacing Grid cells by row and column.
</div>
<div class="topic-color_container post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/container.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Saturday, February 8, 2020 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0101-grid-css-compliant-colors.html"</a> <!-- build page URL -->
0101: Grid with CSS 4.x Compliant Colouring <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers laying out a Grid using CSS in a GTK 4.x-compliant way.
</div>
<div class="topic-color_container post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/container.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Tuesday, January 28, 2020 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0100-sfx-button-interactions-ii-color-font-shape.html"</a> <!-- build page URL -->
0100: SFX - Button Interactions II - Color, Font, & Shape <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers interactions between buttons using CSS to change color, font and shape.
</div>
<div class="topic-color_sfx post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/sfx.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Tuesday, January 21, 2020 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0099-sfx-button-interactions-i-text-labels.html"</a> <!-- build page URL -->
0099: SFX - Button Interactions <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers interactions between buttons.
</div>
<div class="topic-color_sfx post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/sfx.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Tuesday, January 14, 2020 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0098-headerbar-more.html"</a> <!-- build page URL -->
0098: More HeaderBar Stuff <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers adding buttons to a HeaderBar and shows how to rearrange the contents of a HeaderBar.
</div>
<div class="topic-color_bar post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/bar.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Tuesday, January 7, 2020 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0097-headerbar.html"</a> <!-- build page URL -->
0097: The HeaderBar <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers the HeaderBar, a substitute for the Titlebar.
</div>
<div class="topic-color_bar post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/bar.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Tuesday, December 31, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0096-hardware-iii-keyboard-pointer.html"</a> <!-- build page URL -->
0096: Hardware III – Keyboard and Pointer <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers collecting keyboard and pointer data for a running application.
</div>
<div class="topic-color_hardware post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/hardware.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Tuesday, December 24, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0095-hardware-ii-full-monitor-report.html"</a> <!-- build page URL -->
0095: Hardware II – Full Monitor Report <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers collecting monitor data for a running application.
</div>
<div class="topic-color_hardware post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/hardware.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Tuesday, December 17, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0094-hardware-i-monitors.html"</a> <!-- build page URL -->
0094: Hardware I – Monitors <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers collecting window stats in preparation for saving a configuration file.
</div>
<div class="topic-color_hardware post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/hardware.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Tuesday, December 10, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0093-window-stats-iii-alt.html"</a> <!-- build page URL -->
0093: An Alternate Way to Gather Window Stats <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers collecting window stats in preparation for saving a configuration file.
</div>
<div class="topic-color_window post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/window.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Tuesday, December 3, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0092-window-stats-ii-size.html"</a> <!-- build page URL -->
0092: How Big is My Window <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers collecting size information about an open window.
</div>
<div class="topic-color_window post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/window.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Tuesday, November 26, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0091-window-stats-i-position.html"</a> <!-- build page URL -->
0091: Where’s My Window? <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers collecting position information about an open window.
</div>
<div class="topic-color_window post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/window.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Friday, November 22, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0090-titlebar-icons.html"</a> <!-- build page URL -->
0090: Titlebar Icons <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers putting custom icons in a titlebar.
</div>
<div class="topic-color_window post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/window.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Tuesday, November 19, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0089-nodes-viii-its-alive-2.html"</a> <!-- build page URL -->
0089: Nodes-n-noodles VIII – It’s Alive! (2) <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers animating a node with the mouse for a node-n-noodles demo.
</div>
<div class="topic-color_nodes post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/nodes.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Friday, November 15, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0088-nodes-vii-its-alive.html"</a> <!-- build page URL -->
0088: Nodes-n-noodles VII – It’s Alive! <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers animating a node with the mouse for a node-n-noodles demo.
</div>
<div class="topic-color_nodes post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/nodes.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Tuesday, November 12, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0087-nodes-vi-hotspots.html"</a> <!-- build page URL -->
0087: Nodes-n-noodles VI – Adding Hot Spots <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers drawing node host spots for a node-n-noodles demo.
</div>
<div class="topic-color_nodes post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/nodes.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Friday, November 8, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0086-nodes-v-node-drawing-routines.html"</a> <!-- build page URL -->
0086: Nodes-n-noodles V - The Drawing Routines <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers drawing routines for a node-n-noodles demo.
</div>
<div class="topic-color_nodes post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/nodes.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Tuesday, November 5, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0085-nodes-iv-node-drawing.html"</a> <!-- build page URL -->
0085: Nodes-n-noodles, Part IV – Drawing a Node <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers drawing a basic node for a node-n-noodles demo.
</div>
<div class="topic-color_nodes post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/nodes.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Friday, November 1, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0084-notebook-viii-child-widgets.html"</a> <!-- build page URL -->
0084: Notebook VIII – Child Widgets <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers accessing child widgets in a Notebook.
</div>
<div class="topic-color_container post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/container.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Tuesday, October 29, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0083-notebook-vii-notebook-all-signals.html"</a> <!-- build page URL -->
0083: Notebook VII – A Snoot Full of Signals <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers Notebook signals.
</div>
<div class="topic-color_container post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/container.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Friday, October 25, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0082-notebook-vi-add-remove-tabs.html"</a> <!-- build page URL -->
0082: Notebook VI – Adding and Removing Tabs <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers adding and removing tabs from a Notebook.
</div>
<div class="topic-color_container post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/container.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Tuesday, October 22, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0081-notebook-v-custom-tabs-iii.html"</a> <!-- build page URL -->
0081: Notebook V – Customized Tabs Part 3 <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers customizing how tabs look.
</div>
<div class="topic-color_container post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/container.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Friday, October 18, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0080-notebook-iv-custom-tabs-ii.html"</a> <!-- build page URL -->
0080: Notebook VI - Customized Tabs, Part 2 <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial is part two of customizing how tabs look.
</div>
<div class="topic-color_container post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/container.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Tuesday, October 15, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0079-notebook-iii-custom-tabs-i.html"</a> <!-- build page URL -->
0079: Notebook III – Customized Tabs, Part I <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers customizing how tabs look.
</div>
<div class="topic-color_container post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/container.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Friday, October 11, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0078-notebook-ii-multiple-tabs.html"</a> <!-- build page URL -->
0078: Notebook II – Multiple Tabs, Reordering & Image Tabs <!-- title text -->
</div>
<BR>
<div class="post-blurb">
This GTK Tutorial covers using multiple tabs in a Notebook.
</div>
<div class="topic-color_container post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/container.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Tuesday, October 8, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0077-notebook-i-basics.html"</a> <!-- build page URL -->
0077: Notebook I – The Basics <!-- title text -->
</div>
<BR>
<div class="post-blurb">
GTK Tutorial covering the basics of using a Notebook.
</div>
<div class="topic-color_container post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/container.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Friday, October 4, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0076-nodes-iii-noodles-and-mouse-clicks.html"</a> <!-- build page URL -->
0076: Nodes-n-noodles III – Noodles and Mouse Clicks <!-- title text -->
</div>
<BR>
<div class="post-blurb">
GTK Tutorial covering drawing a cubic Bezier curve on a DrawingArea.
</div>
<div class="topic-color_nodes post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/nodes.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Tuesday, October 1, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0075-nodes-ii-mouse-noodle.html"</a> <!-- build page URL -->
0075: Nodes-n-noodles II – Mouse Noodling <!-- title text -->
</div>
<BR>
<div class="post-blurb">
GTK Tutorial covering drawing a cubic Bezier curve on a DrawingArea.
</div>
<div class="topic-color_nodes post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/nodes.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Friday, September 27, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0074-nodes-i-doodle-a-noodle.html"</a> <!-- build page URL -->
0074: Nodes-n-noodles I – Doodle a Noodle <!-- title text -->
</div>
<BR>
<div class="post-blurb">
GTK Tutorial covering drawing a cubic Bezier curve on a DrawingArea.
</div>
<div class="topic-color_nodes post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/nodes.png"> <!-- topic image -->
</div>
</div>
</li>
<li><div class="post-item">
<div class="post-info">
<div class="post-topic-date">
Tuesday, September 24, 2019 <!-- date of post -->
</div>
<div class="post-link">
<a href="/posts/0073-frame-part-ii.html"</a> <!-- build page URL -->
0073: The Frame, Part II - Shadows & CSS <!-- title text -->
</div>
<BR>
<div class="post-blurb">
GTK Tutorial - Shadows, CSS, and the Frame
</div>
<div class="topic-color_container post-color-fade"> <!-- pulls colors from colors.css, position from main.css -->
</div>
</div>
<div class="post-topic-icon">
<img class="topic-icon" src="/images/topics/container.png"> <!-- topic image -->
</div>
</div>
</li>