Initial import
[mdictionary] / include / ws_gui_layout.h
1 /*****************
2 * Copyright 2006, ComArch S.A
3 * All rights reserved
4 *****************/
5
6 #ifndef _WS_GUI_LAYOUT
7 #define _WS_GUI_LAYOUT
8
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12
13 #include "ws_gui.h"
14 #include "ws_gui_callbacks.h"
15
16 /**
17 * \brief create main window (all widgets)
18 *
19 */
20 void ws_gui_create_window(gpointer user_data);
21
22 /**
23 * \brief create find toolbar
24 *
25 */
26 void ws_gui_create_find_toolbar(gpointer user_data);
27
28 /**
29 * \brief create application menu
30 *
31 */
32 void ws_gui_create_main_menu (gpointer user_data);
33
34 /**
35 * \brief create popup menu
36 *
37 */
38 void ws_gui_create_popup_menu (GtkWidget *widget, GdkEventButton *event, gpointer user_data);
39
40 #ifdef __cplusplus
41 }
42 #endif
43
44 #endif