symbol-db: Fix "parenthesis" typos
[anjuta.git] / plugins / git / git-rebase-pane.c
blobc588684ba339799e59043b33f5ee689ba06c37c0
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3 * git-shell-test
4 * Copyright (C) James Liggett 2010 <jrliggett@cox.net>
5 *
6 * git-shell-test is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * git-shell-test is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14 * See the GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "git-rebase-pane.h"
22 static void
23 start_rebase_command (Git *plugin, AnjutaCommand *command)
25 git_pane_create_message_view (plugin);
27 g_signal_connect (G_OBJECT (command), "command-finished",
28 G_CALLBACK (git_pane_report_errors),
29 plugin);
32 g_signal_connect (G_OBJECT (command), "command-finished",
33 G_CALLBACK (g_object_unref),
34 NULL);
36 g_signal_connect (G_OBJECT (command), "data-arrived",
37 G_CALLBACK (git_pane_on_command_info_arrived),
38 plugin);
40 anjuta_command_start (command);
43 void
44 on_rebase_start_button_clicked (GtkAction *action, Git *plugin)
46 gchar *remote;
47 GitRebaseStartCommand *start_command;
49 remote = git_remotes_pane_get_selected_remote (GIT_REMOTES_PANE (plugin->remotes_pane));
51 if (remote)
53 start_command = git_rebase_start_command_new (plugin->project_root_directory,
54 remote);
56 g_free (remote);
58 start_rebase_command (plugin, ANJUTA_COMMAND (start_command));
60 else
61 anjuta_util_dialog_error (NULL, _("No remote selected"));
64 void
65 on_rebase_continue_button_clicked (GtkAction *action, Git *plugin)
67 GitRebaseContinueCommand *continue_command;
69 continue_command = git_rebase_continue_command_new (plugin->project_root_directory,
70 GIT_REBASE_CONTINUE_ACTION_CONTINUE);
72 start_rebase_command (plugin, ANJUTA_COMMAND (continue_command));
75 void
76 on_rebase_skip_button_clicked (GtkAction *action, Git *plugin)
78 GitRebaseContinueCommand *continue_command;
80 continue_command = git_rebase_continue_command_new (plugin->project_root_directory,
81 GIT_REBASE_CONTINUE_ACTION_SKIP);
83 start_rebase_command (plugin, ANJUTA_COMMAND (continue_command));
86 void
87 on_rebase_abort_button_clicked (GtkAction *action, Git *plugin)
89 GitRebaseContinueCommand *continue_command;
91 continue_command = git_rebase_continue_command_new (plugin->project_root_directory,
92 GIT_REBASE_CONTINUE_ACTION_ABORT);
94 start_rebase_command (plugin, ANJUTA_COMMAND (continue_command));