Updated copyright text/header in most source files.
[geda-gaf/peter-b.git] / gschem / include / x_print.h
blob9e68518880f8d85079016491293781a1884dce69
1 /* gEDA - GPL Electronic Design Automation
2 * gschem - gEDA Schematic Capture
3 * Copyright (C) 1998-2010 Ales Hvezda
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #ifndef __X_PRINT_H__
22 #define __X_PRINT_H__
25 * PrintDialog class
28 #define TYPE_PRINT_DIALOG (print_dialog_get_type())
29 #define PRINT_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_PRINT_DIALOG, PrintDialog))
30 #define PRINT_DIALOG_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), TYPE_PRINT_DIALOG))
31 #define IS_PRINT_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_PRINT_DIALOG))
33 typedef struct _PrintDialogClass PrintDialogClass;
34 typedef struct _PrintDialog PrintDialog;
36 struct _PrintDialogClass
38 GschemDialogClass parent_class;
41 struct _PrintDialog
43 GschemDialog parent_instance;
45 GtkEntry *fnfield, *cmdfield;
46 GtkRadioButton *fileradio, *cmdradio;
47 GtkButton *saveasbutton;
48 GtkComboBox *orientcbox, *typecbox, *papercbox;
51 GType print_dialog_get_type ();
53 #endif /* !__X_PRINT_H__ */