Commit d3931317166d87b78b33f2eb71684088f8d98ae8
1 parent
6b602482
Exists in
master
and in
1 other branch
Redesigning print dialog.
Showing
1 changed file
with
58 additions
and
0 deletions
Show diff stats
@@ -0,0 +1,58 @@ | @@ -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 hostdialog.h 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_PRINT_OPERATION_H_INCLUDED | ||
31 | + | ||
32 | + #include <gtk/gtk.h> | ||
33 | + #include <lib3270.h> | ||
34 | + | ||
35 | + #define V3270_PRINT_OPERATION_H_INCLUDED | ||
36 | + | ||
37 | + G_BEGIN_DECLS | ||
38 | + | ||
39 | +/*--[ Print Operation ]------------------------------------------------------------------------------*/ | ||
40 | + | ||
41 | + #define GTK_TYPE_V3270_PRINT_OPERATION (V3270PrintOperation_get_type()) | ||
42 | + #define GTK_V3270_PRINT_OPERATION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_V3270_PRINT_OPERATION, V3270PrintOperation)) | ||
43 | + #define GTK_V3270_PRINT_OPERATION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_V3270_PRINT_OPERATION, V3270PrintOperationClass)) | ||
44 | + #define GTK_IS_V3270_PRINT_OPERATION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_V3270_PRINT_OPERATION)) | ||
45 | + #define GTK_IS_V3270_PRINT_OPERATION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_V3270_PRINT_OPERATION)) | ||
46 | + #define GTK_V3270_PRINT_OPERATION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_V3270_PRINT_OPERATION, V3270V3270PrintOperationClass)) | ||
47 | + | ||
48 | + typedef struct _V3270PrintOperation V3270PrintOperation; | ||
49 | + typedef struct _V3270PrintPrintOperation V3270PrintOperationClass; | ||
50 | + | ||
51 | +/*--[ Prototipes ]-----------------------------------------------------------------------------------*/ | ||
52 | + | ||
53 | + LIB3270_EXPORT V3270PrintOperation * v3270_print_operation_new(GtkWidget *widget, LIB3270_PRINT_MODE mode); | ||
54 | + | ||
55 | + G_END_DECLS | ||
56 | + | ||
57 | +#endif // V3270_PRINT_OPERATION_H_INCLUDED | ||
58 | + |