* doc/hildon-docs.sgml * doc/hildon.types * examples/Makefile.am * examples/hildon...
[hildon] / src / hildon-app-menu-private.h
1 /*
2  * This file is a part of hildon
3  *
4  * Copyright (C) 2008 Nokia Corporation, all rights reserved.
5  *
6  * Contact: Karl Lattimer <karl.lattimer@nokia.com>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser Public License as published by
10  * the Free Software Foundation; version 2 of the license.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Lesser Public License for more details.
16  *
17  */
18
19 #ifndef                                         __HILDON_APP_MENU_PRIVATE_H__
20 #define                                         __HILDON_APP_MENU_PRIVATE_H__
21
22 G_BEGIN_DECLS
23
24 #define                                         HILDON_APP_MENU_GET_PRIVATE(obj) \
25                                                 (G_TYPE_INSTANCE_GET_PRIVATE ((obj), \
26                                                 HILDON_TYPE_APP_MENU, HildonAppMenuPrivate));
27
28 typedef struct                                  _HildonAppMenuPrivate HildonAppMenuPrivate;
29
30 struct                                          _HildonAppMenuPrivate
31 {
32     GtkBox *filters_hbox;
33     GtkBox *vbox;
34     GtkTable *table;
35     GtkSizeGroup *sizegroup;
36     GdkWindow *transfer_window;
37     int nitems;
38 };
39
40
41 G_END_DECLS
42
43 #endif /* __HILDON_APP_MENU_PRIVATE_H__ */