Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArtActivity.py
diff options
context:
space:
mode:
authorWalter Bender <walter@sugarlabs.org>2013-10-15 17:16:24 (GMT)
committer Walter Bender <walter@sugarlabs.org>2013-10-15 17:16:24 (GMT)
commit6e31e4be15f0f6388de2ce416cc6a869f0a4580c (patch)
tree68bff1c5790af43fa071123b0459b5177f16e687 /TurtleArtActivity.py
parent068c2315d92f056b7e694f0ee5f2ab41a54c5b67 (diff)
confirm before emptying trash
Diffstat (limited to 'TurtleArtActivity.py')
-rw-r--r--TurtleArtActivity.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/TurtleArtActivity.py b/TurtleArtActivity.py
index 3b83236..4187229 100644
--- a/TurtleArtActivity.py
+++ b/TurtleArtActivity.py
@@ -1526,6 +1526,25 @@ in order to use the plugin.'))
self._old_cursor = self.get_window().get_cursor()
self.get_window().set_cursor(gtk.gdk.Cursor(gtk.gdk.HAND1))
+ def empty_trash_alert(self):
+ ''' We get confirmation from the user before emptying the trash '''
+ alert = ConfirmationAlert()
+ alert.props.title = _('Empty the trash')
+ alert.props.msg = _('Do you really want to empty trash?')
+
+ def _empty_trash_alert_response_cb(alert, response_id, self):
+ if response_id is gtk.RESPONSE_OK:
+ _logger.debug('emptying the trash')
+ self.remove_alert(alert)
+ self.tw.empty_trash()
+ elif response_id is gtk.RESPONSE_CANCEL:
+ _logger.debug('cancel emptying the trash')
+ self.remove_alert(alert)
+
+ alert.connect('response', _empty_trash_alert_response_cb, self)
+ self.add_alert(alert)
+ alert.show()
+
def _add_label(self, string, toolbar, width=None):
''' Add a label to a toolbar. '''
label = gtk.Label(string)