ca5136a7bafc32cd28696ab0c0efdc52479a5858
[pspp-builds.git] / src / ui / gui / psppire-window.h
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2008  Free Software Foundation
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program 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
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17
18 #ifndef __PSPPIRE_WINDOW_H__
19 #define __PSPPIRE_WINDOW_H__
20
21
22 #include <glib.h>
23 #include <glib-object.h>
24 #include <gtk/gtkwindow.h>
25 #include <gtk/gtkaction.h>
26
27 G_BEGIN_DECLS
28
29 typedef enum {
30   PSPPIRE_WINDOW_USAGE_SYNTAX,
31   PSPPIRE_WINDOW_USAGE_OUTPUT,
32   PSPPIRE_WINDOW_USAGE_DATA
33 } PsppireWindowUsage;
34
35
36 GType psppire_window_usage_get_type (void);
37
38
39 #define G_TYPE_PSPPIRE_WINDOW_USAGE \
40   (psppire_window_usage_get_type())
41
42 \f
43
44
45 #define PSPPIRE_WINDOW_TYPE            (psppire_window_get_type ())
46 #define PSPPIRE_WINDOW(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), PSPPIRE_WINDOW_TYPE, PsppireWindow))
47 #define PSPPIRE_WINDOW_CLASS(class)    (G_TYPE_CHECK_CLASS_CAST ((class), \
48     PSPPIRE_WINDOW_TYPE, PsppireWindowClass))
49 #define PSPPIRE_IS_WINDOW(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
50     PSPPIRE_WINDOW_TYPE))
51 #define PSPPIRE_IS_WINDOW_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
52     PSPPIRE_WINDOW_TYPE))
53
54
55 typedef struct _PsppireWindow       PsppireWindow;
56 typedef struct _PsppireWindowClass  PsppireWindowClass;
57
58
59 struct _PsppireWindow
60 {
61   GtkWindow parent;
62
63   /* <private> */
64   gchar *name;
65   gboolean finalized;
66   PsppireWindowUsage usage;
67 };
68
69 struct _PsppireWindowClass
70 {
71   GtkWindowClass parent_class;
72
73   GHashTable *name_table;
74 };
75
76 GType      psppire_window_get_type        (void);
77 GtkWidget* psppire_window_new             (PsppireWindowUsage usage);
78
79 const gchar * psppire_window_get_filename (PsppireWindow *);
80
81 void psppire_window_set_filename (PsppireWindow *w, const gchar *filename);
82
83 void psppire_window_minimise_all (void);
84
85
86 G_END_DECLS
87
88 #endif /* __PSPPIRE_WINDOW_H__ */