diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-06-04 17:44:06 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-06-04 17:44:57 +0800 |
commit | 3ca24320ad62f6207501197d290a47d99bb487e4 (patch) | |
tree | 1bfc7dca3d0030342111344da0929cc8e6565dc1 /src/empathy-chatrooms-window.c | |
parent | 3e383f71374ddc2a4eac3f012ad4b93236fc6887 (diff) | |
download | gsoc2013-empathy-3ca24320ad62f6207501197d290a47d99bb487e4.tar gsoc2013-empathy-3ca24320ad62f6207501197d290a47d99bb487e4.tar.gz gsoc2013-empathy-3ca24320ad62f6207501197d290a47d99bb487e4.tar.bz2 gsoc2013-empathy-3ca24320ad62f6207501197d290a47d99bb487e4.tar.lz gsoc2013-empathy-3ca24320ad62f6207501197d290a47d99bb487e4.tar.xz gsoc2013-empathy-3ca24320ad62f6207501197d290a47d99bb487e4.tar.zst gsoc2013-empathy-3ca24320ad62f6207501197d290a47d99bb487e4.zip |
chatrooms-window: remove the 'edit' button
It has never been implemented so there is no point keeping it (#520207).
Diffstat (limited to 'src/empathy-chatrooms-window.c')
-rw-r--r-- | src/empathy-chatrooms-window.c | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/src/empathy-chatrooms-window.c b/src/empathy-chatrooms-window.c index aae8aac32..35e3e8b9d 100644 --- a/src/empathy-chatrooms-window.c +++ b/src/empathy-chatrooms-window.c @@ -50,7 +50,6 @@ typedef struct { GtkWidget *account_chooser; GtkWidget *treeview; GtkWidget *button_remove; - GtkWidget *button_edit; GtkWidget *button_close; } EmpathyChatroomsWindow; @@ -66,16 +65,8 @@ static void chatrooms_window_model_add (Empath static void chatrooms_window_model_cell_auto_connect_toggled (GtkCellRendererToggle *cell, gchar *path_string, EmpathyChatroomsWindow *window); -static EmpathyChatroom * chatrooms_window_model_get_selected (EmpathyChatroomsWindow *window); -static void chatrooms_window_model_action_selected (EmpathyChatroomsWindow *window); -static void chatrooms_window_row_activated_cb (GtkTreeView *tree_view, - GtkTreePath *path, - GtkTreeViewColumn *column, - EmpathyChatroomsWindow *window); static void chatrooms_window_button_remove_clicked_cb (GtkWidget *widget, EmpathyChatroomsWindow *window); -static void chatrooms_window_button_edit_clicked_cb (GtkWidget *widget, - EmpathyChatroomsWindow *window); static void chatrooms_window_button_close_clicked_cb (GtkWidget *widget, EmpathyChatroomsWindow *window); static void chatrooms_window_chatroom_added_cb (EmpathyChatroomManager *manager, @@ -120,7 +111,6 @@ empathy_chatrooms_window_show (GtkWindow *parent) "hbox_account", &window->hbox_account, "label_account", &window->label_account, "treeview", &window->treeview, - "button_edit", &window->button_edit, "button_remove", &window->button_remove, "button_close", &window->button_close, NULL); @@ -129,7 +119,6 @@ empathy_chatrooms_window_show (GtkWindow *parent) empathy_builder_connect (gui, window, "chatrooms_window", "destroy", chatrooms_window_destroy_cb, "button_remove", "clicked", chatrooms_window_button_remove_clicked_cb, - "button_edit", "clicked", chatrooms_window_button_edit_clicked_cb, "button_close", "clicked", chatrooms_window_button_close_clicked_cb, NULL); @@ -206,10 +195,6 @@ chatrooms_window_model_setup (EmpathyChatroomsWindow *window) /* View */ view = GTK_TREE_VIEW (window->treeview); - g_signal_connect (view, "row-activated", - G_CALLBACK (chatrooms_window_row_activated_cb), - window); - /* Store */ store = gtk_list_store_new (COL_COUNT, G_TYPE_STRING, /* Image */ @@ -400,46 +385,6 @@ chatrooms_window_model_cell_auto_connect_toggled (GtkCellRendererToggle *cell, g_object_unref (chatroom); } -static EmpathyChatroom * -chatrooms_window_model_get_selected (EmpathyChatroomsWindow *window) -{ - GtkTreeView *view; - GtkTreeModel *model; - GtkTreeSelection *selection; - GtkTreeIter iter; - EmpathyChatroom *chatroom = NULL; - - view = GTK_TREE_VIEW (window->treeview); - selection = gtk_tree_view_get_selection (view); - - if (gtk_tree_selection_get_selected (selection, &model, &iter)) { - gtk_tree_model_get (model, &iter, COL_POINTER, &chatroom, -1); - } - - return chatroom; -} - -static void -chatrooms_window_model_action_selected (EmpathyChatroomsWindow *window) -{ - EmpathyChatroom *chatroom; - - /* FIXME: This is still not implemented since Gossip fork */ - chatroom = chatrooms_window_model_get_selected (window); - g_object_unref (chatroom); -} - -static void -chatrooms_window_row_activated_cb (GtkTreeView *tree_view, - GtkTreePath *path, - GtkTreeViewColumn *column, - EmpathyChatroomsWindow *window) -{ - if (gtk_widget_is_sensitive (window->button_edit)) { - chatrooms_window_model_action_selected (window); - } -} - static void chatrooms_window_button_remove_clicked_cb (GtkWidget *widget, EmpathyChatroomsWindow *window) @@ -468,17 +413,6 @@ chatrooms_window_button_remove_clicked_cb (GtkWidget *widget, } static void -chatrooms_window_button_edit_clicked_cb (GtkWidget *widget, - EmpathyChatroomsWindow *window) -{ - EmpathyChatroom *chatroom; - - /* FIXME: This is still not implemented since Gossip fork */ - chatroom = chatrooms_window_model_get_selected (window); - g_object_unref (chatroom); -} - -static void chatrooms_window_button_close_clicked_cb (GtkWidget *widget, EmpathyChatroomsWindow *window) { |