-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvirtualinput_16_12.c
More file actions
executable file
·359 lines (313 loc) · 10.5 KB
/
virtualinput_16_12.c
File metadata and controls
executable file
·359 lines (313 loc) · 10.5 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
/*virtualinput aggiornato 16/12/2010 */
#include <gtk/gtk.h>
#include <X11/Xlib.h>
#include <X11/keysym.h>
#include <unistd.h>
#include <stdlib.h>
#include <time.h>
#include <float.h>
#define NUM_OF_COLUMNS 3
#define NUM_OF_ROWS 4
#define NUM_OF_BUTTONS 15
#define NameProgramm "virtualKey"
#define LENB 5 /*LENB=LENB2,LENB3,LENB4,LENB6,LENB7,LENB8,LENB9*/
#define LENB1 8
#define LENB5 4
#define LENB10 20
typedef struct Tlbutton{
int len;
int status;
int *simbol;
time_t timeSelected;
}lbutton;
typedef struct tstruttura{
Display *display;
Window win;
Window winRoot;
lbutton listButton[11];//listButton[9] non viene utilizza /viene posta a null per semplificazioni
int indexSimbol;/*rappresenta l'indice del listButton(generico) corrispondente all'ultimo carattere stampato*/
}struttura;
void fButton1(struttura *str);
void fButton2(struttura *str);
void fButton3(struttura *str);
void fButton4(struttura *str);
void fButton5(struttura *str);
void fButton6(struttura *str);
void fButton7(struttura *str);
void fButton8(struttura *str);
void fButton9(struttura *str);
void fButton10(struttura *str);
void fButton11(struttura *str);
void fButton12(struttura *str);
void fButton13(struttura *str);
void fButton14(struttura *str);
void fButton15(struttura *str);
void sendKey(Display *display, Window &win, Window &winRoot,int keycode,int state);
void SendKeyEvent(Display *display, Window &win, Window &winRoot, int type, int keycode, int modifiers);
typedef void(*funz)(struttura *);
Status sendKeyEvent(Display *display, Window &win, Window &winRoot, int type, int keycode, int modifiers);
funz listF_Buttons[15]={fButton1,fButton2,fButton3,fButton4,fButton5,fButton6,fButton7,fButton8,fButton9,fButton10,fButton11,fButton12,fButton13,fButton14,fButton15};
//int mappaChar[10][15]={,'"','\','/','(',')','?','^','-','+','*','#',
void fButton1(struttura *str)
/*Funzione associata al tasto 1*/
{
sendKey(str->display,str->win,str->winRoot,str->listButton[0].simbol[3],str->listButton[0].status);
//printf("1\n");
}
void fButton2(struttura *str)
/*Funzione associata al tasto 2*/
{
int keycode=XK_2;
sendKey(str->display,str->win,str->winRoot,keycode,0);
//printf("2\n");
}
void fButton3(struttura *str)
/*Funzione associata al tasto 3 */
{
int keycode=XK_3;
sendKey(str->display,str->win,str->winRoot,keycode,0);
for(int i=0;i<str->listButton[10].len;i++)
sendKey(str->display,str->win,str->winRoot,str->listButton[10].simbol[i],str->listButton[10].status);
//printf("3\n");
}
void fButton4(struttura *str)
/*Funzione associata al tasto 4 */
{
int keycode=XK_4;
sendKey(str->display,str->win,str->winRoot,keycode,0);
//printf("4\n");
}
void fButton5(struttura *str)
/*Funzione associata al tasto 5*/
{
int keycode=XK_5;
sendKey(str->display,str->win,str->winRoot,keycode,0);
//printf("5\n");
}
void fButton6(struttura *str)
/*Funzione associata al tasto 6*/
{
int keycode=XK_6;
sendKey(str->display,str->win,str->winRoot,keycode,0);
//printf("6\n");
}
void fButton7(struttura *str)
/*Funzione associata al tasto 7*/
{
int keycode=XK_7;
sendKey(str->display,str->win,str->winRoot,keycode,0);
//printf("7\n");
}
void fButton8(struttura *str)
/*Funzione associata al tasto 8*/
{
int keycode=XK_8;
sendKey(str->display,str->win,str->winRoot,keycode,0);
//printf("8\n");
}
void fButton9(struttura *str)
/*Funzione associata al tasto 9*/
{
int keycode=XK_9;
sendKey(str->display,str->win,str->winRoot,keycode,0);
//printf("9\n");
}
void fButton10(struttura *str)
/*Funzione associata al tasto shift => setta lo shift */
{
int modifier;
if(modifier==1)
modifier=0;
else
modifier=1;
}
void fButton11(struttura *str)
/*Funzione associata al tasto 0 */
{
int keycode=XK_0;
sendKey(str->display,str->win,str->winRoot,keycode,0);
//printf("11\n");
}
void fButton12(struttura *str)
/*Funzione associata al tasto '#' */
{
int keycode=XK_Left;
sendKey(str->display,str->win,str->winRoot,keycode,0);
//printf("12\n");
}
void fButton13(struttura *str)
/*Funzione associata al tasto delete */
{
sendKey(str->display,str->win,str->winRoot,XK_BackSpace,0);
}
void fButton14(struttura *str)
/*Funzione associata al tasto '*' */
{
sendKey(str->display,str->win,str->winRoot,'a',0);
}
void fButton15(struttura *str)
/*Funzione associata al tasto invio */
{
sendKey(str->display,str->win,str->winRoot,XK_KP_Enter,0);
}
/*funzione che notifica pressione e rilascio si un dato tasto ad un'applicazione*/
void sendKey(Display *display, Window &win, Window &winRoot,int keycode,int state)
{
SendKeyEvent(display,win,winRoot,KeyPress,keycode,state );
SendKeyEvent(display,win,winRoot,KeyRelease,keycode,state);
}
/*Wrapper createKeyEvent*/
void SendKeyEvent(Display *display, Window &win, Window &winRoot, int type, int keycode, int modifiers)
{
Status err=sendKeyEvent(display,win, winRoot,type, keycode,modifiers);
if (err==BadValue)
{
fprintf(stderr,"error : programm %s ,function createKeyEvent(..) return BadValue\n",NameProgramm);
exit (1);
}
if (err==BadWindow)
{
fprintf(stderr,"error : programm %s ,function createKeyEvent(..) return BadWindow\n",NameProgramm);
exit (1);
}
XFlush(display);//forza l'effettiva scrittura degli eventuali dati presenti nel buffer,in questo caso il display
}
// Function to create and send a keyboard event
Status sendKeyEvent(Display *display, Window &win, Window &winRoot, int type, int keycode, int modifiers)
{
XKeyEvent event;
event.display = display;
event.window = win;
event.root = winRoot;
event.subwindow = None;
event.time = CurrentTime;
event.x = 1;
event.y = 1;
event.x_root = 1;
event.y_root = 1;
event.same_screen = True;
event.keycode = XKeysymToKeycode(display, keycode);
event.state = modifiers;
event.type = type;
return XSendEvent(display, win, True, KeyPressMask, (XEvent *)&event);
}
void writeSimbol(struttura *str,lbutton *listButton)
{
time_t tnow;
double t_diff;
tnow=time(NULL);
t_diff=difftime(tnow,listButton->timeSelected);
listButton->timeSelected=tnow;
if(!((t_diff>=0)&&(t_diff<=1.5)))
str->indexSimbol=0;
else
{
str->indexSimbol=(str->indexSimbol==listButton->len-1)?0:str->indexSimbol+1;
sendKey(str->display,str->win,str->winRoot,XK_BackSpace,0);
//g_print("%c",XK_BackSpace);
}
//g_print("%c",listButton->simbol[str->indexSimbol]);
sendKey(str->display,str->win,str->winRoot,listButton->simbol[str->indexSimbol],listButton->status);
}
//gtk_get_name_button(widget);
void button_clicked(GtkWidget *widget,struttura *str)
{
// Find the window which has the current keyboard focus.
int revert;
int button;
button=atoi(gtk_widget_get_name(widget));
XGetInputFocus(str->display, &str->win, &revert);
if((button!=9)&&(button<10))//&!T9
writeSimbol(str,&str->listButton[button]);
else
listF_Buttons[button](str);
}
void finestra(struttura *str)
{
GtkWidget *window, *frame, *box, *table;
GtkWidget **buttonArray;
int i, x, y;
char s[15][10]={"1","2 abc","3 def","4 ghi","5 jkl","6 mno","7 pqrs","8 tuv","9 wxyz","⇧ shift","0 ","alt gr","←","?","↵"};
char s_i[2];
gtk_init (NULL,NULL);
window = gtk_window_new (GTK_WINDOW_POPUP);
gtk_window_set_default_size (GTK_WINDOW(window), 250, 250);
/* Crea una Frame */
frame = gtk_frame_new(NULL);
gtk_container_add(GTK_CONTAINER(window), frame);
/* Setta l'etichetta della frame */
gtk_frame_set_label( GTK_FRAME(frame), "Tastiera" );
gtk_widget_show (frame);
box = gtk_vbox_new (FALSE, 0);
gtk_container_add (GTK_CONTAINER (frame), box);
gtk_widget_show (box);
buttonArray = (GtkWidget**)g_malloc(NUM_OF_BUTTONS*sizeof(GtkButton**));
table = gtk_table_new(NUM_OF_ROWS, NUM_OF_COLUMNS, TRUE);
gtk_table_set_row_spacings(GTK_TABLE(table), 2);
gtk_table_set_col_spacings(GTK_TABLE(table), 2);
x=y=0;
for(i=0; i<NUM_OF_BUTTONS;i++)
{
buttonArray[i] = gtk_button_new_with_label(s[i]);
gtk_table_attach_defaults(GTK_TABLE(table), buttonArray[i], x, x+1, y, y+1);
sprintf(s_i,"%i",i);
gtk_widget_set_name(buttonArray[i],s_i);
g_signal_connect(G_OBJECT(buttonArray[i]), "clicked", G_CALLBACK(button_clicked),str);
x++;
if(x==NUM_OF_COLUMNS)
{
x=0;
y++;
}
}
gtk_box_pack_start(GTK_BOX(box), table, FALSE, FALSE, 0);
/* Mostra gli elementi */
gtk_widget_show_all(GTK_WIDGET(window));
gtk_main ();
}
int *setListButton(int len,int status,int *vet,lbutton &l)
{
l.len=len;
l.status=status;
l.timeSelected=(time_t)DBL_MAX;
return vet;
}
void stampa(int *v,int len)
{
int i;
for(i=0;i<len;i++)
printf("%c",v[i]);
printf("\n");
}
int main(int argc, char *argv[])
{
struttura str;
str.display = XOpenDisplay(0);
int i;
int keycodemap[LENB*7+LENB1+LENB5+LENB10]={XK_1,XK_quotedbl,XK_comma,XK_plus,XK_minus,XK_less,XK_quoteright,XK_period,
/*;1;\;,;+;-;<;';.;*/
XK_a,XK_b,XK_c,XK_agrave,XK_2,/* a,b,c,à,2*/
XK_d,XK_e,XK_f,XK_egrave,XK_3,/* d,e,f,è,3*/
XK_g,XK_h,XK_i,XK_igrave,XK_4,/* g,h,i,ì,4*/
XK_j,XK_k,XK_l,XK_5, /* j,j,l,5 */
XK_m,XK_n,XK_o,XK_ograve,XK_6,/* m,n,o,ò,6*/
XK_p,XK_q,XK_r,XK_s,XK_7, /* p,q,r,s,7*/
XK_t,XK_u,XK_v,XK_ugrave,XK_8,/* t,u,v,ù,8*/
XK_w,XK_x,XK_y,XK_z,XK_9, /* w,x,y,z,9*/
XK_space/* */,XK_0/*0*/,XK_question/*?*/,XK_exclam/*!*/,XK_equal/*=*/,XK_asterisk/* * */,XK_semicolon/*;*/,XK_colon/*:*/,XK_underscore/*_*/,XK_2/*"*/,XK_3/*£*/,XK_dollar/*$*/,XK_percent/*%*/,XK_ampersand/*&*/,XK_slash/*/*/,XK_bar/*|*/,XK_parenleft/*(*/,XK_parenright/*)*/,XK_asciicircum/*^*/,XK_greater/*>*/
};
int sup;
str.indexSimbol=0;//semplice inizzializzazione
str.listButton[0].simbol=setListButton(LENB1,0,keycodemap,str.listButton[0]);
for(i=1,sup=LENB1;i<4;i++,sup+=LENB)
str.listButton[i].simbol=setListButton(LENB,0,keycodemap+sup,str.listButton[i]);
str.listButton[4].simbol=setListButton(LENB5,0,keycodemap+sup,str.listButton[4]);
for(i++,sup+=LENB5;i<9;i++,sup+=LENB)
str.listButton[i].simbol=setListButton(LENB,0,keycodemap+sup,str.listButton[i]);
str.listButton[10].simbol=setListButton(LENB10,1,keycodemap+sup,str.listButton[10]);
// Get the root window for the current display.
str.winRoot = XDefaultRootWindow(str.display);
finestra(&str);
XCloseDisplay(str.display);
return 0;
}