[anjuta/git-shell] git: Implement the Clear Stashes pane
- From: James Liggett <jrliggett src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [anjuta/git-shell] git: Implement the Clear Stashes pane
- Date: Wed, 28 Jul 2010 07:52:45 +0000 (UTC)
commit be545b4c4f9b814cbb74fd4044ef4190b821f16b
Author: James Liggett <jrliggett cox net>
Date: Wed Jul 28 00:51:41 2010 -0700
git: Implement the Clear Stashes pane
plugins/git/Makefile.am | 4 ++-
plugins/git/git-clear-stash-pane.c | 40 ++++++++++++++++++++++++++++++++++++
plugins/git/git-clear-stash-pane.h | 28 +++++++++++++++++++++++++
plugins/git/plugin.c | 9 ++++++++
4 files changed, 80 insertions(+), 1 deletions(-)
---
diff --git a/plugins/git/Makefile.am b/plugins/git/Makefile.am
index 528c014..cf9e55e 100644
--- a/plugins/git/Makefile.am
+++ b/plugins/git/Makefile.am
@@ -211,7 +211,9 @@ libanjuta_git_la_SOURCES = \
git-diff-stash-pane.c \
git-diff-stash-pane.h \
git-drop-stash-pane.c \
- git-drop-stash-pane.h
+ git-drop-stash-pane.h \
+ git-clear-stash-pane.c \
+ git-clear-stash-pane.h
libanjuta_git_la_LDFLAGS = $(ANJUTA_PLUGIN_LDFLAGS)
diff --git a/plugins/git/git-clear-stash-pane.c b/plugins/git/git-clear-stash-pane.c
new file mode 100644
index 0000000..e26cbd2
--- /dev/null
+++ b/plugins/git/git-clear-stash-pane.c
@@ -0,0 +1,40 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
+/*
+ * git-shell-test
+ * Copyright (C) James Liggett 2010 <jrliggett cox net>
+ *
+ * git-shell-test is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * git-shell-test is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "git-clear-stash-pane.h"
+
+void
+on_clear_stash_button_clicked (GtkAction *action, Git *plugin)
+{
+ GitStashClearCommand *clear_command;
+
+ clear_command = git_stash_clear_command_new (plugin->project_root_directory);
+
+ g_signal_connect (G_OBJECT (clear_command), "command-finished",
+ G_CALLBACK (git_pane_report_errors),
+ plugin);
+
+
+ g_signal_connect (G_OBJECT (clear_command), "command-finished",
+ G_CALLBACK (g_object_unref),
+ NULL);
+
+ anjuta_command_start (ANJUTA_COMMAND (clear_command));
+}
+
\ No newline at end of file
diff --git a/plugins/git/git-clear-stash-pane.h b/plugins/git/git-clear-stash-pane.h
new file mode 100644
index 0000000..7d0eb9f
--- /dev/null
+++ b/plugins/git/git-clear-stash-pane.h
@@ -0,0 +1,28 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
+/*
+ * git-shell-test
+ * Copyright (C) James Liggett 2010 <jrliggett cox net>
+ *
+ * git-shell-test is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * git-shell-test is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef _GIT_CLEAR_STASH_PANE_H_
+#define _GIT_CLEAR_STASH_PANE_H_
+
+#include "git-stash-clear-command.h"
+#include "git-pane.h" /* For GtkAction and Git plugin structure */
+
+void on_clear_stash_button_clicked (GtkAction *action, Git *plugin);
+
+#endif
\ No newline at end of file
diff --git a/plugins/git/plugin.c b/plugins/git/plugin.c
index c0b6989..8699592 100644
--- a/plugins/git/plugin.c
+++ b/plugins/git/plugin.c
@@ -48,6 +48,7 @@
#include "git-apply-stash-pane.h"
#include "git-diff-stash-pane.h"
#include "git-drop-stash-pane.h"
+#include "git-clear-stash-pane.h"
AnjutaCommandBarEntry branch_entries[] =
{
@@ -300,6 +301,14 @@ AnjutaCommandBarEntry stash_entries[] =
N_("Delete the selected stash"),
GTK_STOCK_DELETE,
G_CALLBACK (on_drop_stash_button_clicked)
+ },
+ {
+ ANJUTA_COMMAND_BAR_ENTRY_BUTTON,
+ "ClearStashes",
+ N_("Clear all stashes"),
+ N_("Delete all stashes in this repository"),
+ GTK_STOCK_CLEAR,
+ G_CALLBACK (on_clear_stash_button_clicked)
}
};
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]