1 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ |
---|
2 | /* |
---|
3 | * gnome-print-config-dialog.h: A dialog to configure specific |
---|
4 | * printer settings. |
---|
5 | * |
---|
6 | * NOTE: This interface is considered private and should not be used by |
---|
7 | * applications directly! |
---|
8 | * |
---|
9 | * This program is free software; you can redistribute it and/or |
---|
10 | * modify it under the terms of the GNU Library General Public License |
---|
11 | * as published by the Free Software Foundation; either version 2 of |
---|
12 | * the License, or (at your option) any later version. |
---|
13 | * |
---|
14 | * This program is distributed in the hope that it will be useful, |
---|
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
17 | * GNU Library General Public License for more details. |
---|
18 | * |
---|
19 | * You should have received a copy of the GNU Library General Public |
---|
20 | * License along with this program; if not, write to the Free Software |
---|
21 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
---|
22 | * |
---|
23 | * Authors: |
---|
24 | * Andreas J. Guelzow <aguelzow@taliesin.ca> |
---|
25 | * |
---|
26 | * Copyright (C) 2003 Andreas J. Guelzow |
---|
27 | * |
---|
28 | */ |
---|
29 | |
---|
30 | #ifndef __GNOME_PRINT_CONFIG_DIALOG_H__ |
---|
31 | #define __GNOME_PRINT_CONFIG_DIALOG_H__ |
---|
32 | |
---|
33 | #include <glib.h> |
---|
34 | |
---|
35 | G_BEGIN_DECLS |
---|
36 | |
---|
37 | #define GNOME_TYPE_PRINT_CONFIG_DIALOG (gnome_print_config_dialog_get_type ()) |
---|
38 | #define GNOME_PRINT_CONFIG_DIALOG(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GNOME_TYPE_PRINT_CONFIG_DIALOG, GnomePrintConfigDialog)) |
---|
39 | #define GNOME_PRINT_CONFIG_DIALOG_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), GNOME_TYPE_PRINT_CONFIG_DIALOG, GnomePrintConfigDialogClass)) |
---|
40 | #define GNOME_IS_PRINT_CONFIG_DIALOG(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GNOME_TYPE_PRINT_CONFIG_DIALOG)) |
---|
41 | #define GNOME_IS_PRINT_CONFIG_DIALOG_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((o), GNOME_TYPE_PRINT_CONFIG_DIALOG)) |
---|
42 | #define GNOME_PRINT_CONFIG_DIALOG_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GNOME_TYPE_PRINT_CONFIG_DIALOG), GnomePrintConfigDialogClass) |
---|
43 | |
---|
44 | typedef struct _GnomePrintConfigDialog GnomePrintConfigDialog; |
---|
45 | typedef struct _GnomePrintConfigDialogClass GnomePrintConfigDialogClass; |
---|
46 | |
---|
47 | #include <gtk/gtk.h> |
---|
48 | #include <libgnomeprint/gnome-print-job.h> |
---|
49 | |
---|
50 | GType gnome_print_config_dialog_get_type (void); |
---|
51 | |
---|
52 | GtkWidget * gnome_print_config_dialog_new (GnomePrintConfig *gpc); |
---|
53 | |
---|
54 | /* For language bindings */ |
---|
55 | void gnome_print_config_dialog_construct (GnomePrintConfigDialog *gpd); |
---|
56 | |
---|
57 | G_END_DECLS |
---|
58 | |
---|
59 | #endif /* __GNOME_PRINT_CONFIG_DIALOG_H__ */ |
---|