2009-02-27 Alberto Garcia <agarcia@igalia.com>
[hildon] / src / hildon-window.h
1 /*
2  * This file is a part of hildon
3  *
4  * Copyright (C) 2006 Nokia Corporation, all rights reserved.
5  *
6  * Contact: Rodrigo Novo <rodrigo.novo@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, or (at your option) any later version.
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_WINDOW_H__
26 #define                                         __HILDON_WINDOW_H__
27
28 #include                                        <gtk/gtk.h>
29 #include                                        "hildon-edit-toolbar.h"
30
31 G_BEGIN_DECLS
32
33 #define                                         HILDON_WINDOW_LONG_PRESS_TIME 800 /* in ms */
34
35 #define                                         HILDON_TYPE_WINDOW \
36                                                 (hildon_window_get_type())
37
38 #define                                         HILDON_WINDOW(obj) \
39                                                 (GTK_CHECK_CAST (obj, HILDON_TYPE_WINDOW, HildonWindow))
40
41 #define                                         HILDON_WINDOW_CLASS(klass) \
42                                                 (GTK_CHECK_CLASS_CAST ((klass),\
43                                                 HILDON_TYPE_WINDOW, HildonWindowClass))
44
45 #define                                         HILDON_IS_WINDOW(obj) \
46                                                 (GTK_CHECK_TYPE (obj, HILDON_TYPE_WINDOW))
47
48 #define                                         HILDON_IS_WINDOW_CLASS(klass) \
49                                                 (GTK_CHECK_CLASS_TYPE ((klass), HILDON_TYPE_WINDOW))
50
51 #define                                         HILDON_WINDOW_GET_CLASS(obj) \
52                                                 ((HildonWindowClass *) G_OBJECT_GET_CLASS(obj))
53
54 typedef struct                                  _HildonWindow HildonWindow;
55
56 typedef struct                                  _HildonWindowClass HildonWindowClass;
57
58 typedef enum
59 {
60     HILDON_WINDOW_CO_COPY,
61     HILDON_WINDOW_CO_CUT,
62     HILDON_WINDOW_CO_PASTE
63 }                                               HildonWindowClipboardOperation;
64
65 struct                                          _HildonWindow
66 {
67     GtkWindow parent;
68 };
69
70 struct                                          _HildonWindowClass
71 {
72     GtkWindowClass parent_class;
73
74     /* opera hacks for clip board operation */
75     void (*clipboard_operation)(HildonWindow *hwindow, int operation);
76     gboolean (*toggle_menu)(HildonWindow * self, guint button, guint32 time);
77     /* Padding for future extension */
78     void (*_hildon_reserved1)(void);
79     void (*_hildon_reserved2)(void);
80 };
81
82 GType G_GNUC_CONST
83 hildon_window_get_type                          (void);
84
85 GtkWidget*
86 hildon_window_new                               (void);
87
88 void        
89 hildon_window_add_with_scrollbar                (HildonWindow *self,
90                                                  GtkWidget    *child);
91
92 GtkMenu*    
93 hildon_window_get_menu                          (HildonWindow *self);
94
95 void
96 hildon_window_set_main_menu                     (HildonWindow *self,
97                                                  GtkMenu      *menu);
98
99 #ifndef HILDON_DISABLE_DEPRECATED
100 void        
101 hildon_window_set_menu                          (HildonWindow *self,
102                                                  GtkMenu      *menu);
103 #endif
104
105 void    
106 hildon_window_add_toolbar                       (HildonWindow *self,
107                                                  GtkToolbar   *toolbar);
108
109 void        
110 hildon_window_remove_toolbar                    (HildonWindow *self,
111                                                  GtkToolbar   *toolbar);
112
113 void
114 hildon_window_set_edit_toolbar                  (HildonWindow      *self,
115                                                  HildonEditToolbar *toolbar);
116
117 gboolean    
118 hildon_window_get_is_topmost                    (HildonWindow *self);
119
120 G_END_DECLS
121
122 #endif                                          /* __HILDON_WINDOW_H__ */