Commit eaf8662ca3381c9b6c96d96142361affce2942e4
1 parent
3c518c24
Exists in
master
and in
4 other branches
Removing extended terminal widget.
Showing
4 changed files
with
0 additions
and
223 deletions
Show diff stats
src/include/pw3270/terminal.h
... | ... | @@ -1,66 +0,0 @@ |
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 | -/** | |
31 | - * @brief Declares the pw3270 terminal window. | |
32 | - * | |
33 | - */ | |
34 | - | |
35 | -#ifndef PW3270_TERMINAL_H_INCLUDED | |
36 | - | |
37 | - #define PW3270_TERMINAL_H_INCLUDED | |
38 | - | |
39 | - #include <gtk/gtk.h> | |
40 | - #include <v3270.h> | |
41 | - | |
42 | - G_BEGIN_DECLS | |
43 | - | |
44 | - #define PW3270_TYPE_TERMINAL (pw3270Terminal_get_type ()) | |
45 | - #define PW3270_TERMINAL(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ | |
46 | - PW3270_TYPE_TERMINAL, pw3270Terminal)) | |
47 | - #define PW3270_TERMINAL_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ | |
48 | - PW3270_TYPE_TERMINAL, pw3270TerminalClass)) | |
49 | - #define PW3270_IS_TERMINAL(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ | |
50 | - PW3270_TYPE_TERMINAL)) | |
51 | - #define PW3270_IS_TERMINAL_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ | |
52 | - PW3270_TYPE_TERMINAL)) | |
53 | - #define PW3270_TERMINAL_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ | |
54 | - GTK_TYPE_APPLICATION_WINDOW, pw3270TerminalClass)) | |
55 | - | |
56 | - | |
57 | - typedef struct _pw3270TerminalClass pw3270TerminalClass; | |
58 | - typedef struct _pw3270Terminal pw3270Terminal; | |
59 | - | |
60 | - GType pw3270Terminal_get_type(); | |
61 | - GtkWidget * pw3270_terminal_new(); | |
62 | - | |
63 | - G_END_DECLS | |
64 | - | |
65 | - | |
66 | -#endif // PW3270_TERMINAL_H_INCLUDED |
src/widgets/terminal/init.c
... | ... | @@ -1,49 +0,0 @@ |
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 | - #include "private.h" | |
31 | - | |
32 | - G_DEFINE_TYPE(pw3270Terminal, pw3270Terminal, GTK_TYPE_V3270); | |
33 | - | |
34 | - static void pw3270Terminal_class_init(pw3270TerminalClass *klass) { | |
35 | - | |
36 | - } | |
37 | - | |
38 | - static void pw3270Terminal_init(pw3270Terminal *widget) { | |
39 | - | |
40 | - | |
41 | - } | |
42 | - | |
43 | - GtkWidget * pw3270_application_window_new(GtkApplication * application) { | |
44 | - | |
45 | - g_return_val_if_fail(GTK_IS_APPLICATION(application), NULL); | |
46 | - return g_object_new(PW3270_TYPE_APPLICATION_WINDOW, "application", application, NULL); | |
47 | - | |
48 | - } | |
49 | - |
src/widgets/terminal/private.h
... | ... | @@ -1,62 +0,0 @@ |
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 PRIVATE_H_INCLUDED | |
31 | - | |
32 | - #define PRIVATE_H_INCLUDED | |
33 | - | |
34 | - #include <config.h> | |
35 | - | |
36 | - #ifndef GETTEXT_PACKAGE | |
37 | - #define GETTEXT_PACKAGE PACKAGE_NAME | |
38 | - #endif | |
39 | - | |
40 | - #include <libintl.h> | |
41 | - #include <glib/gi18n.h> | |
42 | - #include <gtk/gtk.h> | |
43 | - | |
44 | - #include <pw3270/terminal.h> | |
45 | - #include <v3270.h> | |
46 | - #include <lib3270.h> | |
47 | - #include <lib3270/log.h> | |
48 | - | |
49 | - struct _pwTerminalWindow { | |
50 | - | |
51 | - v3270 parent; | |
52 | - | |
53 | - | |
54 | - }; | |
55 | - | |
56 | - struct _pw3270TerminalWindowClass { | |
57 | - | |
58 | - v3270Class parent_class; | |
59 | - | |
60 | - }; | |
61 | - | |
62 | -#endif // PRIVATE_H_INCLUDED |
src/widgets/terminal/terminal.cbp
... | ... | @@ -1,46 +0,0 @@ |
1 | -<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> | |
2 | -<CodeBlocks_project_file> | |
3 | - <FileVersion major="1" minor="6" /> | |
4 | - <Project> | |
5 | - <Option title="PW3270 Terminal Widget" /> | |
6 | - <Option pch_mode="2" /> | |
7 | - <Option compiler="gcc" /> | |
8 | - <Build> | |
9 | - <Target title="Debug"> | |
10 | - <Option output=".bin/Debug/PW3270 Terminal Widget" prefix_auto="1" extension_auto="1" /> | |
11 | - <Option object_output=".obj/Debug/" /> | |
12 | - <Option type="1" /> | |
13 | - <Option compiler="gcc" /> | |
14 | - <Compiler> | |
15 | - <Add option="-g" /> | |
16 | - </Compiler> | |
17 | - </Target> | |
18 | - <Target title="Release"> | |
19 | - <Option output=".bin/Release/PW3270 Terminal Widget" prefix_auto="1" extension_auto="1" /> | |
20 | - <Option object_output=".obj/Release/" /> | |
21 | - <Option type="1" /> | |
22 | - <Option compiler="gcc" /> | |
23 | - <Compiler> | |
24 | - <Add option="-O2" /> | |
25 | - </Compiler> | |
26 | - <Linker> | |
27 | - <Add option="-s" /> | |
28 | - </Linker> | |
29 | - </Target> | |
30 | - </Build> | |
31 | - <Compiler> | |
32 | - <Add option="-Wall" /> | |
33 | - </Compiler> | |
34 | - <Unit filename="../../include/pw3270/terminal.h" /> | |
35 | - <Unit filename="init.c"> | |
36 | - <Option compilerVar="CC" /> | |
37 | - </Unit> | |
38 | - <Unit filename="private.h" /> | |
39 | - <Extensions> | |
40 | - <code_completion /> | |
41 | - <envvars /> | |
42 | - <debugger /> | |
43 | - <lib_finder disable_auto="1" /> | |
44 | - </Extensions> | |
45 | - </Project> | |
46 | -</CodeBlocks_project_file> |