add existing code (build system, libs, initial mizucp code)
[mizunara.git] / ui / gtk / menu.h
1 /*
2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3  *
4  * Copyright 2017 Olaf Wintermann. All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are met:
8  *
9  *   1. Redistributions of source code must retain the above copyright
10  *      notice, this list of conditions and the following disclaimer.
11  *
12  *   2. Redistributions in binary form must reproduce the above copyright
13  *      notice, this list of conditions and the following disclaimer in the
14  *      documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26  * POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 #ifndef MENU_H
30 #define MENU_H
31
32 #include "../ui/menu.h"
33 #include <ucx/list.h>
34 #include "toolkit.h"
35
36 #ifdef  __cplusplus
37 extern "C" {
38 #endif
39     
40 typedef struct UiMenuItemI      UiMenuItemI;
41 typedef struct UiMenu           UiMenu;
42 typedef struct UiMenuItem       UiMenuItem;
43 typedef struct UiStMenuItem     UiStMenuItem;
44 typedef struct UiCheckItem      UiCheckItem;
45 typedef struct UiCheckItemNV    UiCheckItemNV;
46 typedef struct UiMenuItemList   UiMenuItemList;
47
48 typedef struct UiActiveMenuItemList UiActiveMenuItemList;
49
50 typedef GtkWidget*(*ui_menu_add_f)(GtkWidget *, int, UiMenuItemI*, UiObject*);
51     
52 struct UiMenuItemI {
53     ui_menu_add_f  add_to;
54 };
55
56 struct UiMenu {
57     UiMenuItemI    item;
58     char           *label;
59     UcxList        *items;
60     UiMenu         *parent;
61 };
62
63 struct UiMenuItem {
64     UiMenuItemI    item;
65     ui_callback    callback;
66     char           *label;
67     void           *userdata;
68     UcxList        *groups;
69 };
70
71 struct UiStMenuItem {
72     UiMenuItemI    item;
73     ui_callback    callback;
74     char           *stockid;
75     void           *userdata;
76     UcxList        *groups;
77 };
78
79 struct UiCheckItem {
80     UiMenuItemI    item;
81     char           *label;
82     ui_callback    callback;
83     void           *userdata;
84 };
85
86 struct UiCheckItemNV {
87     UiMenuItemI    item;
88     char           *label;
89     char           *varname;
90 };
91
92 struct UiMenuItemList {
93     UiMenuItemI    item;
94     ui_callback    callback;
95     void           *userdata;
96     UiList         *list;
97 };
98
99 struct UiActiveMenuItemList {
100     UiObject     *object;
101     GtkMenuShell *menu;
102     int          index;
103     int          oldcount;
104     UiList       *list;
105     ui_callback  callback;
106     void         *userdata;
107 };
108
109 GtkWidget *ui_create_menubar(UiObject *obj);
110
111 void add_menu_widget(GtkWidget *parent, int i, UiMenuItemI *item, UiObject *obj);
112 void add_menuitem_widget(GtkWidget *parent, int i, UiMenuItemI *item, UiObject *obj);
113 void add_menuitem_st_widget(GtkWidget *p, int i, UiMenuItemI *item, UiObject *obj);
114 void add_menuseparator_widget(GtkWidget *p, int i, UiMenuItemI *item, UiObject *obj);
115 void add_checkitem_widget(GtkWidget *p, int i, UiMenuItemI *item, UiObject *obj);
116 void add_checkitemnv_widget(GtkWidget *p, int i, UiMenuItemI *item, UiObject *obj);
117 void add_menuitem_list_widget(GtkWidget *p, int i, UiMenuItemI *item, UiObject *obj);
118
119 void ui_update_menuitem_list(UiEvent *event, UiActiveMenuItemList *list);
120 void ui_menu_event_wrapper(GtkMenuItem *item, UiEventData *event);
121 void ui_menu_event_toggled(GtkCheckMenuItem *ci, UiEventData *event);
122 int64_t ui_checkitem_get(UiInteger *i);
123 void ui_checkitem_set(UiInteger *i, int64_t value);
124
125 #ifdef  __cplusplus
126 }
127 #endif
128
129 #endif  /* MENU_H */
130