ef7feb2326884b746017957b54d7d4e0cfdc7830
[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 #include <gtk/gtkmenushell.h>
27
28 G_BEGIN_DECLS
29
30 typedef enum {
31   PSPPIRE_WINDOW_USAGE_SYNTAX,
32   PSPPIRE_WINDOW_USAGE_OUTPUT,
33   PSPPIRE_WINDOW_USAGE_DATA
34 } PsppireWindowUsage;
35
36
37 GType psppire_window_usage_get_type (void);
38
39
40 #define G_TYPE_PSPPIRE_WINDOW_USAGE \
41   (psppire_window_usage_get_type())
42
43 \f
44
45
46 #define PSPPIRE_WINDOW_TYPE            (psppire_window_get_type ())
47 #define PSPPIRE_WINDOW(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), PSPPIRE_WINDOW_TYPE, PsppireWindow))
48 #define PSPPIRE_WINDOW_CLASS(class)    (G_TYPE_CHECK_CLASS_CAST ((class), \
49     PSPPIRE_WINDOW_TYPE, PsppireWindowClass))
50 #define PSPPIRE_IS_WINDOW(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
51     PSPPIRE_WINDOW_TYPE))
52 #define PSPPIRE_IS_WINDOW_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
53     PSPPIRE_WINDOW_TYPE))
54
55
56 typedef struct _PsppireWindow       PsppireWindow;
57 typedef struct _PsppireWindowClass  PsppireWindowClass;
58
59
60 struct _PsppireWindow
61 {
62   GtkWindow parent;
63
64   /* <private> */
65   gchar *name;
66   PsppireWindowUsage usage;
67
68   GHashTable *menuitem_table;
69   GtkMenuShell *menu;
70
71   guint insert_handler;
72   guint remove_handler;
73 };
74
75 struct _PsppireWindowClass
76 {
77   GtkWindowClass parent_class;
78 };
79
80 GType      psppire_window_get_type        (void);
81 GtkWidget* psppire_window_new             (PsppireWindowUsage usage);
82
83 const gchar * psppire_window_get_filename (PsppireWindow *);
84
85 void psppire_window_set_filename (PsppireWindow *w, const gchar *filename);
86
87 void psppire_window_minimise_all (void);
88
89
90 G_END_DECLS
91
92 #endif /* __PSPPIRE_WINDOW_H__ */