application/menu.c

changeset 2
ea89bbb0c4c8
child 3
c04433993fbb
equal deleted inserted replaced
1:fcacc15a2ef2 2:ea89bbb0c4c8
1 /*
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3 *
4 * Copyright 2020 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 #include "menu.h"
30
31 #include <stdio.h>
32 #include <stdlib.h>
33
34 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
35
36 static UiInteger *tb_sidebar;
37 static UiInteger *tb_browser;
38 static UiInteger *tb_editor;
39
40 static void create_main_menu(void) {
41 ui_menu("File");
42 ui_menuitem_st(UI_STOCK_OPEN, NULL, NULL);
43
44 ui_menu("Edit");
45 ui_menuitem_st(UI_STOCK_UNDO, NULL, NULL);
46 ui_menuitem_st(UI_STOCK_REDO, NULL, NULL);
47
48 }
49
50 static void create_main_toolbar(void) {
51 UiContext *ctx = ui_global_context();
52 tb_sidebar = ui_int_new(ctx, NULL);
53 tb_browser = ui_int_new(ctx, NULL);
54 tb_editor = ui_int_new(ctx, NULL);
55
56 ui_toolitem_toggle("show-sidebar", "Sidebar", NULL, tb_sidebar);
57 ui_toolitem_toggle("show-browser", "Browser", NULL, tb_browser);
58 ui_toolitem_toggle("show-editor", "Editor", NULL, tb_editor);
59 tb_sidebar->value = 1;
60 tb_browser->value = 1;
61 tb_editor->value = 1;
62
63 ui_toolbar_add_default("show-sidebar");
64 ui_toolbar_add_default("show-browser");
65 ui_toolbar_add_default("show-editor");
66 }
67
68 void menu_init(void) {
69 create_main_menu();
70 create_main_toolbar();
71 }
72
73 void action_show_sidebar(UiEvent *event, void *udata) {
74
75 }
76
77 void action_show_browser(UiEvent *event, void *udata) {
78
79 }
80
81 void action_show_editor(UiEvent *event, void *udata) {
82
83 }

mercurial