Mercurial > pidgin.yaz
annotate finch/libgnt/gntmenu.c @ 22351:e786b2cbe200
Norwegian Bokml translation updated
Closes #4394
author | Stu Tomlinson <stu@nosnilmot.com> |
---|---|
date | Thu, 28 Feb 2008 15:36:23 +0000 |
parents | 07073da46dd5 |
children | 24dfef623410 |
rev | line source |
---|---|
17718
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
15931
diff
changeset
|
1 /** |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
15931
diff
changeset
|
2 * GNT - The GLib Ncurses Toolkit |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
15931
diff
changeset
|
3 * |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
15931
diff
changeset
|
4 * GNT is the legal property of its developers, whose names are too numerous |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
15931
diff
changeset
|
5 * to list here. Please refer to the COPYRIGHT file distributed with this |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
15931
diff
changeset
|
6 * source distribution. |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
15931
diff
changeset
|
7 * |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
15931
diff
changeset
|
8 * This library is free software; you can redistribute it and/or modify |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
15931
diff
changeset
|
9 * it under the terms of the GNU General Public License as published by |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
15931
diff
changeset
|
10 * the Free Software Foundation; either version 2 of the License, or |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
15931
diff
changeset
|
11 * (at your option) any later version. |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
15931
diff
changeset
|
12 * |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
15931
diff
changeset
|
13 * This program is distributed in the hope that it will be useful, |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
15931
diff
changeset
|
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
15931
diff
changeset
|
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
15931
diff
changeset
|
16 * GNU General Public License for more details. |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
15931
diff
changeset
|
17 * |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
15931
diff
changeset
|
18 * You should have received a copy of the GNU General Public License |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
15931
diff
changeset
|
19 * along with this program; if not, write to the Free Software |
19680
44b4e8bd759b
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
19661
diff
changeset
|
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
17718
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
15931
diff
changeset
|
21 */ |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
15931
diff
changeset
|
22 |
15818 | 23 #include "gntmenu.h" |
24 #include "gntmenuitemcheck.h" | |
25 | |
18444
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
26 #include <ctype.h> |
15818 | 27 #include <string.h> |
28 | |
29 enum | |
30 { | |
31 SIGS = 1, | |
32 }; | |
33 | |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
34 enum |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
35 { |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
36 ITEM_TEXT = 0, |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
37 ITEM_TRIGGER, |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
38 ITEM_SUBMENU, |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
39 NUM_COLUMNS |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
40 }; |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
41 |
15818 | 42 static GntTreeClass *parent_class = NULL; |
43 | |
44 static void (*org_draw)(GntWidget *wid); | |
45 static void (*org_destroy)(GntWidget *wid); | |
46 static void (*org_map)(GntWidget *wid); | |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
47 static void (*org_size_request)(GntWidget *wid); |
15818 | 48 static gboolean (*org_key_pressed)(GntWidget *w, const char *t); |
22309
07073da46dd5
Single clicking a menuitem should activate it.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21625
diff
changeset
|
49 static gboolean (*org_clicked)(GntWidget *w, GntMouseEvent event, int x, int y); |
15818 | 50 |
21625
e5606c720791
Improve the 'menu experience' a little bit.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21483
diff
changeset
|
51 static void menuitem_activate(GntMenu *menu, GntMenuItem *item); |
e5606c720791
Improve the 'menu experience' a little bit.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21483
diff
changeset
|
52 |
15818 | 53 static void |
21260
084c5d5472ad
Fix menu hiding.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21256
diff
changeset
|
54 menu_hide_all(GntMenu *menu) |
084c5d5472ad
Fix menu hiding.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21256
diff
changeset
|
55 { |
084c5d5472ad
Fix menu hiding.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21256
diff
changeset
|
56 while (menu->parentmenu) |
084c5d5472ad
Fix menu hiding.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21256
diff
changeset
|
57 menu = menu->parentmenu; |
084c5d5472ad
Fix menu hiding.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21256
diff
changeset
|
58 gnt_widget_hide(GNT_WIDGET(menu)); |
084c5d5472ad
Fix menu hiding.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21256
diff
changeset
|
59 } |
084c5d5472ad
Fix menu hiding.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21256
diff
changeset
|
60 |
084c5d5472ad
Fix menu hiding.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21256
diff
changeset
|
61 static void |
21625
e5606c720791
Improve the 'menu experience' a little bit.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21483
diff
changeset
|
62 show_submenu(GntMenu *menu) |
e5606c720791
Improve the 'menu experience' a little bit.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21483
diff
changeset
|
63 { |
e5606c720791
Improve the 'menu experience' a little bit.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21483
diff
changeset
|
64 GntMenuItem *item; |
e5606c720791
Improve the 'menu experience' a little bit.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21483
diff
changeset
|
65 |
e5606c720791
Improve the 'menu experience' a little bit.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21483
diff
changeset
|
66 if (menu->type != GNT_MENU_TOPLEVEL) |
e5606c720791
Improve the 'menu experience' a little bit.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21483
diff
changeset
|
67 return; |
e5606c720791
Improve the 'menu experience' a little bit.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21483
diff
changeset
|
68 |
e5606c720791
Improve the 'menu experience' a little bit.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21483
diff
changeset
|
69 item = g_list_nth_data(menu->list, menu->selected); |
e5606c720791
Improve the 'menu experience' a little bit.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21483
diff
changeset
|
70 if (!item || !item->submenu) |
e5606c720791
Improve the 'menu experience' a little bit.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21483
diff
changeset
|
71 return; |
e5606c720791
Improve the 'menu experience' a little bit.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21483
diff
changeset
|
72 menuitem_activate(menu, item); |
e5606c720791
Improve the 'menu experience' a little bit.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21483
diff
changeset
|
73 } |
e5606c720791
Improve the 'menu experience' a little bit.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21483
diff
changeset
|
74 |
e5606c720791
Improve the 'menu experience' a little bit.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21483
diff
changeset
|
75 static void |
15818 | 76 gnt_menu_draw(GntWidget *widget) |
77 { | |
78 GntMenu *menu = GNT_MENU(widget); | |
79 GList *iter; | |
80 chtype type; | |
81 int i; | |
82 | |
83 if (menu->type == GNT_MENU_TOPLEVEL) { | |
21250
9187d331aebe
Add gnt_color_pair, which will replace color codes with 'appropriate' text
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21215
diff
changeset
|
84 wbkgdset(widget->window, '\0' | gnt_color_pair(GNT_COLOR_HIGHLIGHT)); |
15818 | 85 werase(widget->window); |
86 | |
87 for (i = 0, iter = menu->list; iter; iter = iter->next, i++) { | |
15931
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15818
diff
changeset
|
88 GntMenuItem *item = GNT_MENU_ITEM(iter->data); |
21250
9187d331aebe
Add gnt_color_pair, which will replace color codes with 'appropriate' text
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21215
diff
changeset
|
89 type = ' ' | gnt_color_pair(GNT_COLOR_HIGHLIGHT); |
15818 | 90 if (i == menu->selected) |
91 type |= A_REVERSE; | |
92 item->priv.x = getcurx(widget->window) + widget->priv.x; | |
93 item->priv.y = getcury(widget->window) + widget->priv.y + 1; | |
94 wbkgdset(widget->window, type); | |
95 wprintw(widget->window, " %s ", item->text); | |
96 } | |
97 } else { | |
98 org_draw(widget); | |
99 } | |
100 | |
101 GNTDEBUG; | |
102 } | |
103 | |
104 static void | |
105 gnt_menu_size_request(GntWidget *widget) | |
106 { | |
107 GntMenu *menu = GNT_MENU(widget); | |
108 | |
109 if (menu->type == GNT_MENU_TOPLEVEL) { | |
110 widget->priv.height = 1; | |
111 widget->priv.width = getmaxx(stdscr); | |
112 } else { | |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
113 org_size_request(widget); |
15818 | 114 widget->priv.height = g_list_length(menu->list) + 2; |
115 } | |
116 } | |
117 | |
118 static void | |
119 menu_tree_add(GntMenu *menu, GntMenuItem *item, GntMenuItem *parent) | |
120 { | |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
121 char trigger[4] = "\0 )\0"; |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
122 |
18444
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
123 if ((trigger[1] = gnt_menuitem_get_trigger(item)) && trigger[1] != ' ') |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
124 trigger[0] = '('; |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
125 |
15931
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15818
diff
changeset
|
126 if (GNT_IS_MENU_ITEM_CHECK(item)) { |
15818 | 127 gnt_tree_add_choice(GNT_TREE(menu), item, |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
128 gnt_tree_create_row(GNT_TREE(menu), item->text, trigger, " "), parent, NULL); |
15931
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15818
diff
changeset
|
129 gnt_tree_set_choice(GNT_TREE(menu), item, gnt_menuitem_check_get_checked(GNT_MENU_ITEM_CHECK(item))); |
15818 | 130 } else |
131 gnt_tree_add_row_last(GNT_TREE(menu), item, | |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
132 gnt_tree_create_row(GNT_TREE(menu), item->text, trigger, item->submenu ? ">" : " "), parent); |
15818 | 133 |
134 if (0 && item->submenu) { | |
135 GntMenu *sub = GNT_MENU(item->submenu); | |
136 GList *iter; | |
137 for (iter = sub->list; iter; iter = iter->next) { | |
15931
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15818
diff
changeset
|
138 GntMenuItem *it = GNT_MENU_ITEM(iter->data); |
15818 | 139 menu_tree_add(menu, it, item); |
140 } | |
141 } | |
142 } | |
143 | |
18447
8fc91e437981
Possible crash fix.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18444
diff
changeset
|
144 #define GET_VAL(ch) ((ch >= '0' && ch <= '9') ? (ch - '0') : (ch >= 'a' && ch <= 'z') ? (10 + ch - 'a') : 36) |
18444
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
145 |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
146 static void |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
147 assign_triggers(GntMenu *menu) |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
148 { |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
149 GList *iter; |
18447
8fc91e437981
Possible crash fix.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18444
diff
changeset
|
150 gboolean bools[37]; |
18444
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
151 |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
152 memset(bools, 0, sizeof(bools)); |
18447
8fc91e437981
Possible crash fix.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18444
diff
changeset
|
153 bools[36] = 1; |
8fc91e437981
Possible crash fix.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18444
diff
changeset
|
154 |
18444
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
155 for (iter = menu->list; iter; iter = iter->next) { |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
156 GntMenuItem *item = iter->data; |
18447
8fc91e437981
Possible crash fix.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18444
diff
changeset
|
157 char trigger = tolower(gnt_menuitem_get_trigger(item)); |
18444
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
158 if (trigger == '\0' || trigger == ' ') |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
159 continue; |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
160 bools[(int)GET_VAL(trigger)] = 1; |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
161 } |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
162 |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
163 for (iter = menu->list; iter; iter = iter->next) { |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
164 GntMenuItem *item = iter->data; |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
165 char trigger = gnt_menuitem_get_trigger(item); |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
166 const char *text = item->text; |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
167 if (trigger != '\0') |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
168 continue; |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
169 while (*text) { |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
170 char ch = tolower(*text++); |
18447
8fc91e437981
Possible crash fix.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18444
diff
changeset
|
171 if (ch == ' ' || bools[(int)GET_VAL(ch)]) |
18444
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
172 continue; |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
173 trigger = ch; |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
174 break; |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
175 } |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
176 if (trigger == 0) |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
177 trigger = item->text[0]; |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
178 gnt_menuitem_set_trigger(item, trigger); |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
179 bools[(int)GET_VAL(trigger)] = 1; |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
180 } |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
181 } |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
182 |
15818 | 183 static void |
184 gnt_menu_map(GntWidget *widget) | |
185 { | |
186 GntMenu *menu = GNT_MENU(widget); | |
187 | |
188 if (menu->type == GNT_MENU_TOPLEVEL) { | |
189 gnt_widget_size_request(widget); | |
190 } else { | |
191 /* Populate the tree */ | |
192 GList *iter; | |
193 gnt_tree_remove_all(GNT_TREE(widget)); | |
18444
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
194 /* Try to assign some trigger for the items */ |
daf41b214ffb
Try to automatically assign some hotkeys for the menuitems. Do we like this?
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
195 assign_triggers(menu); |
15818 | 196 for (iter = menu->list; iter; iter = iter->next) { |
15931
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15818
diff
changeset
|
197 GntMenuItem *item = GNT_MENU_ITEM(iter->data); |
15818 | 198 menu_tree_add(menu, item, NULL); |
199 } | |
200 org_map(widget); | |
201 gnt_tree_adjust_columns(GNT_TREE(widget)); | |
202 } | |
203 GNTDEBUG; | |
204 } | |
205 | |
206 static void | |
207 menuitem_activate(GntMenu *menu, GntMenuItem *item) | |
208 { | |
21256
e8b0f224483f
Add gnt_menuitem_activate, and 'activate' signal for GntMenuItem.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21250
diff
changeset
|
209 if (!item) |
e8b0f224483f
Add gnt_menuitem_activate, and 'activate' signal for GntMenuItem.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21250
diff
changeset
|
210 return; |
e8b0f224483f
Add gnt_menuitem_activate, and 'activate' signal for GntMenuItem.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21250
diff
changeset
|
211 |
e8b0f224483f
Add gnt_menuitem_activate, and 'activate' signal for GntMenuItem.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21250
diff
changeset
|
212 if (gnt_menuitem_activate(item)) { |
21260
084c5d5472ad
Fix menu hiding.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21256
diff
changeset
|
213 menu_hide_all(menu); |
21256
e8b0f224483f
Add gnt_menuitem_activate, and 'activate' signal for GntMenuItem.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21250
diff
changeset
|
214 } else { |
15818 | 215 if (item->submenu) { |
216 GntMenu *sub = GNT_MENU(item->submenu); | |
217 menu->submenu = sub; | |
218 sub->type = GNT_MENU_POPUP; /* Submenus are *never* toplevel */ | |
219 sub->parentmenu = menu; | |
220 if (menu->type != GNT_MENU_TOPLEVEL) { | |
221 GntWidget *widget = GNT_WIDGET(menu); | |
222 item->priv.x = widget->priv.x + widget->priv.width - 1; | |
223 item->priv.y = widget->priv.y + gnt_tree_get_selection_visible_line(GNT_TREE(menu)); | |
224 } | |
225 gnt_widget_set_position(GNT_WIDGET(sub), item->priv.x, item->priv.y); | |
226 GNT_WIDGET_UNSET_FLAGS(GNT_WIDGET(sub), GNT_WIDGET_INVISIBLE); | |
227 gnt_widget_draw(GNT_WIDGET(sub)); | |
21260
084c5d5472ad
Fix menu hiding.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21256
diff
changeset
|
228 } else { |
084c5d5472ad
Fix menu hiding.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21256
diff
changeset
|
229 menu_hide_all(menu); |
15818 | 230 } |
231 } | |
232 } | |
233 | |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
234 static GList* |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
235 find_item_with_trigger(GList *start, GList *end, char trigger) |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
236 { |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
237 GList *iter; |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
238 for (iter = start; iter != (end ? end : NULL); iter = iter->next) { |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
239 if (gnt_menuitem_get_trigger(iter->data) == trigger) |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
240 return iter; |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
241 } |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
242 return NULL; |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
243 } |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
244 |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
245 static gboolean |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
246 check_for_trigger(GntMenu *menu, char trigger) |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
247 { |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
248 /* check for a trigger key */ |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
249 GList *iter; |
19651
21e67147f9f0
Do not crash when pressing a key in an empty menu. Thanks to CmdrChalupa in
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18875
diff
changeset
|
250 GList *find; |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
251 GList *nth = g_list_find(menu->list, gnt_tree_get_selection_data(GNT_TREE(menu))); |
19651
21e67147f9f0
Do not crash when pressing a key in an empty menu. Thanks to CmdrChalupa in
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18875
diff
changeset
|
252 |
21e67147f9f0
Do not crash when pressing a key in an empty menu. Thanks to CmdrChalupa in
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18875
diff
changeset
|
253 if (nth == NULL) |
21e67147f9f0
Do not crash when pressing a key in an empty menu. Thanks to CmdrChalupa in
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18875
diff
changeset
|
254 return FALSE; |
21454
d78e440584e0
Add maximize flags for windows.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21260
diff
changeset
|
255 |
19651
21e67147f9f0
Do not crash when pressing a key in an empty menu. Thanks to CmdrChalupa in
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18875
diff
changeset
|
256 find = find_item_with_trigger(nth->next, NULL, trigger); |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
257 if (!find) |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
258 find = find_item_with_trigger(menu->list, nth->next, trigger); |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
259 if (!find) |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
260 return FALSE; |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
261 if (find != nth) { |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
262 gnt_tree_set_selected(GNT_TREE(menu), find->data); |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
263 iter = find_item_with_trigger(find->next, NULL, trigger); |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
264 if (iter != NULL && iter != find) |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
265 return TRUE; |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
266 iter = find_item_with_trigger(menu->list, nth, trigger); |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
267 if (iter != NULL && iter != find) |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
268 return TRUE; |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
269 } |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
270 gnt_widget_activate(GNT_WIDGET(menu)); |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
271 return TRUE; |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
272 } |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
273 |
15818 | 274 static gboolean |
275 gnt_menu_key_pressed(GntWidget *widget, const char *text) | |
276 { | |
277 GntMenu *menu = GNT_MENU(widget); | |
278 int current = menu->selected; | |
279 | |
280 if (menu->submenu) { | |
18875
6a911f06aa46
Some more navigation improvement for the menus.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18874
diff
changeset
|
281 GntMenu *sub = menu; |
6a911f06aa46
Some more navigation improvement for the menus.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18874
diff
changeset
|
282 do sub = sub->submenu; while (sub->submenu); |
6a911f06aa46
Some more navigation improvement for the menus.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18874
diff
changeset
|
283 if (gnt_widget_key_pressed(GNT_WIDGET(sub), text)) |
6a911f06aa46
Some more navigation improvement for the menus.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18874
diff
changeset
|
284 return TRUE; |
15818 | 285 } |
286 | |
18874
5dd1cfc53666
Make the menus a little more usable.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
287 if ((text[0] == 27 && text[1] == 0) || |
5dd1cfc53666
Make the menus a little more usable.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
288 (menu->type != GNT_MENU_TOPLEVEL && strcmp(text, GNT_KEY_LEFT) == 0)) { |
15818 | 289 /* Escape closes menu */ |
290 GntMenu *par = menu->parentmenu; | |
291 if (par != NULL) { | |
292 par->submenu = NULL; | |
293 gnt_widget_hide(widget); | |
294 } else | |
295 gnt_widget_hide(widget); | |
21625
e5606c720791
Improve the 'menu experience' a little bit.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21483
diff
changeset
|
296 if (par && par->type == GNT_MENU_TOPLEVEL) |
e5606c720791
Improve the 'menu experience' a little bit.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21483
diff
changeset
|
297 gnt_menu_key_pressed(GNT_WIDGET(par), text); |
15818 | 298 return TRUE; |
299 } | |
300 | |
301 if (menu->type == GNT_MENU_TOPLEVEL) { | |
302 if (strcmp(text, GNT_KEY_LEFT) == 0) { | |
303 menu->selected--; | |
304 if (menu->selected < 0) | |
305 menu->selected = g_list_length(menu->list) - 1; | |
306 } else if (strcmp(text, GNT_KEY_RIGHT) == 0) { | |
307 menu->selected++; | |
308 if (menu->selected >= g_list_length(menu->list)) | |
309 menu->selected = 0; | |
18874
5dd1cfc53666
Make the menus a little more usable.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
310 } else if (strcmp(text, GNT_KEY_ENTER) == 0 || |
5dd1cfc53666
Make the menus a little more usable.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
311 strcmp(text, GNT_KEY_DOWN) == 0) { |
15818 | 312 gnt_widget_activate(widget); |
313 } | |
314 | |
315 if (current != menu->selected) { | |
18875
6a911f06aa46
Some more navigation improvement for the menus.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18874
diff
changeset
|
316 GntMenu *sub = menu->submenu; |
21260
084c5d5472ad
Fix menu hiding.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21256
diff
changeset
|
317 if (sub) |
18875
6a911f06aa46
Some more navigation improvement for the menus.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18874
diff
changeset
|
318 gnt_widget_hide(GNT_WIDGET(sub)); |
21625
e5606c720791
Improve the 'menu experience' a little bit.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21483
diff
changeset
|
319 show_submenu(menu); |
15818 | 320 gnt_widget_draw(widget); |
321 return TRUE; | |
322 } | |
323 } else { | |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
324 if (text[1] == '\0') { |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
325 if (check_for_trigger(menu, text[0])) |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
326 return TRUE; |
18874
5dd1cfc53666
Make the menus a little more usable.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
327 } else if (strcmp(text, GNT_KEY_RIGHT) == 0) { |
5dd1cfc53666
Make the menus a little more usable.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
328 GntMenuItem *item = gnt_tree_get_selection_data(GNT_TREE(menu)); |
5dd1cfc53666
Make the menus a little more usable.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
329 if (item && item->submenu) { |
5dd1cfc53666
Make the menus a little more usable.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
330 menuitem_activate(menu, item); |
5dd1cfc53666
Make the menus a little more usable.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
331 return TRUE; |
5dd1cfc53666
Make the menus a little more usable.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
332 } |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
333 } |
15818 | 334 return org_key_pressed(widget, text); |
335 } | |
336 | |
337 return FALSE; | |
338 } | |
339 | |
340 static void | |
341 gnt_menu_destroy(GntWidget *widget) | |
342 { | |
343 GntMenu *menu = GNT_MENU(widget); | |
344 g_list_foreach(menu->list, (GFunc)g_object_unref, NULL); | |
345 g_list_free(menu->list); | |
346 org_destroy(widget); | |
347 } | |
348 | |
349 static void | |
350 gnt_menu_toggled(GntTree *tree, gpointer key) | |
351 { | |
15931
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15818
diff
changeset
|
352 GntMenuItem *item = GNT_MENU_ITEM(key); |
15818 | 353 GntMenu *menu = GNT_MENU(tree); |
15931
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15818
diff
changeset
|
354 gboolean check = gnt_menuitem_check_get_checked(GNT_MENU_ITEM_CHECK(item)); |
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15818
diff
changeset
|
355 gnt_menuitem_check_set_checked(GNT_MENU_ITEM_CHECK(item), !check); |
21256
e8b0f224483f
Add gnt_menuitem_activate, and 'activate' signal for GntMenuItem.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21250
diff
changeset
|
356 gnt_menuitem_activate(item); |
15818 | 357 while (menu) { |
358 gnt_widget_hide(GNT_WIDGET(menu)); | |
359 menu = menu->parentmenu; | |
360 } | |
361 } | |
362 | |
363 static void | |
364 gnt_menu_activate(GntWidget *widget) | |
365 { | |
366 GntMenu *menu = GNT_MENU(widget); | |
367 GntMenuItem *item; | |
368 | |
369 if (menu->type == GNT_MENU_TOPLEVEL) { | |
370 item = g_list_nth_data(menu->list, menu->selected); | |
371 } else { | |
372 item = gnt_tree_get_selection_data(GNT_TREE(menu)); | |
373 } | |
374 | |
375 if (item) { | |
15931
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15818
diff
changeset
|
376 if (GNT_IS_MENU_ITEM_CHECK(item)) |
15818 | 377 gnt_menu_toggled(GNT_TREE(widget), item); |
378 else | |
379 menuitem_activate(menu, item); | |
380 } | |
381 } | |
382 | |
383 static void | |
384 gnt_menu_hide(GntWidget *widget) | |
385 { | |
16731
3c3fc1432a01
Let windows know when the workspace they are in is being hidden/shown
Richard Nelson <wabz@pidgin.im>
parents:
15931
diff
changeset
|
386 GntMenu *sub, *menu = GNT_MENU(widget); |
3c3fc1432a01
Let windows know when the workspace they are in is being hidden/shown
Richard Nelson <wabz@pidgin.im>
parents:
15931
diff
changeset
|
387 |
3c3fc1432a01
Let windows know when the workspace they are in is being hidden/shown
Richard Nelson <wabz@pidgin.im>
parents:
15931
diff
changeset
|
388 while ((sub = menu->submenu)) |
3c3fc1432a01
Let windows know when the workspace they are in is being hidden/shown
Richard Nelson <wabz@pidgin.im>
parents:
15931
diff
changeset
|
389 gnt_widget_hide(GNT_WIDGET(sub)); |
15818 | 390 if (menu->parentmenu) |
391 menu->parentmenu->submenu = NULL; | |
392 } | |
393 | |
22309
07073da46dd5
Single clicking a menuitem should activate it.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21625
diff
changeset
|
394 static gboolean |
07073da46dd5
Single clicking a menuitem should activate it.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21625
diff
changeset
|
395 gnt_menu_clicked(GntWidget *widget, GntMouseEvent event, int x, int y) |
07073da46dd5
Single clicking a menuitem should activate it.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21625
diff
changeset
|
396 { |
07073da46dd5
Single clicking a menuitem should activate it.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21625
diff
changeset
|
397 if (!org_clicked || !org_clicked(widget, event, x, y) || |
07073da46dd5
Single clicking a menuitem should activate it.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21625
diff
changeset
|
398 !GNT_MENU(widget)->type == GNT_MENU_TOPLEVEL) |
07073da46dd5
Single clicking a menuitem should activate it.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21625
diff
changeset
|
399 return FALSE; |
07073da46dd5
Single clicking a menuitem should activate it.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21625
diff
changeset
|
400 gnt_widget_activate(widget); |
07073da46dd5
Single clicking a menuitem should activate it.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21625
diff
changeset
|
401 return TRUE; |
07073da46dd5
Single clicking a menuitem should activate it.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21625
diff
changeset
|
402 } |
07073da46dd5
Single clicking a menuitem should activate it.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21625
diff
changeset
|
403 |
15818 | 404 static void |
405 gnt_menu_class_init(GntMenuClass *klass) | |
406 { | |
407 GntWidgetClass *wid_class = GNT_WIDGET_CLASS(klass); | |
408 parent_class = GNT_TREE_CLASS(klass); | |
409 | |
410 org_destroy = wid_class->destroy; | |
411 org_map = wid_class->map; | |
412 org_draw = wid_class->draw; | |
413 org_key_pressed = wid_class->key_pressed; | |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
414 org_size_request = wid_class->size_request; |
22309
07073da46dd5
Single clicking a menuitem should activate it.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21625
diff
changeset
|
415 org_clicked = wid_class->clicked; |
15818 | 416 |
417 wid_class->destroy = gnt_menu_destroy; | |
418 wid_class->draw = gnt_menu_draw; | |
419 wid_class->map = gnt_menu_map; | |
420 wid_class->size_request = gnt_menu_size_request; | |
421 wid_class->key_pressed = gnt_menu_key_pressed; | |
422 wid_class->activate = gnt_menu_activate; | |
423 wid_class->hide = gnt_menu_hide; | |
22309
07073da46dd5
Single clicking a menuitem should activate it.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21625
diff
changeset
|
424 wid_class->clicked = gnt_menu_clicked; |
15818 | 425 |
426 parent_class->toggled = gnt_menu_toggled; | |
427 | |
428 GNTDEBUG; | |
429 } | |
430 | |
431 static void | |
432 gnt_menu_init(GTypeInstance *instance, gpointer class) | |
433 { | |
434 GntWidget *widget = GNT_WIDGET(instance); | |
435 GNT_WIDGET_SET_FLAGS(widget, GNT_WIDGET_NO_SHADOW | GNT_WIDGET_NO_BORDER | | |
436 GNT_WIDGET_CAN_TAKE_FOCUS | GNT_WIDGET_TRANSIENT); | |
437 GNTDEBUG; | |
438 } | |
439 | |
440 /****************************************************************************** | |
441 * GntMenu API | |
442 *****************************************************************************/ | |
443 GType | |
444 gnt_menu_get_gtype(void) | |
445 { | |
446 static GType type = 0; | |
447 | |
448 if(type == 0) | |
449 { | |
450 static const GTypeInfo info = { | |
451 sizeof(GntMenuClass), | |
452 NULL, /* base_init */ | |
453 NULL, /* base_finalize */ | |
454 (GClassInitFunc)gnt_menu_class_init, | |
455 NULL, /* class_finalize */ | |
456 NULL, /* class_data */ | |
457 sizeof(GntMenu), | |
458 0, /* n_preallocs */ | |
459 gnt_menu_init, /* instance_init */ | |
460 NULL /* value_table */ | |
461 }; | |
462 | |
463 type = g_type_register_static(GNT_TYPE_TREE, | |
464 "GntMenu", | |
465 &info, 0); | |
466 } | |
467 | |
468 return type; | |
469 } | |
470 | |
471 GntWidget *gnt_menu_new(GntMenuType type) | |
472 { | |
473 GntWidget *widget = g_object_new(GNT_TYPE_MENU, NULL); | |
474 GntMenu *menu = GNT_MENU(widget); | |
475 menu->list = NULL; | |
476 menu->selected = 0; | |
477 menu->type = type; | |
478 | |
479 if (type == GNT_MENU_TOPLEVEL) { | |
480 widget->priv.x = 0; | |
481 widget->priv.y = 0; | |
482 } else { | |
483 GNT_TREE(widget)->show_separator = FALSE; | |
18531
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18447
diff
changeset
|
484 g_object_set(G_OBJECT(widget), "columns", NUM_COLUMNS, NULL); |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
485 gnt_tree_set_col_width(GNT_TREE(widget), ITEM_TRIGGER, 3); |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
486 gnt_tree_set_column_resizable(GNT_TREE(widget), ITEM_TRIGGER, FALSE); |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
487 gnt_tree_set_col_width(GNT_TREE(widget), ITEM_SUBMENU, 1); |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
488 gnt_tree_set_column_resizable(GNT_TREE(widget), ITEM_SUBMENU, FALSE); |
15818 | 489 GNT_WIDGET_UNSET_FLAGS(widget, GNT_WIDGET_NO_BORDER); |
490 } | |
491 | |
492 return widget; | |
493 } | |
494 | |
495 void gnt_menu_add_item(GntMenu *menu, GntMenuItem *item) | |
496 { | |
497 menu->list = g_list_append(menu->list, item); | |
498 } | |
499 | |
21212
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
500 GntMenuItem *gnt_menu_get_item(GntMenu *menu, const char *id) |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
501 { |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
502 GntMenuItem *item = NULL; |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
503 GList *iter = menu->list; |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
504 |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
505 if (!id || !*id) |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
506 return NULL; |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
507 |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
508 for (; iter; iter = iter->next) { |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
509 GntMenu *sub; |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
510 item = iter->data; |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
511 sub = gnt_menuitem_get_submenu(item); |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
512 if (sub) { |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
513 item = gnt_menu_get_item(sub, id); |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
514 if (item) |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
515 break; |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
516 } else { |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
517 const char *itid = gnt_menuitem_get_id(item); |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
518 if (itid && strcmp(itid, id) == 0) |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
519 break; |
21215
4c7604b4841c
Add a note: Perhaps look at menu-labels if it doesn't have an ID when processing an accelerator key.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21212
diff
changeset
|
520 /* XXX: Perhaps look at the menu-label as well? */ |
21212
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
521 } |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
522 item = NULL; |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
523 } |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
524 |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
525 return item; |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
526 } |
b65f1bff6412
Allow binding key-shortcuts to menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19680
diff
changeset
|
527 |