1 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ |
---|
2 | |
---|
3 | #ifndef __GNOME_PRINT_DIALOG_PRIVATE_H__ |
---|
4 | #define __GNOME_PRINT_DIALOG_PRIVATE_H__ |
---|
5 | |
---|
6 | /* |
---|
7 | * gnome-print-dialog-private.h: Private structs of gnome-print-dialog |
---|
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 | * Michael Zucchi <notzed@helixcode.com> |
---|
25 | * Chema Celorio <chema@celorio.com> |
---|
26 | * Lauris Kaplinski <lauris@ximian.com> |
---|
27 | * |
---|
28 | * Copyright (C) 2000-2002 Ximian Inc. |
---|
29 | * |
---|
30 | */ |
---|
31 | |
---|
32 | struct _GnomePrintDialog { |
---|
33 | GtkDialog dialog; |
---|
34 | |
---|
35 | GnomePrintConfig *config; |
---|
36 | |
---|
37 | GtkWidget *notebook; |
---|
38 | |
---|
39 | GtkWidget *job; |
---|
40 | GtkWidget *printer; |
---|
41 | }; |
---|
42 | |
---|
43 | struct _GnomePrintDialogClass { |
---|
44 | GtkDialogClass parent_class; |
---|
45 | }; |
---|
46 | |
---|
47 | |
---|
48 | #endif /* __GNOME_PRINT_DIALOG_PRIVATE_H__ */ |
---|