Commit 835404078569d14053af1a10ac035cc4e417e4ff
1 parent
af840d72
Exists in
master
and in
1 other branch
Planning keyboard action panning.
Showing
2 changed files
with
59 additions
and
0 deletions
Show diff stats
... | ... | @@ -0,0 +1,58 @@ |
1 | +/* | |
2 | + * "Software pw3270, desenvolvido com base nos códigos fontes do WC3270 e X3270 | |
3 | + * (Paul Mattes Paul.Mattes@usa.net), de emulação de terminal 3270 para acesso a | |
4 | + * aplicativos mainframe. Registro no INPI sob o nome G3270. | |
5 | + * | |
6 | + * Copyright (C) <2008> <Banco do Brasil S.A.> | |
7 | + * | |
8 | + * Este programa é software livre. Você pode redistribuí-lo e/ou modificá-lo sob | |
9 | + * os termos da GPL v.2 - Licença Pública Geral GNU, conforme publicado pela | |
10 | + * Free Software Foundation. | |
11 | + * | |
12 | + * Este programa é distribuído na expectativa de ser útil, mas SEM QUALQUER | |
13 | + * GARANTIA; sem mesmo a garantia implícita de COMERCIALIZAÇÃO ou de ADEQUAÇÃO | |
14 | + * A QUALQUER PROPÓSITO EM PARTICULAR. Consulte a Licença Pública Geral GNU para | |
15 | + * obter mais detalhes. | |
16 | + * | |
17 | + * Você deve ter recebido uma cópia da Licença Pública Geral GNU junto com este | |
18 | + * programa; se não, escreva para a Free Software Foundation, Inc., 51 Franklin | |
19 | + * St, Fifth Floor, Boston, MA 02110-1301 USA | |
20 | + * | |
21 | + * Este programa está nomeado como - e possui - linhas de código. | |
22 | + * | |
23 | + * Contatos: | |
24 | + * | |
25 | + * perry.werneck@gmail.com (Alexandre Perry de Souza Werneck) | |
26 | + * erico.mendonca@gmail.com (Erico Mascarenhas Mendonça) | |
27 | + * | |
28 | + */ | |
29 | + | |
30 | +#ifndef V3270_KEYBOARD_H_INCLUDED | |
31 | + | |
32 | + #define V3270_KEYBOARD_H_INCLUDED 1 | |
33 | + | |
34 | + #include <gtk/gtk.h> | |
35 | + | |
36 | + G_BEGIN_DECLS | |
37 | + | |
38 | + #define GTK_TYPE_V3270FT (V3270Keyboard_get_type ()) | |
39 | + #define GTK_V3270FT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_V3270Keyboard, V3270Keyboard)) | |
40 | + #define GTK_V3270FT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_V3270Keyboard, V3270KeyboardClass)) | |
41 | + #define GTK_IS_V3270FT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_V3270Keyboard)) | |
42 | + #define GTK_IS_V3270FT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_V3270Keyboard)) | |
43 | + #define GTK_V3270FT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_V3270Keyboard, V3270KeyboardClass)) | |
44 | + | |
45 | + typedef struct _V3270Keyboard | |
46 | + { | |
47 | + GtkAccelKey parent; | |
48 | + } V3270Keyboard; | |
49 | + | |
50 | + typedef struct _V3270KeyboardClass | |
51 | + { | |
52 | + GtkAccelKeyClass parent_class; | |
53 | + } V3270KeyboardClass; | |
54 | + | |
55 | + | |
56 | + G_END_DECLS | |
57 | + | |
58 | +#endif // V3270_DIALOGS_H_INCLUDED | ... | ... |
v3270.cbp
... | ... | @@ -177,6 +177,7 @@ |
177 | 177 | <Unit filename="src/include/v3270/dialogs.h" /> |
178 | 178 | <Unit filename="src/include/v3270/filetransfer.h" /> |
179 | 179 | <Unit filename="src/include/v3270/ftprogress.h" /> |
180 | + <Unit filename="src/include/v3270/keyboard.h" /> | |
180 | 181 | <Unit filename="src/include/v3270/print.h" /> |
181 | 182 | <Unit filename="src/include/v3270/security.h" /> |
182 | 183 | <Unit filename="src/include/v3270/settings.h" /> | ... | ... |