2006-11-16 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[hildon] / src / hildon-program.h
1 /*
2  * This file is part of hildon-libs
3  *
4  * Copyright (C) 2006 Nokia Corporation, all rights reserved.
5  *
6  * Contact: Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation; version 2.1 of
11  * the License.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  *
23  */
24
25 #ifndef __HILDON_PROGRAM_H__
26 #define __HILDON_PROGRAM_H__
27
28 #include<glib-object.h>
29 #include"hildon-window.h"
30
31 G_BEGIN_DECLS
32 typedef struct _HildonProgram HildonProgram;
33 typedef struct _HildonProgramClass HildonProgramClass;
34
35 #define HILDON_TYPE_PROGRAM (hildon_program_get_type())
36 #define HILDON_PROGRAM(obj) (G_TYPE_CHECK_INSTANCE_CAST (obj, \
37             HILDON_TYPE_PROGRAM, \
38             HildonProgram))
39 #define HILDON_IS_PROGRAM(obj) (G_TYPE_CHECK_INSTANCE_TYPE (obj, \
40             HILDON_TYPE_PROGRAM))
41
42 struct _HildonProgram
43 {
44     GObject parent;
45 };
46
47 struct _HildonProgramClass
48 {
49     GObjectClass parent;
50
51     /* Padding for future extension */
52     void (*_hildon_reserved1)(void);
53     void (*_hildon_reserved2)(void);
54     void (*_hildon_reserved3)(void);
55     void (*_hildon_reserved4)(void);
56
57 };
58
59 GType
60 hildon_program_get_type (void);
61
62 /* Public methods */
63
64 HildonProgram *
65 hildon_program_get_instance (void);
66
67 void
68 hildon_program_add_window (HildonProgram *self, HildonWindow *window);
69
70 void
71 hildon_program_remove_window (HildonProgram *self, HildonWindow *window);
72
73 void
74 hildon_program_set_can_hibernate (HildonProgram *self, gboolean killable);
75
76 gboolean
77 hildon_program_get_can_hibernate (HildonProgram *self);
78
79 void
80 hildon_program_set_common_menu (HildonProgram *self, GtkMenu *menu);
81
82 GtkMenu *
83 hildon_program_get_common_menu (HildonProgram *self);
84
85 void
86 hildon_program_set_common_toolbar (HildonProgram *self, GtkToolbar *toolbar);
87
88 GtkToolbar *
89 hildon_program_get_common_toolbar (HildonProgram *self);
90
91 gboolean
92 hildon_program_get_is_topmost (HildonProgram *self);
93
94 G_END_DECLS
95 #endif /* __HILDON_PROGRAM_H__ */