actions.c
20.2 KB
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
/*
* Copyright 2008, Banco do Brasil S.A.
*
* This file is part of g3270
*
* This program file is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; version 3 of the License.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program in a file named COPYING; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA
*
* Authors:
*
* Perry Werneck<perry.werneck@gmail.com>
*
*/
#include <gdk/gdk.h>
#include <gdk/gdkkeysyms.h>
#include "g3270.h"
#include "config.h"
#include "lib/hostc.h"
#include "lib/kybdc.h"
#include "lib/actionsc.h"
#include "lib/3270ds.h"
#include "lib/tablesc.h"
#include "lib/screenc.h"
#include "lib/togglesc.h"
#include "lib/ctlrc.h"
#include "unistd.h"
/*---[ Internal actions ]-----------------------------------------------------*/
static void action_toggle(GtkWidget *w, gpointer data);
static void PrintScreen(GtkWidget *w, gpointer data);
#ifdef DEBUG
static void action_dump(GtkWidget *w, gpointer data);
#endif
/*---[ Callback table ]-------------------------------------------------------*/
const struct action_callback action_callbacks[] =
{
{ "print", action_print },
{ "save", action_save },
{ "toggle", action_toggle },
#ifdef __GTK_ABOUT_DIALOG_H__
{ "about", action_AboutBox },
#endif
{ "print_selection", action_print_selection },
#ifdef DEBUG
{ "copy_as_table", action_copy_as_table },
#endif
#ifdef ENABLE_COLOR_SELECTION
{ "set_colors", action_set_colors },
#endif
{ "exec_with_selection", action_exec_with_selection },
{ "exec_with_copy", action_exec_with_copy },
{ "exec_with_screen", action_exec_with_screen },
{ "print_copy", action_print_copy },
{ "exit", action_exit },
{ "copy", action_copy },
{ "append", action_append },
{ "paste", action_paste },
{ "paste_next", action_paste_next },
{ "clear", action_clear },
{ "select_all", action_select_all },
{ "remove_selection", action_remove_selection },
{ "crosshair", action_crosshair },
{ "connect", action_connect },
{ "F8", action_F7 },
{ "F7", action_F8 },
{ "disconnect", action_disconnect },
{ "backtab", action_BackTab },
{ "tab", action_Tab },
{ "home", action_Home },
{ "eraseeof", action_EraseEOF },
{ "left", action_Left },
{ "up", action_Up },
{ "right", action_Right },
{ "down", action_Down },
{ "reset", action_Reset },
{ "delete", action_Delete },
{ "erase", action_Erase },
{ "enter", action_Enter },
{ "insert", action_Insert },
{ "redraw", action_Redraw },
{ "selectleft", action_SelectLeft },
{ "selectup", action_SelectUp },
{ "selectright", action_SelectRight },
{ "selectdown", action_SelectDown },
{ "selectfield", action_SelectField },
{ "selectionleft", action_SelectionLeft },
{ "selectionup", action_SelectionUp },
{ "selectionright", action_SelectionRight },
{ "selectiondown", action_SelectionDown },
{ "restoreselection", action_RestoreSelection },
{ "previousword", action_PreviousWord },
{ "nextword", action_NextWord },
{ "deleteword", action_DeleteWord },
{ "deletefield", action_DeleteField }
};
const int action_callback_counter = (sizeof(action_callbacks)/sizeof(struct action_callback));
/*---[ Keyboard processing ]--------------------------------------------*/
#ifdef DEBUG
#define DECLARE_KEYPROC(key, state, action) { key, state, #key " (" #state ")", action, #action }
#else
#define DECLARE_KEYPROC(key, state, action) { key, state, action }
#endif
#ifdef DEBUG
#define DECLARE_ACTION(key, state, action, cause, parm1, parm2) { key, state, #key " (" #state ")", action, #action, cause, parm1, parm2 }
#else
#define DECLARE_ACTION(key, state, action, cause, parm1, parm2) { key, state, action, cause, parm1, parm2 }
#endif
struct WindowActions
{
guint keyval;
guint state;
#ifdef DEBUG
const char *trace;
#endif
GtkItemFactoryCallback exec;
#ifdef DEBUG
const char *action_trace;
#endif
};
/*---[ Implement ]------------------------------------------------------------*/
gboolean KeyboardAction(GtkWidget *widget, GdkEventKey *event, gpointer user_data)
{
static const struct WindowActions keyproc[] =
{
DECLARE_KEYPROC( GDK_KP_Left, GDK_SHIFT_MASK, action_SelectLeft ),
DECLARE_KEYPROC( GDK_KP_Up, GDK_SHIFT_MASK, action_SelectUp ),
DECLARE_KEYPROC( GDK_KP_Right, GDK_SHIFT_MASK, action_SelectRight ),
DECLARE_KEYPROC( GDK_KP_Down, GDK_SHIFT_MASK, action_SelectDown ),
DECLARE_KEYPROC( GDK_Left, GDK_SHIFT_MASK, action_SelectLeft ),
DECLARE_KEYPROC( GDK_Up, GDK_SHIFT_MASK, action_SelectUp ),
DECLARE_KEYPROC( GDK_Right, GDK_SHIFT_MASK, action_SelectRight ),
DECLARE_KEYPROC( GDK_Down, GDK_SHIFT_MASK, action_SelectDown ),
DECLARE_KEYPROC( GDK_Left, GDK_CONTROL_MASK, action_SelectionLeft ),
DECLARE_KEYPROC( GDK_Up, GDK_CONTROL_MASK, action_SelectionUp ),
DECLARE_KEYPROC( GDK_Right, GDK_CONTROL_MASK, action_SelectionRight ),
DECLARE_KEYPROC( GDK_Down, GDK_CONTROL_MASK, action_SelectionDown ),
DECLARE_KEYPROC( GDK_KP_Left, GDK_CONTROL_MASK, action_SelectionLeft ),
DECLARE_KEYPROC( GDK_KP_Up, GDK_CONTROL_MASK, action_SelectionUp ),
DECLARE_KEYPROC( GDK_KP_Right, GDK_CONTROL_MASK, action_SelectionRight ),
DECLARE_KEYPROC( GDK_KP_Down, GDK_CONTROL_MASK, action_SelectionDown ),
DECLARE_KEYPROC( GDK_l, GDK_CONTROL_MASK, action_Redraw ),
DECLARE_KEYPROC( GDK_w, GDK_CONTROL_MASK, action_DeleteWord ),
DECLARE_KEYPROC( GDK_u, GDK_CONTROL_MASK, action_DeleteField ),
DECLARE_KEYPROC( GDK_r, GDK_CONTROL_MASK, action_Reset ),
DECLARE_KEYPROC( GDK_KP_Add, GDK_NUMLOCK_MASK, action_Tab ),
DECLARE_KEYPROC( GDK_Page_Up, GDK_SHIFT_MASK, action_F23 ),
DECLARE_KEYPROC( GDK_Page_Down, GDK_SHIFT_MASK, action_F24 ),
DECLARE_KEYPROC( GDK_Page_Up, 0, action_F7 ),
DECLARE_KEYPROC( GDK_Page_Down, 0, action_F8 ),
#ifdef DEBUG
DECLARE_KEYPROC( GDK_Print, GDK_CONTROL_MASK, action_dump ),
#endif
DECLARE_KEYPROC( GDK_Print, 0, PrintScreen ),
DECLARE_KEYPROC( GDK_3270_PrintScreen, 0, PrintScreen ),
DECLARE_KEYPROC( GDK_ISO_Left_Tab, 0, action_BackTab ),
DECLARE_KEYPROC( GDK_Tab, 0, action_Tab ),
DECLARE_KEYPROC( GDK_Home, 0, action_Home ),
DECLARE_KEYPROC( GDK_End, 0, action_EraseEOF ),
DECLARE_KEYPROC( GDK_Left, 0, action_Left ),
DECLARE_KEYPROC( GDK_Up, 0, action_Up ),
DECLARE_KEYPROC( GDK_Right, 0, action_Right ),
DECLARE_KEYPROC( GDK_Down, 0, action_Down ),
DECLARE_KEYPROC( GDK_KP_Left, 0, action_Left ),
DECLARE_KEYPROC( GDK_KP_Up, 0, action_Up ),
DECLARE_KEYPROC( GDK_KP_Right, 0, action_Right ),
DECLARE_KEYPROC( GDK_KP_Down, 0, action_Down ),
DECLARE_KEYPROC( GDK_Clear, 0, action_Clear ),
DECLARE_KEYPROC( GDK_3270_Reset, 0, action_Reset ),
DECLARE_KEYPROC( GDK_Delete, 0, action_Delete ),
DECLARE_KEYPROC( GDK_BackSpace, 0, action_Erase ),
DECLARE_KEYPROC( GDK_Return, 0, action_Enter ),
DECLARE_KEYPROC( GDK_KP_Enter, 0, action_Enter ),
DECLARE_KEYPROC( GDK_Escape, 0, action_Reset ),
DECLARE_KEYPROC( GDK_Insert, 0, action_Insert ),
};
// char ks[6];
int f;
#ifndef USE_GTKIMCONTEXT
gchar *string = 0;
#endif
DBGPrintf("Keyval: %d (%s) Keychar: \"%s\" State: %04x %s%s%s%s%s%s%s%s%s%s%s%s%s%s",
event->keyval,
gdk_keyval_name(event->keyval),
event->string,
event->state,
event->state & GDK_SHIFT_MASK ? " GDK_SHIFT_MASK" : "",
event->state & GDK_LOCK_MASK ? " GDK_LOCK_MASK" : "",
event->state & GDK_CONTROL_MASK ? " GDK_CONTROL_MASK" : "",
event->state & GDK_MOD1_MASK ? " GDK_MOD1_MASK" : "",
event->state & GDK_MOD2_MASK ? " GDK_MOD2_MASK" : "",
event->state & GDK_MOD3_MASK ? " GDK_MOD3_MASK" : "",
event->state & GDK_MOD4_MASK ? " GDK_MOD4_MASK" : "",
event->state & GDK_MOD5_MASK ? " GDK_MOD5_MASK" : "",
event->state & GDK_BUTTON1_MASK ? " GDK_BUTTON1_MASK" : "",
event->state & GDK_BUTTON2_MASK ? " GDK_BUTTON2_MASK" : "",
event->state & GDK_BUTTON3_MASK ? " GDK_BUTTON3_MASK" : "",
event->state & GDK_BUTTON4_MASK ? " GDK_BUTTON4_MASK" : "",
event->state & GDK_BUTTON5_MASK ? " GDK_BUTTON5_MASK" : "",
event->state & GDK_RELEASE_MASK ? " GDK_RELEASE_MASK" : ""
);
/* Check for special keyproc actions */
for(f=0; f < (sizeof(keyproc)/sizeof(struct WindowActions));f++)
{
if(keyproc[f].keyval == event->keyval && (event->state & keyproc[f].state) == keyproc[f].state)
{
#ifdef DEBUG
DBGPrintf("Key: %s\tAction: %s",keyproc[f].trace,keyproc[f].action_trace);
#endif
keyproc[f].exec(0,0);
return TRUE;
}
}
#ifndef USE_GTKIMCONTEXT
string = event->string;
DBGPrintf("Keyval: %d (%s) Keychar: \"%s\" State: %04x %s%s%s%s%s%s%s%s%s%s%s%s%s%s",
event->keyval,
gdk_keyval_name(event->keyval),
string,
event->state,
event->state & GDK_SHIFT_MASK ? " GDK_SHIFT_MASK" : "",
event->state & GDK_LOCK_MASK ? " GDK_LOCK_MASK" : "",
event->state & GDK_CONTROL_MASK ? " GDK_CONTROL_MASK" : "",
event->state & GDK_MOD1_MASK ? " GDK_MOD1_MASK" : "",
event->state & GDK_MOD2_MASK ? " GDK_MOD2_MASK" : "",
event->state & GDK_MOD3_MASK ? " GDK_MOD3_MASK" : "",
event->state & GDK_MOD4_MASK ? " GDK_MOD4_MASK" : "",
event->state & GDK_MOD5_MASK ? " GDK_MOD5_MASK" : "",
event->state & GDK_BUTTON1_MASK ? " GDK_BUTTON1_MASK" : "",
event->state & GDK_BUTTON2_MASK ? " GDK_BUTTON2_MASK" : "",
event->state & GDK_BUTTON3_MASK ? " GDK_BUTTON3_MASK" : "",
event->state & GDK_BUTTON4_MASK ? " GDK_BUTTON4_MASK" : "",
event->state & GDK_BUTTON5_MASK ? " GDK_BUTTON5_MASK" : "",
event->state & GDK_RELEASE_MASK ? " GDK_RELEASE_MASK" : ""
);
/* Check for regular key */
if(string && *string && !(event->state & (GDK_ALT_MASK|GDK_CONTROL_MASK)) )
{
// Standard char, use it.
ParseInput(string);
return TRUE;
}
#endif
return FALSE;
}
void ParseInput(const gchar *string)
{
gchar *input;
input = g_convert(string, -1, "ISO-8859-1", "UTF-8", NULL, NULL, NULL);
if(!input)
{
Log("Error converting string \"%s\" to ISO-8859-1",string);
return;
}
// NOTE (perry#1#): Is it the best way?
Input_String((const unsigned char *) input);
/*
if(!emulate_input(input, strlen(input), False))
{
DBGMessage("Input failed!!");
}
*/
g_free(input);
}
static int connecting = 0;
static gpointer ConnectThread(gpointer host)
{
connecting++;
DBGMessage("Connect thread has started");
Log("Trying \"%s\"",host);
reconnect_retry = 0;
host_connect(host);
DBGMessage("Connect thread has ended");
connecting--;
UpdateWindowTitle();
return 0;
}
void action_connect(GtkWidget *w, gpointer data)
{
GThread *thd = 0;
if(Get3270CState() != NOT_CONNECTED)
{
DBGMessage("Already connected or connecting");
return;
}
if(connecting)
return;
// TODO (perry#9#): Show a dialog box to select the hostname/port.
if(!cl_hostname)
return;
SetOIAStatus(STATUS_RESOLVING);
thd = g_thread_create( ConnectThread, (gpointer) cl_hostname, 0, NULL);
}
void action_disconnect(GtkWidget *w, gpointer data)
{
if(connecting)
return;
Log("Disconnecting");
reconnect_retry = -1;
host_disconnect(False);
}
void action_clear(GtkWidget *w, gpointer data)
{
action_internal(EraseInput_action, IA_DEFAULT, CN, CN);
}
static gpointer exec_with_screen_thread(gpointer cmd)
{
char buffer[1024];
char filename[1024];
gchar *screen = CopyTerminalContents(0,0,-1,-1,0);
FILE *arq;
int fd;
int rc;
if(!screen)
return 0;
snprintf(filename,1023,"%s/%s.XXXXXX",TMPPATH,PACKAGE_NAME);
fd = mkstemp(filename);
DBGMessage(filename);
arq = fdopen(fd,"w");
if(arq)
{
if(fwrite(screen,strlen(screen),1,arq) != 1)
{
Error("Error writing screen contents to %s",filename);
fclose(arq);
}
else
{
fclose(arq);
snprintf(buffer,1023,cmd,filename);
DBGMessage(buffer);
rc = system(buffer);
if(rc)
Log("System(\"%s\")= %d",buffer,rc);
remove(filename);
}
}
else
{
Error("Unable to open \"%s\" for writing",filename);
}
g_free(screen);
return 0;
}
void action_exec_with_screen(GtkWidget *w, gpointer data)
{
GThread *thd = 0;
thd = g_thread_create( exec_with_screen_thread, (gpointer) data, 0, NULL);
}
static void PrintScreen(GtkWidget *w, gpointer data)
{
// First of all try a ^P in the main window
if(gtk_accel_groups_activate(G_OBJECT(top_window), GDK_p, GDK_CONTROL_MASK))
return;
// If it fails exec the default action
action_print(w,data);
}
void action_F7(GtkWidget *w, gpointer data)
{
action_internal(PF_action, IA_DEFAULT, "7", CN);
}
void action_F8(GtkWidget *w, gpointer data)
{
action_internal(PF_action, IA_DEFAULT, "8", CN);
}
void action_F19(GtkWidget *w, gpointer data)
{
action_internal(PF_action, IA_DEFAULT, "19", CN);
}
void action_F20(GtkWidget *w, gpointer data)
{
action_internal(PF_action, IA_DEFAULT, "20", CN);
}
void action_F23(GtkWidget *w, gpointer data)
{
action_internal(PF_action, IA_DEFAULT, "23", CN);
}
void action_F24(GtkWidget *w, gpointer data)
{
action_internal(PF_action, IA_DEFAULT, "24", CN);
}
void action_BackTab(GtkWidget *w, gpointer data)
{
action_internal(BackTab_action, IA_DEFAULT, CN, CN);
}
void action_Tab(GtkWidget *w, gpointer data)
{
CHKPoint();
action_internal(Tab_action, IA_DEFAULT, CN, CN);
}
void action_Home(GtkWidget *w, gpointer data)
{
CHKPoint();
action_internal(Home_action, IA_DEFAULT, CN, CN);
}
void action_EraseEOF(GtkWidget *w, gpointer data)
{
CHKPoint();
action_internal(EraseEOF_action, IA_DEFAULT, CN, CN);
}
void action_Left(GtkWidget *w, gpointer data)
{
CHKPoint();
action_internal(Left_action, IA_DEFAULT, CN, CN);
}
void action_Up(GtkWidget *w, gpointer data)
{
CHKPoint();
action_internal(Up_action, IA_DEFAULT, CN, CN);
}
void action_Right(GtkWidget *w, gpointer data)
{
CHKPoint();
action_internal(Right_action, IA_DEFAULT, CN, CN);
}
void action_Down(GtkWidget *w, gpointer data)
{
CHKPoint();
action_internal(Down_action, IA_DEFAULT, CN, CN);
}
void action_Clear(GtkWidget *w, gpointer data)
{
CHKPoint();
action_internal(Clear_action, IA_DEFAULT, CN, CN);
}
void action_Reset(GtkWidget *w, gpointer data)
{
CHKPoint();
action_internal(Reset_action, IA_DEFAULT, CN, CN);
}
void action_Delete(GtkWidget *w, gpointer data)
{
CHKPoint();
action_internal(Delete_action, IA_DEFAULT, CN, CN);
}
void action_Erase(GtkWidget *w, gpointer data)
{
CHKPoint();
action_internal(Erase_action, IA_DEFAULT, CN, CN);
}
void action_Enter(GtkWidget *w, gpointer data)
{
if(Get3270CState() == NOT_CONNECTED)
action_connect(w,data);
else
action_internal(Enter_action, IA_DEFAULT, CN, CN);
}
void action_Insert(GtkWidget *w, gpointer data)
{
CHKPoint();
action_internal(ToggleInsert_action, IA_DEFAULT, CN, CN);
}
void action_Newline(GtkWidget *w, gpointer data)
{
CHKPoint();
action_internal(Newline_action, IA_DEFAULT, CN, CN);
}
void action_Redraw(GtkWidget *w, gpointer data)
{
CHKPoint();
action_internal(Redraw_action, IA_DEFAULT, CN, CN);
}
void action_PreviousWord(GtkWidget *w, gpointer data)
{
CHKPoint();
action_internal(PreviousWord_action, IA_DEFAULT, CN, CN);
}
void action_NextWord(GtkWidget *w, gpointer data)
{
CHKPoint();
action_internal(NextWord_action, IA_DEFAULT, CN, CN);
}
void action_DeleteWord(GtkWidget *w, gpointer data)
{
CHKPoint();
action_internal(DeleteWord_action, IA_DEFAULT, CN, CN);
}
void action_DeleteField(GtkWidget *w, gpointer data)
{
CHKPoint();
action_internal(DeleteField_action, IA_DEFAULT, CN, CN);
}
void action_AboutBox(GtkWidget *w, gpointer data)
{
#ifdef __GTK_ABOUT_DIALOG_H__
static const char *authors[] = { "Paul Mattes <Paul.Mattes@usa.net>",
"Perry Werneck <perry.werneck@gmail.com>",
NULL};
static const char license[] = "This program is free software; you can redistribute it and/or\n"
"modify it under the terms of the GNU General Public License as\n"
"published by the Free Software Foundation; either version 2 of the\n"
"License, or (at your option) any later version.\n\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
"GNU General Public License for more details.\n\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02111-1307\n"
"USA";
CHKPoint();
gtk_show_about_dialog( GTK_WINDOW(top_window),
"name", "g3270",
"authors", authors,
"license", license,
"logo", icon,
#ifdef USE_GNOME
"comments", _("3270 Terminal emulator for Gnome.\nBuild " BUILD),
#else
"comments", _("3270 Terminal emulator for GTK.\nBuild " BUILD),
#endif
#ifdef VERSION
"version", VERSION,
#endif
NULL
);
#endif
}
void action_crosshair( GtkWidget *w, gpointer data)
{
action_toggle(w,(gpointer) toggle_name[CROSSHAIR]);
}
int ToggleByName(const char *name)
{
int f;
if(name)
{
for(f=0;f<N_TOGGLES;f++)
{
if(!strcmp(name,toggle_name[f]))
return f;
}
}
return -1;
}
static void action_toggle(GtkWidget *w, gpointer data)
{
int toggle = ToggleByName((const char *) data);
if(toggle < 0)
return;
do_toggle(toggle);
if(top_window && top_window->window && toggle == FULLSCREEN)
{
if(toggled(toggle))
gtk_window_fullscreen(GTK_WINDOW(top_window));
else
gtk_window_unfullscreen(GTK_WINDOW(top_window));
}
#ifdef __G_KEY_FILE_H__
if(main_configuration)
g_key_file_set_boolean(main_configuration,"Toggles",toggle_name[toggle],toggled(toggle) ? TRUE : FALSE);
#endif
InvalidateCursor();
}
#ifdef DEBUG
static void action_dump(GtkWidget *w, gpointer data)
{
time_t ltime;
char wrk[40];
FILE *out = fopen("/tmp/g3270.screen","a");
const struct ea *trm;
const struct ea *chr;
int rows;
int cols;
int row;
int col;
if(!out)
return;
time(<ime);
strftime(wrk, 39, "%d/%m/%Y %H:%M:%S", localtime(<ime));
fprintf(out,"%s Writing screen dump\n",wrk);
trm = Get3270DeviceBuffer(&rows, &cols);
chr = trm;
for(row = 0; row < rows; row++)
{
fprintf(out,"%02d ",row);
for(col = 0; col < cols;col++)
{
fprintf(out,"%c",ebc2asc[chr->cc]);
chr++;
}
fprintf(out,"\n");
}
fprintf(out,"\n");
chr = trm;
for(row = 0; row < rows; row++)
{
fprintf(out,"%02d ",row);
for(col = 0; col < cols;col++)
{
fprintf(out,"%02x %c ",chr->fa,ebc2asc[chr->cc]);
chr++;
}
fprintf(out,"\n");
}
fprintf(out,"\n");
chr = trm;
for(row = 0; row < rows; row++)
{
fprintf(out,"%02d ",row);
for(col = 0; col < cols;col++)
{
fprintf(out,"%02x:%02x ",chr->fa,chr->cc);
chr++;
}
fprintf(out,"\n");
}
fprintf(out,"\n");
fclose(out);
}
#endif