ui/win32/menu.h

Thu, 08 Jan 2026 18:06:04 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Thu, 08 Jan 2026 18:06:04 +0100
changeset 118
6d0da97105d8
parent 115
e57ca2747782
permissions
-rw-r--r--

update to ucx version 4.0

115
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
1 /*
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
3 *
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
4 * Copyright 2025 Olaf Wintermann. All rights reserved.
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
5 *
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
6 * Redistribution and use in source and binary forms, with or without
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
7 * modification, are permitted provided that the following conditions are met:
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
8 *
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
9 * 1. Redistributions of source code must retain the above copyright
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
10 * notice, this list of conditions and the following disclaimer.
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
11 *
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
12 * 2. Redistributions in binary form must reproduce the above copyright
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
13 * notice, this list of conditions and the following disclaimer in the
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
14 * documentation and/or other materials provided with the distribution.
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
15 *
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
26 * POSSIBILITY OF SUCH DAMAGE.
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
27 */
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
28
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
29 #ifndef MENU_H
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
30 #define MENU_H
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
31
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
32 #include "toolkit.h"
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
33 #include "../ui/menu.h"
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
34 #include "../common/menu.h"
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
35
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
36 #ifdef __cplusplus
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
37 extern "C" {
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
38 #endif
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
39
118
6d0da97105d8 update to ucx version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 115
diff changeset
40 typedef struct UiStateMenuItem {
6d0da97105d8 update to ucx version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 115
diff changeset
41 UiObject *obj;
6d0da97105d8 update to ucx version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 115
diff changeset
42 HMENU menu;
6d0da97105d8 update to ucx version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 115
diff changeset
43 uint64_t id;
6d0da97105d8 update to ucx version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 115
diff changeset
44 UiVar *var;
6d0da97105d8 update to ucx version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 115
diff changeset
45 ui_callback onchange;
6d0da97105d8 update to ucx version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 115
diff changeset
46 void *userdata;
6d0da97105d8 update to ucx version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 115
diff changeset
47 int index;
6d0da97105d8 update to ucx version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 115
diff changeset
48 UiBool state;
6d0da97105d8 update to ucx version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 115
diff changeset
49 } UiStateMenuItem;
6d0da97105d8 update to ucx version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 115
diff changeset
50
115
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
51 typedef void(*ui_menu_add_f)(HMENU, int, UiMenuItemI*, UiObject*);
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
52
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
53 HMENU ui_create_main_menu(UiObject *obj);
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
54
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
55 void ui_add_menu(HMENU parent, int pos, UiMenuItemI *item, UiObject *obj);
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
56 void ui_add_menu_item(HMENU parent, int pos, UiMenuItemI *item, UiObject *obj);
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
57 void ui_add_menu_checkitem(HMENU parent, int pos, UiMenuItemI *item, UiObject *obj);
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
58 void ui_add_menu_radioitem(HMENU parent, int pos, UiMenuItemI *item, UiObject *obj);
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
59 void ui_add_menu_list(HMENU parent, int pos, UiMenuItemI *item, UiObject *obj);
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
60 void ui_add_menu_checklist(HMENU parent, int pos, UiMenuItemI *item, UiObject *obj);
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
61 void ui_add_menu_radiolist(HMENU parent, int pos, UiMenuItemI *item, UiObject *obj);
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
62 void ui_add_menu_separator(HMENU parent, int pos, UiMenuItemI *item, UiObject *obj);
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
63
118
6d0da97105d8 update to ucx version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 115
diff changeset
64 int64_t ui_checkitem_get(UiInteger *i);
6d0da97105d8 update to ucx version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 115
diff changeset
65 void ui_checkitem_set(UiInteger *i, int64_t value);
6d0da97105d8 update to ucx version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 115
diff changeset
66
6d0da97105d8 update to ucx version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 115
diff changeset
67 int64_t ui_radioitem_get(UiInteger *i);
6d0da97105d8 update to ucx version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 115
diff changeset
68 void ui_radioitem_set(UiInteger *i, int64_t value);
6d0da97105d8 update to ucx version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 115
diff changeset
69
115
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
70 #ifdef __cplusplus
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
71 }
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
72 #endif
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
73
e57ca2747782 fix build with newest toolkit version
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
74 #endif //MENU_H

mercurial