mirror of https://github.com/GNOME/gimp.git
allow to pass a NULL group_name and iterate all action groups to find the
2005-05-11 Michael Natterer <mitch@gimp.org> * app/widgets/gimpuimanager.c (gimp_ui_manager_find_action): allow to pass a NULL group_name and iterate all action groups to find the action in that case. * app/widgets/gimpcontrollereditor.c: show the action's stock icon in the "Action" column, using above function.
This commit is contained in:
parent
5fb2c4fc86
commit
fb03c60e15
|
@ -1,3 +1,12 @@
|
||||||
|
2005-05-11 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
|
* app/widgets/gimpuimanager.c (gimp_ui_manager_find_action): allow
|
||||||
|
to pass a NULL group_name and iterate all action groups to find
|
||||||
|
the action in that case.
|
||||||
|
|
||||||
|
* app/widgets/gimpcontrollereditor.c: show the action's stock icon
|
||||||
|
in the "Action" column, using above function.
|
||||||
|
|
||||||
2005-05-11 Sven Neumann <sven@gimp.org>
|
2005-05-11 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
* app/display/gimpdisplay.c: added a read-only property to access
|
* app/display/gimpdisplay.c: added a read-only property to access
|
||||||
|
|
|
@ -53,6 +53,7 @@ enum
|
||||||
{
|
{
|
||||||
COLUMN_EVENT,
|
COLUMN_EVENT,
|
||||||
COLUMN_BLURB,
|
COLUMN_BLURB,
|
||||||
|
COLUMN_STOCK_ID,
|
||||||
COLUMN_ACTION,
|
COLUMN_ACTION,
|
||||||
NUM_COLUMNS
|
NUM_COLUMNS
|
||||||
};
|
};
|
||||||
|
@ -171,6 +172,7 @@ gimp_controller_editor_constructor (GType type,
|
||||||
GimpControllerInfo *info;
|
GimpControllerInfo *info;
|
||||||
GimpController *controller;
|
GimpController *controller;
|
||||||
GimpControllerClass *controller_class;
|
GimpControllerClass *controller_class;
|
||||||
|
GimpUIManager *ui_manager;
|
||||||
GtkListStore *store;
|
GtkListStore *store;
|
||||||
GtkWidget *frame;
|
GtkWidget *frame;
|
||||||
GtkWidget *vbox;
|
GtkWidget *vbox;
|
||||||
|
@ -180,6 +182,8 @@ gimp_controller_editor_constructor (GType type,
|
||||||
GtkWidget *tv;
|
GtkWidget *tv;
|
||||||
GtkWidget *sw;
|
GtkWidget *sw;
|
||||||
GtkWidget *entry;
|
GtkWidget *entry;
|
||||||
|
GtkTreeViewColumn *column;
|
||||||
|
GtkCellRenderer *cell;
|
||||||
GParamSpec **property_specs;
|
GParamSpec **property_specs;
|
||||||
guint n_property_specs;
|
guint n_property_specs;
|
||||||
gint n_events;
|
gint n_events;
|
||||||
|
@ -320,6 +324,7 @@ gimp_controller_editor_constructor (GType type,
|
||||||
g_free (property_specs);
|
g_free (property_specs);
|
||||||
|
|
||||||
store = gtk_list_store_new (NUM_COLUMNS,
|
store = gtk_list_store_new (NUM_COLUMNS,
|
||||||
|
G_TYPE_STRING,
|
||||||
G_TYPE_STRING,
|
G_TYPE_STRING,
|
||||||
G_TYPE_STRING,
|
G_TYPE_STRING,
|
||||||
G_TYPE_STRING);
|
G_TYPE_STRING);
|
||||||
|
@ -345,6 +350,8 @@ gimp_controller_editor_constructor (GType type,
|
||||||
G_CALLBACK (gimp_controller_editor_sel_changed),
|
G_CALLBACK (gimp_controller_editor_sel_changed),
|
||||||
editor);
|
editor);
|
||||||
|
|
||||||
|
ui_manager = gimp_ui_managers_from_name ("<Image>")->data;
|
||||||
|
|
||||||
n_events = gimp_controller_get_n_events (controller);
|
n_events = gimp_controller_get_n_events (controller);
|
||||||
|
|
||||||
for (i = 0; i < n_events; i++)
|
for (i = 0; i < n_events; i++)
|
||||||
|
@ -353,18 +360,33 @@ gimp_controller_editor_constructor (GType type,
|
||||||
const gchar *event_name;
|
const gchar *event_name;
|
||||||
const gchar *event_blurb;
|
const gchar *event_blurb;
|
||||||
const gchar *event_action;
|
const gchar *event_action;
|
||||||
|
gchar *stock_id = NULL;
|
||||||
|
|
||||||
event_name = gimp_controller_get_event_name (controller, i);
|
event_name = gimp_controller_get_event_name (controller, i);
|
||||||
event_blurb = gimp_controller_get_event_blurb (controller, i);
|
event_blurb = gimp_controller_get_event_blurb (controller, i);
|
||||||
|
|
||||||
event_action = g_hash_table_lookup (info->mapping, event_name);
|
event_action = g_hash_table_lookup (info->mapping, event_name);
|
||||||
|
|
||||||
|
if (event_action)
|
||||||
|
{
|
||||||
|
GtkAction *action;
|
||||||
|
|
||||||
|
action = gimp_ui_manager_find_action (ui_manager, NULL, event_action);
|
||||||
|
|
||||||
|
if (action)
|
||||||
|
g_object_get (action, "stock-id", &stock_id, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
gtk_list_store_append (store, &iter);
|
gtk_list_store_append (store, &iter);
|
||||||
gtk_list_store_set (store, &iter,
|
gtk_list_store_set (store, &iter,
|
||||||
COLUMN_EVENT, event_name,
|
COLUMN_EVENT, event_name,
|
||||||
COLUMN_BLURB, event_blurb,
|
COLUMN_BLURB, event_blurb,
|
||||||
|
COLUMN_STOCK_ID, stock_id,
|
||||||
COLUMN_ACTION, event_action,
|
COLUMN_ACTION, event_action,
|
||||||
-1);
|
-1);
|
||||||
|
|
||||||
|
if (stock_id)
|
||||||
|
g_free (stock_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (tv), 0,
|
gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (tv), 0,
|
||||||
|
@ -372,9 +394,20 @@ gimp_controller_editor_constructor (GType type,
|
||||||
gtk_cell_renderer_text_new (),
|
gtk_cell_renderer_text_new (),
|
||||||
"text", COLUMN_BLURB,
|
"text", COLUMN_BLURB,
|
||||||
NULL);
|
NULL);
|
||||||
gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (tv), 2,
|
|
||||||
_("Action"),
|
column = gtk_tree_view_column_new ();
|
||||||
gtk_cell_renderer_text_new (),
|
gtk_tree_view_column_set_title (column, _("Action"));
|
||||||
|
gtk_tree_view_append_column (GTK_TREE_VIEW (tv), column);
|
||||||
|
|
||||||
|
cell = gtk_cell_renderer_pixbuf_new ();
|
||||||
|
gtk_tree_view_column_pack_start (column, cell, FALSE);
|
||||||
|
gtk_tree_view_column_set_attributes (column, cell,
|
||||||
|
"stock-id", COLUMN_STOCK_ID,
|
||||||
|
NULL);
|
||||||
|
|
||||||
|
cell = gtk_cell_renderer_text_new ();
|
||||||
|
gtk_tree_view_column_pack_start (column, cell, TRUE);
|
||||||
|
gtk_tree_view_column_set_attributes (column, cell,
|
||||||
"text", COLUMN_ACTION,
|
"text", COLUMN_ACTION,
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
|
@ -391,6 +424,11 @@ gimp_controller_editor_constructor (GType type,
|
||||||
G_CALLBACK (gimp_controller_editor_grab_toggled),
|
G_CALLBACK (gimp_controller_editor_grab_toggled),
|
||||||
editor);
|
editor);
|
||||||
|
|
||||||
|
gimp_help_set_help_data (editor->grab_button,
|
||||||
|
_("Select the next event arriving from "
|
||||||
|
"the controller"),
|
||||||
|
NULL);
|
||||||
|
|
||||||
editor->edit_button = gtk_button_new_from_stock (GIMP_STOCK_EDIT);
|
editor->edit_button = gtk_button_new_from_stock (GIMP_STOCK_EDIT);
|
||||||
gtk_box_pack_start (GTK_BOX (hbox), editor->edit_button, TRUE, TRUE, 0);
|
gtk_box_pack_start (GTK_BOX (hbox), editor->edit_button, TRUE, TRUE, 0);
|
||||||
gtk_widget_show (editor->edit_button);
|
gtk_widget_show (editor->edit_button);
|
||||||
|
@ -399,6 +437,10 @@ gimp_controller_editor_constructor (GType type,
|
||||||
G_CALLBACK (gimp_controller_editor_edit_clicked),
|
G_CALLBACK (gimp_controller_editor_edit_clicked),
|
||||||
editor);
|
editor);
|
||||||
|
|
||||||
|
gimp_help_set_help_data (editor->edit_button,
|
||||||
|
_("Assign an action to the selected event"),
|
||||||
|
NULL);
|
||||||
|
|
||||||
editor->delete_button = gtk_button_new_from_stock (GTK_STOCK_DELETE);
|
editor->delete_button = gtk_button_new_from_stock (GTK_STOCK_DELETE);
|
||||||
gtk_box_pack_start (GTK_BOX (hbox), editor->delete_button, TRUE, TRUE, 0);
|
gtk_box_pack_start (GTK_BOX (hbox), editor->delete_button, TRUE, TRUE, 0);
|
||||||
gtk_widget_show (editor->delete_button);
|
gtk_widget_show (editor->delete_button);
|
||||||
|
@ -407,6 +449,10 @@ gimp_controller_editor_constructor (GType type,
|
||||||
G_CALLBACK (gimp_controller_editor_delete_clicked),
|
G_CALLBACK (gimp_controller_editor_delete_clicked),
|
||||||
editor);
|
editor);
|
||||||
|
|
||||||
|
gimp_help_set_help_data (editor->delete_button,
|
||||||
|
_("Remove the action from the selected event"),
|
||||||
|
NULL);
|
||||||
|
|
||||||
gtk_widget_set_sensitive (editor->edit_button, FALSE);
|
gtk_widget_set_sensitive (editor->edit_button, FALSE);
|
||||||
gtk_widget_set_sensitive (editor->delete_button, FALSE);
|
gtk_widget_set_sensitive (editor->delete_button, FALSE);
|
||||||
|
|
||||||
|
@ -712,6 +758,7 @@ gimp_controller_editor_delete_clicked (GtkWidget *button,
|
||||||
g_free (event_name);
|
g_free (event_name);
|
||||||
|
|
||||||
gtk_list_store_set (GTK_LIST_STORE (model), &iter,
|
gtk_list_store_set (GTK_LIST_STORE (model), &iter,
|
||||||
|
COLUMN_STOCK_ID, NULL,
|
||||||
COLUMN_ACTION, NULL,
|
COLUMN_ACTION, NULL,
|
||||||
-1);
|
-1);
|
||||||
}
|
}
|
||||||
|
@ -738,10 +785,12 @@ gimp_controller_editor_edit_response (GtkWidget *dialog,
|
||||||
GtkTreeModel *model;
|
GtkTreeModel *model;
|
||||||
GtkTreeIter iter;
|
GtkTreeIter iter;
|
||||||
gchar *event_name = NULL;
|
gchar *event_name = NULL;
|
||||||
|
gchar *stock_id = NULL;
|
||||||
gchar *action_name = NULL;
|
gchar *action_name = NULL;
|
||||||
|
|
||||||
if (gtk_tree_selection_get_selected (editor->edit_sel, &model, &iter))
|
if (gtk_tree_selection_get_selected (editor->edit_sel, &model, &iter))
|
||||||
gtk_tree_model_get (model, &iter,
|
gtk_tree_model_get (model, &iter,
|
||||||
|
GIMP_ACTION_VIEW_COLUMN_STOCK_ID, &stock_id,
|
||||||
GIMP_ACTION_VIEW_COLUMN_NAME, &action_name,
|
GIMP_ACTION_VIEW_COLUMN_NAME, &action_name,
|
||||||
-1);
|
-1);
|
||||||
|
|
||||||
|
@ -757,11 +806,13 @@ gimp_controller_editor_edit_response (GtkWidget *dialog,
|
||||||
g_strdup (action_name));
|
g_strdup (action_name));
|
||||||
|
|
||||||
gtk_list_store_set (GTK_LIST_STORE (model), &iter,
|
gtk_list_store_set (GTK_LIST_STORE (model), &iter,
|
||||||
|
COLUMN_STOCK_ID, stock_id,
|
||||||
COLUMN_ACTION, action_name,
|
COLUMN_ACTION, action_name,
|
||||||
-1);
|
-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
g_free (event_name);
|
g_free (event_name);
|
||||||
|
g_free (stock_id);
|
||||||
g_free (action_name);
|
g_free (action_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -469,17 +469,38 @@ gimp_ui_manager_find_action (GimpUIManager *manager,
|
||||||
const gchar *action_name)
|
const gchar *action_name)
|
||||||
{
|
{
|
||||||
GimpActionGroup *group;
|
GimpActionGroup *group;
|
||||||
|
GtkAction *action = NULL;
|
||||||
|
|
||||||
g_return_val_if_fail (GIMP_IS_UI_MANAGER (manager), NULL);
|
g_return_val_if_fail (GIMP_IS_UI_MANAGER (manager), NULL);
|
||||||
g_return_val_if_fail (group_name != NULL, NULL);
|
|
||||||
g_return_val_if_fail (action_name != NULL, NULL);
|
g_return_val_if_fail (action_name != NULL, NULL);
|
||||||
|
|
||||||
|
if (group_name)
|
||||||
|
{
|
||||||
group = gimp_ui_manager_get_action_group (manager, group_name);
|
group = gimp_ui_manager_get_action_group (manager, group_name);
|
||||||
|
|
||||||
if (group)
|
if (group)
|
||||||
return gtk_action_group_get_action (GTK_ACTION_GROUP (group), action_name);
|
action = gtk_action_group_get_action (GTK_ACTION_GROUP (group),
|
||||||
|
action_name);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
GList *list;
|
||||||
|
|
||||||
return NULL;
|
for (list = gtk_ui_manager_get_action_groups (GTK_UI_MANAGER (manager));
|
||||||
|
list;
|
||||||
|
list = g_list_next (list))
|
||||||
|
{
|
||||||
|
group = list->data;
|
||||||
|
|
||||||
|
action = gtk_action_group_get_action (GTK_ACTION_GROUP (group),
|
||||||
|
action_name);
|
||||||
|
|
||||||
|
if (action)
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return action;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in New Issue