From 835404078569d14053af1a10ac035cc4e417e4ff Mon Sep 17 00:00:00 2001 From: Perry Werneck Date: Tue, 26 Nov 2019 18:50:28 -0300 Subject: [PATCH] Planning keyboard action panning. --- src/include/v3270/keyboard.h | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ v3270.cbp | 1 + 2 files changed, 59 insertions(+), 0 deletions(-) create mode 100644 src/include/v3270/keyboard.h diff --git a/src/include/v3270/keyboard.h b/src/include/v3270/keyboard.h new file mode 100644 index 0000000..58f38b7 --- /dev/null +++ b/src/include/v3270/keyboard.h @@ -0,0 +1,58 @@ +/* + * "Software pw3270, desenvolvido com base nos códigos fontes do WC3270 e X3270 + * (Paul Mattes Paul.Mattes@usa.net), de emulação de terminal 3270 para acesso a + * aplicativos mainframe. Registro no INPI sob o nome G3270. + * + * Copyright (C) <2008> + * + * Este programa é software livre. Você pode redistribuí-lo e/ou modificá-lo sob + * os termos da GPL v.2 - Licença Pública Geral GNU, conforme publicado pela + * Free Software Foundation. + * + * Este programa é distribuído na expectativa de ser útil, mas SEM QUALQUER + * GARANTIA; sem mesmo a garantia implícita de COMERCIALIZAÇÃO ou de ADEQUAÇÃO + * A QUALQUER PROPÓSITO EM PARTICULAR. Consulte a Licença Pública Geral GNU para + * obter mais detalhes. + * + * Você deve ter recebido uma cópia da Licença Pública Geral GNU junto com este + * programa; se não, escreva para a Free Software Foundation, Inc., 51 Franklin + * St, Fifth Floor, Boston, MA 02110-1301 USA + * + * Este programa está nomeado como - e possui - linhas de código. + * + * Contatos: + * + * perry.werneck@gmail.com (Alexandre Perry de Souza Werneck) + * erico.mendonca@gmail.com (Erico Mascarenhas Mendonça) + * + */ + +#ifndef V3270_KEYBOARD_H_INCLUDED + + #define V3270_KEYBOARD_H_INCLUDED 1 + + #include + + G_BEGIN_DECLS + + #define GTK_TYPE_V3270FT (V3270Keyboard_get_type ()) + #define GTK_V3270FT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_V3270Keyboard, V3270Keyboard)) + #define GTK_V3270FT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_V3270Keyboard, V3270KeyboardClass)) + #define GTK_IS_V3270FT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_V3270Keyboard)) + #define GTK_IS_V3270FT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_V3270Keyboard)) + #define GTK_V3270FT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_V3270Keyboard, V3270KeyboardClass)) + + typedef struct _V3270Keyboard + { + GtkAccelKey parent; + } V3270Keyboard; + + typedef struct _V3270KeyboardClass + { + GtkAccelKeyClass parent_class; + } V3270KeyboardClass; + + + G_END_DECLS + +#endif // V3270_DIALOGS_H_INCLUDED diff --git a/v3270.cbp b/v3270.cbp index 38ac230..b88ec3a 100644 --- a/v3270.cbp +++ b/v3270.cbp @@ -177,6 +177,7 @@ + -- libgit2 0.21.2