[anjuta/git-shell] git: Implement the Drop Stash pane



commit 5940f95599a23ba37a9d725042a00ca0a6232126
Author: James Liggett <jrliggett cox net>
Date:   Wed Jul 28 00:41:44 2010 -0700

    git: Implement the Drop Stash pane

 plugins/git/Makefile.am           |    4 ++-
 plugins/git/git-drop-stash-pane.c |   50 +++++++++++++++++++++++++++++++++++++
 plugins/git/git-drop-stash-pane.h |   28 ++++++++++++++++++++
 plugins/git/plugin.c              |    8 ++++++
 4 files changed, 89 insertions(+), 1 deletions(-)
---
diff --git a/plugins/git/Makefile.am b/plugins/git/Makefile.am
index 8319f63..528c014 100644
--- a/plugins/git/Makefile.am
+++ b/plugins/git/Makefile.am
@@ -209,7 +209,9 @@ libanjuta_git_la_SOURCES = \
 	git-apply-stash-pane.c \
 	git-apply-stash-pane.h \
 	git-diff-stash-pane.c \
-	git-diff-stash-pane.h
+	git-diff-stash-pane.h \
+	git-drop-stash-pane.c \
+	git-drop-stash-pane.h
 
 libanjuta_git_la_LDFLAGS = $(ANJUTA_PLUGIN_LDFLAGS)
 
diff --git a/plugins/git/git-drop-stash-pane.c b/plugins/git/git-drop-stash-pane.c
new file mode 100644
index 0000000..b7e216c
--- /dev/null
+++ b/plugins/git/git-drop-stash-pane.c
@@ -0,0 +1,50 @@
+/* -*- 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-drop-stash-pane.h"
+
+void
+on_drop_stash_button_clicked (GtkAction *action, Git *plugin)
+{
+	gchar *stash;
+	GitStashDropCommand *drop_command;
+
+	stash = git_stash_pane_get_selected_stash_id (GIT_STASH_PANE (plugin->stash_pane));
+	
+	if (stash)
+	{
+		drop_command = git_stash_drop_command_new (plugin->project_root_directory,
+		                                           stash);
+		g_free (stash);
+
+		g_signal_connect (G_OBJECT (drop_command), "command-finished",
+		                  G_CALLBACK (git_pane_report_errors),
+		                  plugin);
+
+
+		g_signal_connect (G_OBJECT (drop_command), "command-finished",
+		                  G_CALLBACK (g_object_unref),
+		                  NULL);
+
+		anjuta_command_start (ANJUTA_COMMAND (drop_command));
+	}
+	else
+		anjuta_util_dialog_error (NULL, _("No stash selected."));
+}
+ 
\ No newline at end of file
diff --git a/plugins/git/git-drop-stash-pane.h b/plugins/git/git-drop-stash-pane.h
new file mode 100644
index 0000000..c56ddd3
--- /dev/null
+++ b/plugins/git/git-drop-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_DROP_STASH_PANE_H_
+#define _GIT_DROP_STASH_PANE_H_
+
+#include "git-stash-drop-command.h"
+#include "git-stash-pane.h"
+
+void on_drop_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 a8fedab..c0b6989 100644
--- a/plugins/git/plugin.c
+++ b/plugins/git/plugin.c
@@ -292,6 +292,14 @@ AnjutaCommandBarEntry stash_entries[] =
 		N_("Show a diff of the selected stash"),
 		GTK_STOCK_ZOOM_100,
 		G_CALLBACK (on_diff_stash_button_clicked)
+	},
+	{
+		ANJUTA_COMMAND_BAR_ENTRY_BUTTON,
+		"DropStash",
+		N_("Drop selected stash"),
+		N_("Delete the selected stash"),
+		GTK_STOCK_DELETE,
+		G_CALLBACK (on_drop_stash_button_clicked)
 	}
 };
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]