muteki
Loading...
Searching...
No Matches
deskbox.h
1/*
2 * Copyright 2024-present dogtopus
3 * SPDX-License-Identifier: MIT
4 */
5
11#ifndef __MUTEKI_UI_VIEWS_DESKBOX_H__
12#define __MUTEKI_UI_VIEWS_DESKBOX_H__
13
14#include <muteki/ui/common.h>
15
16#ifdef __cplusplus
17extern "C" {
18#endif
19
20enum ui_view_deskbox_flag_e {
21 VIEW_DESKBOX_NONE = 0x0000,
22 VIEW_DESKBOX_CLOSE_BUTTON = 0x0001,
23 VIEW_DESKBOX_DONE_BUTTON = 0x0002,
24 VIEW_DESKBOX_SAVE_BUTTON = 0x0004,
25 VIEW_DESKBOX_FUNCTION_MENU_BUTTON = 0x0010,
26 VIEW_DESKBOX_STYLE_NORMAL = 0x0000,
27 VIEW_DESKBOX_STYLE_NONE = 0x0100,
28 VIEW_DESKBOX_STYLE_SIMPLE = 0x0200,
29 VIEW_DESKBOX_STYLE_FLOAT = 0x0400,
30 VIEW_DESKBOX_STYLE_POPUP = 0x0800,
31 VIEW_DESKBOX_NO_CLOSE_BUTTON = 0x80000,
32};
33
34#ifdef __cplusplus
35} // extern "C"
36#endif
37
38#endif // __MUTEKI_UI_VIEWS_DESKBOX_H__
Common data structures and definitions for the UI subsystem.