]> Pileus Git - ~andy/gtk/blob - gtk/gtkpagesetupunixdialog.h
c53f0ac603c63a4b4678e13214457fa15e40a961
[~andy/gtk] / gtk / gtkpagesetupunixdialog.h
1 /* GtkPageSetupUnixDialog
2  * Copyright (C) 2006 Alexander Larsson <alexl@redhat.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #if !defined (__GTK_UNIX_PRINT_H_INSIDE__) && !defined (GTK_COMPILATION)
21 #error "Only <gtk/gtkunixprint.h> can be included directly."
22 #endif
23
24 #ifndef __GTK_PAGE_SETUP_UNIX_DIALOG_H__
25 #define __GTK_PAGE_SETUP_UNIX_DIALOG_H__
26
27 #include <gtk/gtk.h>
28
29 G_BEGIN_DECLS
30
31 #define GTK_TYPE_PAGE_SETUP_UNIX_DIALOG                  (gtk_page_setup_unix_dialog_get_type ())
32 #define GTK_PAGE_SETUP_UNIX_DIALOG(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PAGE_SETUP_UNIX_DIALOG, GtkPageSetupUnixDialog))
33 #define GTK_PAGE_SETUP_UNIX_DIALOG_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_PAGE_SETUP_UNIX_DIALOG, GtkPageSetupUnixDialogClass))
34 #define GTK_IS_PAGE_SETUP_UNIX_DIALOG(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PAGE_SETUP_UNIX_DIALOG))
35 #define GTK_IS_PAGE_SETUP_UNIX_DIALOG_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_PAGE_SETUP_UNIX_DIALOG))
36 #define GTK_PAGE_SETUP_UNIX_DIALOG_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_PAGE_SETUP_UNIX_DIALOG, GtkPageSetupUnixDialogClass))
37
38
39 typedef struct _GtkPageSetupUnixDialog         GtkPageSetupUnixDialog;
40 typedef struct _GtkPageSetupUnixDialogClass    GtkPageSetupUnixDialogClass;
41 typedef struct _GtkPageSetupUnixDialogPrivate  GtkPageSetupUnixDialogPrivate;
42
43 struct _GtkPageSetupUnixDialog
44 {
45   GtkDialog parent_instance;
46
47   GtkPageSetupUnixDialogPrivate *priv;
48 };
49
50 struct _GtkPageSetupUnixDialogClass
51 {
52   GtkDialogClass parent_class;
53
54   /* Padding for future expansion */
55   void (*_gtk_reserved1) (void);
56   void (*_gtk_reserved2) (void);
57   void (*_gtk_reserved3) (void);
58   void (*_gtk_reserved4) (void);
59 };
60
61 GType             gtk_page_setup_unix_dialog_get_type           (void) G_GNUC_CONST;
62 GtkWidget *       gtk_page_setup_unix_dialog_new                (const gchar            *title,
63                                                                  GtkWindow              *parent);
64 void              gtk_page_setup_unix_dialog_set_page_setup     (GtkPageSetupUnixDialog *dialog,
65                                                                  GtkPageSetup           *page_setup);
66 GtkPageSetup *    gtk_page_setup_unix_dialog_get_page_setup     (GtkPageSetupUnixDialog *dialog);
67 void              gtk_page_setup_unix_dialog_set_print_settings (GtkPageSetupUnixDialog *dialog,
68                                                                  GtkPrintSettings       *print_settings);
69 GtkPrintSettings *gtk_page_setup_unix_dialog_get_print_settings (GtkPageSetupUnixDialog *dialog);
70
71 G_END_DECLS
72
73 #endif /* __GTK_PAGE_SETUP_UNIX_DIALOG_H__ */