diff options
author | Lucas Almeida Rocha <lucasr@src.gnome.org> | 2005-06-27 04:27:15 +0000 |
---|---|---|
committer | Lucas Almeida Rocha <lucasr@src.gnome.org> | 2005-06-27 04:27:15 +0000 |
commit | 5d584ca8ef032cecaf05fcc4ceca0db24e70ff16 (patch) | |
tree | 915ba070f801ba1312434ec7392614cbfdf79afa | |
parent | Changed list dialog Selection behavior (diff) | |
download | zenity-5d584ca8ef032cecaf05fcc4ceca0db24e70ff16.tar.gz zenity-5d584ca8ef032cecaf05fcc4ceca0db24e70ff16.tar.bz2 zenity-5d584ca8ef032cecaf05fcc4ceca0db24e70ff16.zip |
Double-clicking on list dialog
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | THANKS | 1 | ||||
-rw-r--r-- | src/about.c | 1 | ||||
-rw-r--r-- | src/tree.c | 26 |
4 files changed, 37 insertions, 2 deletions
@@ -1,3 +1,10 @@ +2005-06-27 Lucas Rocha <lucasr@cvs.gnome.org> + + * src/tree.c, src/about.c: add double-clicking on + list dialog only for normal list (not on radio and + check lists) based on contribution from Norman Rasmussen + * THANKS: Update. + 2005-06-26 Lucas Rocha <lucasr@cvs.gnome.org> * src/zenity.h, src/option.c: new multiple option on list @@ -11,12 +18,12 @@ * src/notification.c: don't use parent widget for hiding the tray icon because it breaks the 'visible' - command + command. 2005-06-13 Lucas Rocha <lucasr@cvs.gnome.org> * MAINTAINERS: adding myself as a new maintainer - * README: no more popt dependency + * README: no more popt dependency. 2005-04-25 Glynn Foster <glynn.foster@sun.com> @@ -45,6 +45,7 @@ "Hidetoshi Tajima <hidetoshi tajima sun com>", "Tom Tromey <tromey redhat com>", "Yann <bloch iie cnam fr>", + "Norman Rasmussen <normanr gmail com>", "", "And all the translators that rock my world", "==========================================", diff --git a/src/about.c b/src/about.c index 49fdc75f..b4d8bcb9 100644 --- a/src/about.c +++ b/src/about.c @@ -90,6 +90,7 @@ static const gchar *author_credits[] = { "Hidetoshi Tajima <hidetoshi tajima sun com>", "Tom Tromey <tromey redhat com>", "Yann <bloch iie cnam fr>", + "Norman Rasmussen <normanr gmail com>", "", "And all the translators that rock my world", "==========================================", @@ -38,6 +38,8 @@ static gboolean print_all_columns = FALSE; static gint print_column_n = 1; static void zenity_tree_dialog_response (GtkWidget *widget, int response, gpointer data); +static void zenity_tree_row_activated (GtkTreeView *tree_view, GtkTreePath *tree_path, + GtkTreeViewColumn *tree_col, gpointer data); static gboolean zenity_tree_dialog_untoggle (GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer data) @@ -328,6 +330,10 @@ zenity_tree (ZenityData *data, ZenityTreeData *tree_data) tree_view = glade_xml_get_widget (glade_dialog, "zenity_tree_view"); + if (!(tree_data->radiobox || tree_data->checkbox)) + g_signal_connect (G_OBJECT (tree_view), "row-activated", + G_CALLBACK (zenity_tree_row_activated), data); + /* Create an empty list store */ model = g_object_new (GTK_TYPE_LIST_STORE, NULL); @@ -584,3 +590,23 @@ zenity_tree_dialog_response (GtkWidget *widget, int response, gpointer data) } gtk_main_quit (); } + +static void +zenity_tree_row_activated (GtkTreeView *tree_view, GtkTreePath *tree_path, + GtkTreeViewColumn *tree_col, gpointer data) +{ + ZenityData *zen_data = data; + GtkTreeSelection *selection; + GtkTreeModel *model; + + model = gtk_tree_view_get_model (GTK_TREE_VIEW (tree_view)); + + selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (tree_view)); + gtk_tree_selection_selected_foreach (selection, + (GtkTreeSelectionForeachFunc) zenity_tree_dialog_get_selected, + GTK_TREE_VIEW (tree_view)); + + zenity_tree_dialog_output (); + zen_data->exit_code = zenity_util_return_exit_code (ZENITY_OK); + gtk_main_quit (); +} |