1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 menu.h for the Openbox window manager
4 Copyright (c) 2003-2007 Dana Jansens
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 See the COPYING file for a copy of the GNU General Public License.
25 #include "render/render.h"
26 #include "parser/parse.h"
32 struct _ObMenuEntryFrame
;
34 typedef struct _ObMenu ObMenu
;
35 typedef struct _ObMenuEntry ObMenuEntry
;
36 typedef struct _ObNormalMenuEntry ObNormalMenuEntry
;
37 typedef struct _ObSubmenuMenuEntry ObSubmenuMenuEntry
;
38 typedef struct _ObSeparatorMenuEntry ObSeparatorMenuEntry
;
40 typedef void (*ObMenuUpdateFunc
)(struct _ObMenuFrame
*frame
, gpointer data
);
41 typedef void (*ObMenuExecuteFunc
)(struct _ObMenuEntry
*entry
,
42 guint state
, gpointer data
, Time time
);
43 typedef void (*ObMenuDestroyFunc
)(struct _ObMenu
*menu
, gpointer data
);
47 /* Name of the menu. Used in the showmenu action. */
51 /*! The shortcut key that would be used to activate this menu if it was
52 displayed as a submenu */
54 /*! The shortcut's position in the string */
55 guint shortcut_position
;
57 /*! If the shortcut key should be shown in menu entries even when it
58 is the first character in the string */
59 gboolean show_all_shortcuts
;
61 /* Command to execute to rebuild the menu */
64 /* ObMenuEntry list */
70 ObMenuUpdateFunc update_func
;
71 ObMenuExecuteFunc execute_func
;
72 ObMenuDestroyFunc destroy_func
;
74 /* Pipe-menu parent, we get destroyed when it is destroyed */
80 OB_MENU_ENTRY_TYPE_NORMAL
,
81 OB_MENU_ENTRY_TYPE_SUBMENU
,
82 OB_MENU_ENTRY_TYPE_SEPARATOR
85 struct _ObNormalMenuEntry
{
87 /*! The shortcut key that would be used to activate this menu entry */
89 /*! The shortcut's position in the string */
90 guint shortcut_position
;
95 /* List of ObActions */
101 RrPixel32
*icon_data
;
105 RrColor
*mask_normal_color
;
106 RrColor
*mask_disabled_color
;
107 RrColor
*mask_selected_color
;
110 struct _ObSubmenuMenuEntry
{
115 struct _ObSeparatorMenuEntry
{
121 ObMenuEntryType type
;
127 ObNormalMenuEntry normal
;
128 ObSubmenuMenuEntry submenu
;
129 ObSeparatorMenuEntry separator
;
133 void menu_startup(gboolean reconfig
);
134 void menu_shutdown(gboolean reconfig
);
136 ObMenu
* menu_new(const gchar
*name
, const gchar
*title
, gpointer data
);
137 void menu_free(ObMenu
*menu
);
139 /* Repopulate a pipe-menu by running its command */
140 void menu_pipe_execute(ObMenu
*self
);
142 void menu_show_all_shortcuts(ObMenu
*self
, gboolean show
);
144 void menu_show(gchar
*name
, gint x
, gint y
, struct _ObClient
*client
);
146 void menu_set_update_func(ObMenu
*menu
, ObMenuUpdateFunc func
);
147 void menu_set_execute_func(ObMenu
*menu
, ObMenuExecuteFunc func
);
148 void menu_set_destroy_func(ObMenu
*menu
, ObMenuDestroyFunc func
);
150 /* functions for building menus */
151 ObMenuEntry
* menu_add_normal(ObMenu
*menu
, gint id
, const gchar
*label
,
153 ObMenuEntry
* menu_add_submenu(ObMenu
*menu
, gint id
, const gchar
*submenu
);
154 ObMenuEntry
* menu_add_separator(ObMenu
*menu
, gint id
, const gchar
*label
);
156 void menu_clear_entries(ObMenu
*menu
);
157 void menu_entry_remove(ObMenuEntry
*self
);
159 void menu_entry_set_label(ObMenuEntry
*self
, const gchar
*label
);
161 ObMenuEntry
* menu_find_entry_id(ObMenu
*self
, gint id
);
163 /* fills in the submenus, for use when a menu is being shown */
164 void menu_find_submenus(ObMenu
*self
);