Commit 9055e808708b2e1bfc67ae08f50332578ba74a36
1 parent
0f2b031d
Exists in
master
and in
1 other branch
Fixing problems caused by changes in lib3270.
Showing
4 changed files
with
46 additions
and
3 deletions
Show diff stats
src/include/internals.h
src/include/v3270.h
| @@ -237,9 +237,6 @@ | @@ -237,9 +237,6 @@ | ||
| 237 | LIB3270_EXPORT GtkIMContext * v3270_get_im_context(GtkWidget *widget); | 237 | LIB3270_EXPORT GtkIMContext * v3270_get_im_context(GtkWidget *widget); |
| 238 | LIB3270_EXPORT const gchar * v3270_get_default_font_name(); | 238 | LIB3270_EXPORT const gchar * v3270_get_default_font_name(); |
| 239 | 239 | ||
| 240 | - LIB3270_EXPORT gboolean v3270_get_toggle(GtkWidget *widget, LIB3270_TOGGLE ix); | ||
| 241 | - LIB3270_EXPORT gboolean v3270_set_toggle(GtkWidget *widget, LIB3270_TOGGLE ix, gboolean state); | ||
| 242 | - | ||
| 243 | LIB3270_EXPORT void v3270_popup_message(GtkWidget *widget, LIB3270_NOTIFY type, const gchar *title, const gchar *message, const gchar *text); | 240 | LIB3270_EXPORT void v3270_popup_message(GtkWidget *widget, LIB3270_NOTIFY type, const gchar *title, const gchar *message, const gchar *text); |
| 244 | LIB3270_EXPORT const gchar * v3270_get_session_name(GtkWidget *widget); | 241 | LIB3270_EXPORT const gchar * v3270_get_session_name(GtkWidget *widget); |
| 245 | LIB3270_EXPORT void v3270_set_session_name(GtkWidget *widget, const gchar *name); | 242 | LIB3270_EXPORT void v3270_set_session_name(GtkWidget *widget, const gchar *name); |
| @@ -0,0 +1,44 @@ | @@ -0,0 +1,44 @@ | ||
| 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_TOGGLE_H_INCLUDED | ||
| 31 | + | ||
| 32 | + #define V3270_TOGGLE_H_INCLUDED 1 | ||
| 33 | + | ||
| 34 | + #include <v3270.h> | ||
| 35 | + #include <lib3270/toggle.h> | ||
| 36 | + | ||
| 37 | + G_BEGIN_DECLS | ||
| 38 | + | ||
| 39 | + LIB3270_EXPORT gboolean v3270_get_toggle(GtkWidget *widget, LIB3270_TOGGLE ix); | ||
| 40 | + LIB3270_EXPORT gboolean v3270_set_toggle(GtkWidget *widget, LIB3270_TOGGLE ix, gboolean state); | ||
| 41 | + | ||
| 42 | + G_END_DECLS | ||
| 43 | + | ||
| 44 | +#endif // V3270_H_INCLUDED |
v3270.cbp
| @@ -168,6 +168,7 @@ | @@ -168,6 +168,7 @@ | ||
| 168 | <Unit filename="src/include/v3270/print.h" /> | 168 | <Unit filename="src/include/v3270/print.h" /> |
| 169 | <Unit filename="src/include/v3270/security.h" /> | 169 | <Unit filename="src/include/v3270/security.h" /> |
| 170 | <Unit filename="src/include/v3270/settings.h" /> | 170 | <Unit filename="src/include/v3270/settings.h" /> |
| 171 | + <Unit filename="src/include/v3270/toggle.h" /> | ||
| 171 | <Unit filename="src/include/v3270/trace.h" /> | 172 | <Unit filename="src/include/v3270/trace.h" /> |
| 172 | <Unit filename="src/selection/copy.c"> | 173 | <Unit filename="src/selection/copy.c"> |
| 173 | <Option compilerVar="CC" /> | 174 | <Option compilerVar="CC" /> |