-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathba63gui.c
727 lines (567 loc) · 21.2 KB
/
ba63gui.c
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
/* ba63gui --- simple GTK+ GUI for BA63 display 2014-06-28 */
/* Copyright (c) 2014 John Honniball, Froods Software Development */
#include <gtk/gtk.h>
#include <stdlib.h>
#include <string.h>
#include <termios.h>
#include <fcntl.h>
#define ESC (0x1b)
#define MAXMSGS (6)
#define MAXCOLS (20) // Display has 20 characters per line
#define MAXROWS (4) // IEE/BA66 displays have four rows, BA63 has two
#define MAXNAME (16) // Max length of name of a preset
#define DISPLAY_BA63 (1)
#define DISPLAY_BA66 (2)
#define DISPLAY_IEE (3)
#define LUG_PRESET (1)
#define MFUK_PRESET (2)
#define BRISTOL_PRESET (3)
#define DMMF_PRESET (4)
#define BVOS_PRESET (5)
#define BRIGHTON_PRESET (6)
#define MEME_PRESET (7)
int Fd = 0;
struct Item {
int which;
GtkEntry *entry[MAXROWS];
GtkButton *button;
};
struct PresetButton {
int which;
char label[MAXNAME];
GtkButton *button;
};
struct Item Message[MAXMSGS];
struct PresetButton Preset[] = {
{MFUK_PRESET, "MFUK", NULL},
{BRISTOL_PRESET, "Bristol", NULL},
{LUG_PRESET, "LUG", NULL},
{DMMF_PRESET, "Derby", NULL},
{BVOS_PRESET, "BV", NULL},
{BRIGHTON_PRESET, "Brighton", NULL},
{MEME_PRESET, "Memes", NULL},
{0, "", NULL}
};
int Curmsg = 0;
int Autoadvance = FALSE;
int DisplayType = DISPLAY_BA63;
GtkSpinButton *Time_spin;
GtkToggleButton *Auto_button;
static int openSerialPort(const char *const port, const int baud)
{
struct termios tbuf;
long int fdflags;
const int fd = open(port, O_RDWR | O_NOCTTY | O_NONBLOCK);
if (fd < 0) {
perror(port);
exit(1);
}
if ((fdflags = fcntl(fd, F_GETFL, NULL)) < 0) {
perror("fcntl GETFL");
exit(1);
}
fdflags &= ~O_NONBLOCK;
if (fcntl(fd, F_SETFL, fdflags) < 0) {
perror("fcntl SETFL");
exit(1);
}
if (tcgetattr(fd, &tbuf) < 0) {
perror("tcgetattr");
exit(1);
}
cfsetospeed(&tbuf, baud);
cfsetispeed(&tbuf, baud);
cfmakeraw(&tbuf);
tbuf.c_cflag |= PARENB | PARODD | CLOCAL;
if (tcsetattr(fd, TCSAFLUSH, &tbuf) < 0) {
perror("tcsetattr");
exit(1);
}
return (fd);
}
void ba63send(const char *const str)
{
const int n = strlen(str);
if (write(Fd, str, n) != n)
perror("write");
}
void ba63cls(void)
{
ba63send("\x1b[2J"); // Clear screen
}
void ba63charset(const int countryCode)
{
char str[3];
str[0] = ESC;
str[1] = 'R';
str[2] = countryCode;
if (write(Fd, str, 3) != 3) // Select national character set
perror("write");
}
void ba63home(void)
{
ba63send("\x1b[H"); // Home cursor
}
int isBlank(const int msg)
{
const char *str1 = gtk_entry_get_text(Message[msg].entry[0]);
const char *str2 = gtk_entry_get_text(Message[msg].entry[1]);
return ((*str1 == '\0') && (*str2 == '\0'));
}
/* show_next --- show next pair of messages in sequence */
void show_next(void)
{
int n = 0;
do {
Curmsg = (Curmsg + 1) % MAXMSGS;
} while (isBlank (Curmsg) && (++n <= MAXMSGS));
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(Message[Curmsg].button), TRUE);
}
/* timer_callback --- function called from timeout if in auto mode */
static gboolean timer_callback(gpointer data)
{
if (Autoadvance) {
show_next();
return (TRUE);
}
else
return (FALSE);
}
/* show_message --- show two or four text strings on the display */
void show_message(const int i)
{
const char *str1 = gtk_entry_get_text(Message[i].entry[0]);
const char *str2 = gtk_entry_get_text(Message[i].entry[1]);
const char *str3 = gtk_entry_get_text(Message[i].entry[2]);
const char *str4 = gtk_entry_get_text(Message[i].entry[3]);
ba63home();
ba63cls();
ba63send(str1);
ba63send("\r\n");
ba63send(str2);
if ((DisplayType == DISPLAY_BA66) || (DisplayType == DISPLAY_IEE)) {
if (DisplayType == DISPLAY_IEE) {
struct timespec dally;
dally.tv_sec = 0;
dally.tv_nsec = 100000000L;
nanosleep(&dally, NULL);
}
ba63send("\r\n");
ba63send(str3);
ba63send("\r\n");
ba63send(str4);
}
}
/* show_button --- respond to a click on the "Show" radio button */
static void show_button(GtkWidget *widget, gpointer data)
{
const struct Item *p = (const struct Item *)data;
const int i = p->which;
if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget))) {
// g_print("Show button %d was pressed\n", i);
show_message(i);
Curmsg = i;
}
else {
// g_print("Show button %d was released\n", i);
}
}
/* auto_button --- switch on or off auto-advance mode */
static void auto_button(GtkWidget *widget, gpointer data)
{
if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget))) {
// g_print("Auto button was pressed\n");
/* Re-select Curmsg here to clear test mode */
show_message(Curmsg);
const int seconds = gtk_spin_button_get_value_as_int(Time_spin);
// g_print("seconds = %d\n", seconds);
if (seconds > 0) {
g_timeout_add_seconds(seconds, timer_callback, NULL);
Autoadvance = TRUE;
}
}
else {
// g_print("Auto button was released\n");
Autoadvance = FALSE;
}
}
/* test_button --- light all pixels on the BA63 display */
static void test_button(GtkWidget *widget, gpointer data)
{
char str[MAXCOLS + 1];
int i;
// g_print("Test button was pressed\n");
gtk_toggle_button_set_active(Auto_button, FALSE);
for (i = 0; i < MAXCOLS; i++)
str[i] = 0xdb;
str[MAXCOLS] = '\0';
ba63home();
ba63cls();
ba63send(str);
ba63send("\r\n");
ba63send(str);
if ((DisplayType == DISPLAY_BA66) || (DisplayType == DISPLAY_IEE)) {
if (DisplayType == DISPLAY_IEE) {
struct timespec dally;
dally.tv_sec = 0;
dally.tv_nsec = 100000000L;
nanosleep(&dally, NULL);
}
ba63send("\r\n");
ba63send(str);
ba63send("\r\n");
ba63send(str);
}
}
/* clear_button --- clear the display */
static void clear_button(GtkWidget *widget, gpointer data)
{
// g_print("Clear button was pressed\n");
gtk_toggle_button_set_active(Auto_button, FALSE);
ba63home();
ba63cls();
}
/* next_button --- manual advance to next message */
static void next_button(GtkWidget *widget, gpointer data)
{
// g_print("Manual Next button was pressed\n");
show_next();
}
/* preset_click --- fill in text fields with pre-set strings */
static void preset_click(GtkWidget *widget, gpointer data)
{
const struct PresetButton *const p = (const struct PresetButton *const)data;
int i;
// g_print ("Preset button %d was clicked\n", p->which);
for (i = 0; i < MAXMSGS; i++) {
gtk_entry_set_text(Message[i].entry[2], "");
gtk_entry_set_text(Message[i].entry[3], "");
}
switch (p->which) {
case LUG_PRESET:
gtk_entry_set_text(Message[0].entry[0], " BRISTOL AND BATH");
gtk_entry_set_text(Message[0].entry[1], " LINUX USER GROUP");
gtk_entry_set_text(Message[1].entry[0], " Bristol and Bath");
gtk_entry_set_text(Message[1].entry[1], " Linux User Group");
gtk_entry_set_text(Message[2].entry[0], "");
gtk_entry_set_text(Message[2].entry[1], "");
gtk_entry_set_text(Message[3].entry[0], "");
gtk_entry_set_text(Message[3].entry[1], "");
gtk_entry_set_text(Message[4].entry[0], "");
gtk_entry_set_text(Message[4].entry[1], "");
gtk_entry_set_text(Message[5].entry[0], "");
gtk_entry_set_text(Message[5].entry[1], "");
break;
case MFUK_PRESET:
gtk_entry_set_text(Message[0].entry[0], " MAKER FAIRE UK");
gtk_entry_set_text(Message[0].entry[1], " NEWCASTLE 2013");
gtk_entry_set_text(Message[1].entry[0], "FUN WITH FLAT-BED");
gtk_entry_set_text(Message[1].entry[1], "PEN PLOTTERS");
gtk_entry_set_text(Message[2].entry[0], "JOHN HONNIBALL");
gtk_entry_set_text(Message[2].entry[1], "BRISTOL HACKSPACE");
gtk_entry_set_text(Message[3].entry[0], "FUN WITH FLAT-BED");
gtk_entry_set_text(Message[3].entry[1], "PEN PLOTTERS");
gtk_entry_set_text(Message[4].entry[0], "@anachrocomputer");
gtk_entry_set_text(Message[4].entry[1], " #MakerFaireUK");
gtk_entry_set_text(Message[5].entry[0], "");
gtk_entry_set_text(Message[5].entry[1], "");
break;
case BRISTOL_PRESET:
gtk_entry_set_text(Message[0].entry[0], "BRISTOL MINI");
gtk_entry_set_text(Message[0].entry[1], "MAKER FAIRE 2014");
gtk_entry_set_text(Message[1].entry[0], "FUN WITH FLAT-BED");
gtk_entry_set_text(Message[1].entry[1], "PEN PLOTTERS");
gtk_entry_set_text(Message[2].entry[0], "JOHN HONNIBALL");
gtk_entry_set_text(Message[2].entry[1], "BRISTOL HACKSPACE");
gtk_entry_set_text(Message[3].entry[0], "FUN WITH FLAT-BED");
gtk_entry_set_text(Message[3].entry[1], "PEN PLOTTERS");
gtk_entry_set_text(Message[4].entry[0], "@anachrocomputer");
gtk_entry_set_text(Message[4].entry[1], " #bmmf");
gtk_entry_set_text(Message[5].entry[0], "");
gtk_entry_set_text(Message[5].entry[1], "");
break;
case DMMF_PRESET:
gtk_entry_set_text(Message[0].entry[0], "DERBY MINI");
gtk_entry_set_text(Message[0].entry[1], "MAKER FAIRE 2014");
gtk_entry_set_text(Message[1].entry[0], "FUN WITH FLAT-BED");
gtk_entry_set_text(Message[1].entry[1], "PEN PLOTTERS");
gtk_entry_set_text(Message[2].entry[0], "JOHN HONNIBALL");
gtk_entry_set_text(Message[2].entry[1], "BRISTOL HACKSPACE");
gtk_entry_set_text(Message[3].entry[0], "FUN WITH FLAT-BED");
gtk_entry_set_text(Message[3].entry[1], "PEN PLOTTERS");
gtk_entry_set_text(Message[4].entry[0], "@anachrocomputer");
gtk_entry_set_text(Message[4].entry[1], " #DMMF14");
gtk_entry_set_text(Message[5].entry[0], "");
gtk_entry_set_text(Message[5].entry[1], "");
break;
case BVOS_PRESET:
gtk_entry_set_text(Message[0].entry[0], "BRISTOL HACKSPACE");
gtk_entry_set_text(Message[0].entry[1], " BV Studios 2014");
gtk_entry_set_text(Message[1].entry[0], "BRISTOL HACKSPACE");
gtk_entry_set_text(Message[1].entry[1], "John Honniball");
gtk_entry_set_text(Message[2].entry[0], "FUN WITH FLAT-BED");
gtk_entry_set_text(Message[2].entry[1], "PEN PLOTTERS");
gtk_entry_set_text(Message[3].entry[0], "EARTH DEMOLITION");
gtk_entry_set_text(Message[3].entry[1], "SIMULATOR GAME");
gtk_entry_set_text(Message[4].entry[0], "@anachrocomputer");
gtk_entry_set_text(Message[4].entry[1], "");
gtk_entry_set_text(Message[5].entry[0], "");
gtk_entry_set_text(Message[5].entry[1], "");
break;
case BRIGHTON_PRESET:
gtk_entry_set_text(Message[0].entry[0], "BRIGHTON MINI");
gtk_entry_set_text(Message[0].entry[1], "MAKER FAIRE 2014");
gtk_entry_set_text(Message[1].entry[0], "FUN WITH FLAT-BED");
gtk_entry_set_text(Message[1].entry[1], "PEN PLOTTERS");
gtk_entry_set_text(Message[2].entry[0], "JOHN HONNIBALL");
gtk_entry_set_text(Message[2].entry[1], "BRISTOL HACKSPACE");
gtk_entry_set_text(Message[3].entry[0], "FUN WITH FLAT-BED");
gtk_entry_set_text(Message[3].entry[1], "PEN PLOTTERS");
gtk_entry_set_text(Message[4].entry[0], "@anachrocomputer");
gtk_entry_set_text(Message[4].entry[1], " #bmmf");
gtk_entry_set_text(Message[5].entry[0], "");
gtk_entry_set_text(Message[5].entry[1], "");
break;
case MEME_PRESET:
gtk_entry_set_text(Message[0].entry[0], " ALL YOUR BASE");
gtk_entry_set_text(Message[0].entry[1], " ARE BELONG TO US");
if ((DisplayType == DISPLAY_BA66) || (DisplayType == DISPLAY_IEE)) {
gtk_entry_set_text(Message[1].entry[0], " FOUR");
gtk_entry_set_text(Message[1].entry[1], " SEASONS");
gtk_entry_set_text(Message[1].entry[2], " TOTAL");
gtk_entry_set_text(Message[1].entry[3], " LANDSCAPING");
}
else {
gtk_entry_set_text(Message[1].entry[0], " FOUR SEASONS");
gtk_entry_set_text(Message[1].entry[1], " TOTAL LANDSCAPING");
}
gtk_entry_set_text(Message[2].entry[0], "SOON MAY THE");
gtk_entry_set_text(Message[2].entry[1], " WELLERMAN COME");
gtk_entry_set_text(Message[2].entry[2], "TO BRING US SUGAR");
gtk_entry_set_text(Message[2].entry[3], " AND TEA AND RUM");
gtk_entry_set_text(Message[3].entry[0], " EVER");
gtk_entry_set_text(Message[3].entry[1], " GIVEN");
gtk_entry_set_text(Message[4].entry[0], "NOTES ARE DISPENSED");
gtk_entry_set_text(Message[4].entry[1], " BELOW THE SCANNER");
gtk_entry_set_text(Message[5].entry[0], " UNEXPECTED ITEM");
gtk_entry_set_text(Message[5].entry[1], " IN BAGGING AREA");
break;
}
}
/* delete_event --- callback for window deletion */
static gboolean delete_event(GtkWidget *widget,
GdkEvent *event,
gpointer data)
{
gtk_main_quit();
ba63cls();
return (FALSE);
}
/* make_preset --- make a button for selecting a set of strings */
static void make_preset(GtkWidget *hbox, struct PresetButton *p)
{
GtkWidget *button;
button = gtk_button_new_with_label(p->label);
g_signal_connect(button, "clicked", G_CALLBACK(preset_click), (gpointer)p);
gtk_box_pack_start(GTK_BOX(hbox), button, TRUE, TRUE, 0);
gtk_widget_show(button);
p->button = GTK_BUTTON(button);
}
/* make_message_controls --- make a group of controls for each message */
static void make_message_controls(GtkWidget *grid, const int i, const int col, const int row, const int lines)
{
static GtkRadioButton *group = NULL;
GtkWidget *radio;
GtkWidget *hbox;
GtkWidget *ebox;
GtkWidget *entry;
char showtip[32];
int j;
#if GTK_CHECK_VERSION(3, 16, 0)
GtkStyleContext *context;
GtkCssProvider *provider;
// const char css[] = "entry {color: cyan; background: black;}";
const char css[] = "entry {font-family: monospace;}";
#else
PangoFontDescription *mono_font;
#endif
#if GTK_CHECK_VERSION(3, 16, 0)
provider = gtk_css_provider_new();
gtk_css_provider_load_from_data(provider, css, -1, NULL);
#else
mono_font = pango_font_description_from_string("monospace");
#endif
/* Make a horizontal box for the two text fields and a button */
hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
gtk_widget_show(hbox);
gtk_grid_attach(GTK_GRID(grid), hbox, col, row, 1, 1);
/* Make a vertical box for the two entry fields */
ebox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
/* Put the vertical box into the horizontal box */
gtk_box_pack_start(GTK_BOX(hbox), ebox, FALSE, TRUE, 0);
gtk_widget_show(ebox);
/* Make text entry fields */
for (j = 0; j < MAXROWS; j++) {
entry = gtk_entry_new();
#if GTK_CHECK_VERSION(3, 16, 0)
context = gtk_widget_get_style_context(entry);
gtk_style_context_add_provider(context,
GTK_STYLE_PROVIDER(provider),
GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
#else
gtk_widget_override_font(entry, mono_font);
#endif
gtk_entry_set_max_length(GTK_ENTRY(entry), MAXCOLS);
gtk_entry_set_width_chars(GTK_ENTRY(entry), MAXCOLS);
Message[i].entry[j] = GTK_ENTRY(entry);
gtk_box_pack_start(GTK_BOX(ebox), entry, TRUE, TRUE, 0);
if (j >= lines)
gtk_widget_set_sensitive(entry, FALSE);
gtk_widget_show(entry);
}
/* Each message has a "Show" radio button */
radio = gtk_radio_button_new_with_label_from_widget(group, "Show");
Message[i].which = i;
Message[i].button = GTK_BUTTON(radio);
group = GTK_RADIO_BUTTON(radio);
gtk_box_pack_start(GTK_BOX(hbox), radio, TRUE, TRUE, 0);
g_signal_connect(radio, "clicked", G_CALLBACK(show_button), (gpointer)&Message[i]);
sprintf(showtip, "Show message %d", i + 1);
gtk_widget_set_tooltip_text(radio, showtip);
gtk_widget_show(radio);
}
int main(int argc, char *argv[])
{
/* GtkWidget is the storage type for widgets */
GtkWidget *window;
GtkWidget *button;
GtkWidget *frame;
GtkWidget *vbox;
GtkWidget *grid;
GtkWidget *hbox;
GtkWidget *check;
GtkWidget *label;
GtkAdjustment *adjustment;
int i;
int lines = 2;
int baud = B9600;
// printf("GTK V%d.%d.%d\n", GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION);
gtk_init(&argc, &argv);
/* Create the main window */
window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
i = 1;
if (argc > 1) {
if (strcmp(argv[i], "-ba63") == 0) {
DisplayType = DISPLAY_BA63;
i++;
}
else if (strcmp(argv[i], "-ba66") == 0) {
DisplayType = DISPLAY_BA66;
i++;
}
else if (strcmp(argv[i], "-iee") == 0) {
DisplayType = DISPLAY_IEE;
i++;
}
}
else {
}
switch (DisplayType) {
case DISPLAY_BA63:
gtk_window_set_title(GTK_WINDOW(window), "BA63 Display");
lines = 2;
baud = B9600;
break;
case DISPLAY_BA66:
gtk_window_set_title(GTK_WINDOW(window), "BA66 Display");
lines = 4;
baud = B9600;
break;
case DISPLAY_IEE:
gtk_window_set_title(GTK_WINDOW(window), "IEE Display");
lines = 4;
baud = B19200;
break;
}
/* Set a handler for delete-event that exits */
g_signal_connect(window, "delete-event", G_CALLBACK(delete_event), NULL);
/* Set the border width of the window */
gtk_container_set_border_width(GTK_CONTAINER(window), 10);
/* Vertical box contains rows of text fields and buttons */
vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
/* Put the box into the main window */
gtk_container_add(GTK_CONTAINER(window), vbox);
/* Grid contains rows and columns of text fields and radio buttons */
grid = gtk_grid_new();
gtk_box_pack_start(GTK_BOX(vbox), grid, TRUE, TRUE, 0);
gtk_widget_show(grid);
/* Make text fields and radio button for each message */
for (i = 0; i < MAXMSGS; i++)
make_message_controls(grid, i, i % 3, i / 3, lines);
/* Make a horizontal box for the test and clear buttons */
hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
gtk_widget_show(hbox);
gtk_box_pack_start(GTK_BOX(vbox), hbox, TRUE, TRUE, 0);
/* Create a new button with the label "Lamp Test" */
button = gtk_button_new_with_label("Lamp Test");
gtk_widget_set_tooltip_text(button, "Test with all pixels lit");
g_signal_connect(button, "clicked", G_CALLBACK(test_button), (gpointer)NULL);
gtk_box_pack_start(GTK_BOX(hbox), button, TRUE, TRUE, 0);
gtk_widget_show(button);
/* Create a new button with the label "Clear Display" */
button = gtk_button_new_with_label("Clear Display");
gtk_widget_set_tooltip_text(button, "Clear all text off the display");
g_signal_connect(button, "clicked", G_CALLBACK(clear_button), (gpointer)NULL);
gtk_box_pack_start(GTK_BOX(hbox), button, TRUE, TRUE, 0);
gtk_widget_show(button);
/* Make a frame to contain the preset buttons */
frame = gtk_frame_new("Presets");
gtk_widget_set_tooltip_text(frame, "Messages for any occasion");
gtk_widget_show(frame);
gtk_box_pack_start(GTK_BOX(vbox), frame, TRUE, TRUE, 0);
/* Make a horizontal box for the preset buttons */
hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
gtk_widget_show(hbox);
gtk_container_add(GTK_CONTAINER(frame), hbox);
for (i = 0; Preset[i].which != 0; i++)
make_preset(hbox, &Preset[i]);
/* Make a frame to contain the auto controls */
frame = gtk_frame_new("Advance to Next");
gtk_widget_show(frame);
gtk_box_pack_start(GTK_BOX(vbox), frame, TRUE, TRUE, 0);
/* Make a horizontal box for the auto controls */
hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
gtk_widget_show(hbox);
gtk_container_add(GTK_CONTAINER(frame), hbox);
check = gtk_check_button_new_with_label("Auto");
gtk_widget_set_tooltip_text(check, "Automatically advance to next message");
gtk_widget_show(check);
gtk_box_pack_start(GTK_BOX(hbox), check, TRUE, TRUE, 0);
g_signal_connect(check, "clicked", G_CALLBACK(auto_button), (gpointer)NULL);
Auto_button = GTK_TOGGLE_BUTTON(check);
/* Spin-box for timeout value in seconds */
adjustment = gtk_adjustment_new(5.0, 2.0, 3600.0, 1.0, 5.0, 0.0);
button = gtk_spin_button_new(adjustment, 1.0, 0);
gtk_widget_set_tooltip_text(button, "Delay in seconds before auto advance");
gtk_box_pack_start(GTK_BOX(hbox), button, TRUE, TRUE, 0);
gtk_widget_show(button);
Time_spin = GTK_SPIN_BUTTON(button);
label = gtk_label_new("seconds");
gtk_box_pack_start(GTK_BOX(hbox), label, TRUE, TRUE, 0);
gtk_widget_show(label);
/* Button for manual advance */
button = gtk_button_new_with_label("Manual");
gtk_widget_set_tooltip_text(button, "Manually advance to next message");
gtk_widget_show(button);
gtk_box_pack_start(GTK_BOX(hbox), button, TRUE, TRUE, 0);
g_signal_connect(button, "clicked", G_CALLBACK(next_button), (gpointer)NULL);
gtk_widget_show(vbox);
gtk_widget_show(window);
/* Open the serial port connection to the display */
Fd = openSerialPort("/dev/ttyUSB0", baud);
ba63home();
ba63cls();
ba63charset(0); // Select U.S. character set
gtk_main();
return (0);
}