UNIXworkcode

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 "../common/menu.h" 34 #include <cx/list.h> 35 #include "toolkit.h" 36 37 38 #ifdef __cplusplus 39 extern "C" { 40 #endif 41 42 UIMENU ui_create_menu(UiMenuBuilder *builder, UiObject *obj); 43 void ui_widget_set_contextmenu(GtkWidget *widget, UIMENU menu); 44 45 #if GTK_MAJOR_VERSION <= 3 46 47 typedef struct UiActiveMenuItemList UiActiveMenuItemList; 48 49 typedef void(*ui_menu_add_f)(GtkWidget *, int, UiMenuItemI*, UiObject*); 50 51 struct UiActiveMenuItemList { 52 UiObject *object; 53 GtkMenuShell *menu; 54 int index; 55 int oldcount; 56 UiList *list; 57 ui_getvaluefunc getvalue; 58 ui_callback callback; 59 void *userdata; 60 }; 61 62 GtkWidget *ui_create_menubar(UiObject *obj); 63 64 void ui_add_menu_items(GtkWidget *parent, int i, UiMenu *menu, UiObject *obj); 65 66 void add_menu_widget(GtkWidget *parent, int i, UiMenuItemI *item, UiObject *obj); 67 void add_menuitem_widget(GtkWidget *parent, int i, UiMenuItemI *item, UiObject *obj); 68 void add_menuitem_st_widget(GtkWidget *p, int i, UiMenuItemI *item, UiObject *obj); 69 void add_menuseparator_widget(GtkWidget *p, int i, UiMenuItemI *item, UiObject *obj); 70 void add_checkitem_widget(GtkWidget *p, int i, UiMenuItemI *item, UiObject *obj); 71 void add_radioitem_widget(GtkWidget *p, int index, UiMenuItemI *item, UiObject *obj); 72 void add_checkitemnv_widget(GtkWidget *p, int i, UiMenuItemI *item, UiObject *obj); 73 void add_menuitem_list_widget(GtkWidget *p, int i, UiMenuItemI *item, UiObject *obj); 74 75 void ui_update_menuitem_list(UiEvent *event, UiActiveMenuItemList *list); 76 void ui_menu_event_wrapper(GtkMenuItem *item, UiEventData *event); 77 void ui_menu_event_toggled(GtkCheckMenuItem *ci, UiEventData *event); 78 int64_t ui_checkitem_get(UiInteger *i); 79 void ui_checkitem_set(UiInteger *i, int64_t value); 80 81 #endif /* GTK_MAJOR_VERSION <= 3 */ 82 83 #if GTK_MAJOR_VERSION >= 4 84 85 typedef void(*ui_gmenu_add_f)(GMenu *, int, UiMenuItemI*, UiObject*); 86 87 typedef struct UiActiveGMenuItemList UiActiveGMenuItemList; 88 struct UiActiveGMenuItemList { 89 UiObject *object; 90 GMenu *menu; 91 char action[32]; 92 int index; 93 int oldcount; 94 UiVar *var; 95 ui_getvaluefunc getvalue; 96 ui_callback callback; 97 void *userdata; 98 }; 99 100 void ui_gmenu_add_menu_items(GMenu *parent, int i, UiMenu *menu, UiObject *obj); 101 102 void ui_gmenu_add_menu(GMenu *parent, int index, UiMenuItemI *item, UiObject *obj); 103 void ui_gmenu_add_menuitem(GMenu *parent, int index, UiMenuItemI *item, UiObject *obj); 104 void ui_gmenu_add_menuseparator(GMenu *p, int index, UiMenuItemI *item, UiObject *obj); 105 void ui_gmenu_add_checkitem(GMenu *p, int index, UiMenuItemI *item, UiObject *obj); 106 void ui_gmenu_add_radioitem(GMenu *p, int index, UiMenuItemI *item, UiObject *obj); 107 void ui_gmenu_add_menuitem_list(GMenu *p, int index, UiMenuItemI *item, UiObject *obj); 108 109 void ui_activate_event_wrapper(GSimpleAction* self, GVariant* parameter, UiEventData *event); 110 void ui_menu_list_item_activate_event_wrapper(GSimpleAction* self, GVariant* parameter, UiEventData *event); 111 void ui_update_gmenu_item_list(UiEvent *event, UiActiveGMenuItemList *list); 112 113 #endif 114 115 116 #ifdef __cplusplus 117 } 118 #endif 119 120 #endif /* MENU_H */ 121 122