source: trunk/third/libgnomeprintui/libgnomeprintui/gnome-print-config-dialog-private.h @ 20964

Revision 20964, 1.5 KB checked in by ghudson, 20 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r20963, which included commits to RCS files with non-trunk default branches.
Line 
1/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
3#ifndef __GNOME_PRINT_CONFIG_DIALOG_PRIVATE_H__
4#define __GNOME_PRINT_CONFIG_DIALOG_PRIVATE_H__
5
6/*
7 *  gnome-print-config-dialog-private.h: A dialog to configure specific
8 *  printer settings.
9 *
10 *  NOTE: This interface is considered private and should not be used by
11 *  applications directly!
12 *
13 *  This program is free software; you can redistribute it and/or
14 *  modify it under the terms of the GNU Library General Public License
15 *  as published by the Free Software Foundation; either version 2 of
16 *  the License, or (at your option) any later version.
17 *
18 *  This program is distributed in the hope that it will be useful,
19 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
20 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 *  GNU Library General Public License for more details.
22 *
23 *  You should have received a copy of the GNU Library General Public
24 *  License along with this program; if not, write to the Free Software
25 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 *
27 *  Authors:
28 *      Andreas J. Guelzow <aguelzow@taliesin.ca>
29 *
30 *  Copyright (C) 2003  Andreas J. Guelzow
31 *
32 */
33
34#include "gnome-print-config-dialog.h"
35
36struct _GnomePrintConfigDialog {
37        GtkDialog dialog;
38
39        GnomePrintConfig *config;
40
41        GtkWidget *duplex;
42        GtkWidget *duplex_image;
43        GtkWidget *tumble;
44        GtkWidget *tumble_image;
45};
46
47struct _GnomePrintConfigDialogClass {
48        GtkDialogClass parent_class;
49};
50
51
52#endif /*  __GNOME_PRINT_CONFIG_DIALOG_PRIVATE_H__ */
Note: See TracBrowser for help on using the repository browser.