I changed this:
static GtkActionEntry menu_items[] = {
{ "OpenFile", GTK_STOCK_OPEN, NULL, "<control>O", NULL, G_CALLBACK(file_open) },
...
},
... to this:
static GtkActionEntry menu_items[] = {
{ "OpenFile", GTK_STOCK_OPEN, NULL, gtk_accelerator_name(GDK_o, GDK_CONTROL_MASK), NULL, G_CALLBACK(file_open) },
...
},
... and now I get "error: initializer element is not constant". What changes do I need to make to get this working?
GtkActionEntry's fourth argument is a gchar pointer and gtk_accelerator_name returns that as far as I can see.
menu_items is used in a static function, like this:
static gint nmenu_items = sizeof (menu_items) / sizeof (menu_items[0]);
static GtkWidget *get_menubar_menu(GtkWidget *win) {
GtkActionGroup *action_group = gtk_action_group_new("Menu");
gtk_action_group_add_actions(action_group, menu_items, nmenu_items, 0);
...
}
GtkActionEntryisgchar*>k_accelerator_namereturnsgchar*but you declaremenu_items[]asstatic. The problem is at compile-time you wont know whatgtk_accelerator_namewill return. You wont have the error if you makemenu_items[]non-static. – another.anon.coward Jan 2 at 16:09menu_itemsa pointer or have the number of elements fixed & you have can a function which will initializemenu_items– another.anon.coward Jan 2 at 16:32