Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Francis <santiago.danielfrancis@gmail.com>2011-12-07 16:44:08 (GMT)
committer Daniel Francis <santiago.danielfrancis@gmail.com>2011-12-07 16:44:08 (GMT)
commitd80dda828e0711f1558710b6a9a7a4dbf63440fb (patch)
tree701655c82093070d4fe8e2488685d7c106a8b161
parent662b5715ba8c23d1c80767b52cf625bfe7f2933b (diff)
Some changes for the new save dialog
-rw-r--r--activity.py52
1 files changed, 30 insertions, 22 deletions
diff --git a/activity.py b/activity.py
index 0d8bd25..8e8312f 100644
--- a/activity.py
+++ b/activity.py
@@ -243,6 +243,13 @@ class JAMEdit(activity.Activity):
def pep8_check(self, widget):
self.editor.pep8.check_file(self.editor._get_all_text(), self.editor)
+ def close(self, skip_save=False):
+ close = True
+ if not self.editor.file:
+ close = self.save_file(None, type="exit", mode=2)
+ if close:
+ activity.Activity.close(self)
+
def open_file(self, widget):
file_path = file_choosers.open_file_dialog()
if file_path != None:
@@ -257,15 +264,16 @@ class JAMEdit(activity.Activity):
file.close()
def new(self, widget):
- self.save_file(None, type="exit")
- self.metadata["mime_type"] = "text/x-generic"
- self.editor.lang = None
- self.editor.file = None
- self.editor.lang_combo.set_active(0)
- self.editor.buffer.set_highlight_syntax(False)
- self.edit_toolbar.pep8_btn.hide()
- self.editor.buffer.set_text("")
- self.set_title(_("New"))
+ _continue = self.save_file(None, type="exit")
+ if _contiue:
+ self.metadata["mime_type"] = "text/x-generic"
+ self.editor.lang = None
+ self.editor.file = None
+ self.editor.lang_combo.set_active(0)
+ self.editor.buffer.set_highlight_syntax(False)
+ self.edit_toolbar.pep8_btn.hide()
+ self.editor.buffer.set_text("")
+ self.set_title(_("New"))
def save_file_as(self, widget):
file_path = file_choosers.save_file_dialog()
@@ -296,7 +304,7 @@ class JAMEdit(activity.Activity):
file.close()
if type == "exit":
dialog = gtk.MessageDialog(type=gtk.MESSAGE_QUESTION)
- dialog.add_buttons(gtk.STOCK_NO, gtk.RESPONSE_CANCEL, gtk.STOCK_YES, gtk.RESPONSE_ACCEPT)
+ dialog.add_buttons(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL, gtk.STOCK_NO, gtk.RESPONSE_NO, gtk.STOCK_YES, gtk.RESPONSE_YES)
dialog.set_markup("<b>%s</b>" % _("Save changes..."))
if mode == 1:
dialog.format_secondary_text(_("Do you want to save changes?"))
@@ -304,18 +312,21 @@ class JAMEdit(activity.Activity):
dialog.format_secondary_text(_("Do you want to save changes\nin the file system?"))
response = dialog.run()
dialog.destroy()
- if response == gtk.RESPONSE_ACCEPT:
- if self.editor.file:
- file = open(self.editor.file, "w")
- file.write(self.editor._get_all_text())
- file.close()
- else:
- file_path = file_choosers.save_file_dialog()
- if file_path:
- self.editor.file = file_path
+ if not response == gtk.RESPONSE_CANCEL:
+ if response == gtk.RESPONSE_YES:
+ if self.editor.file:
file = open(self.editor.file, "w")
file.write(self.editor._get_all_text())
file.close()
+ else:
+ file_path = file_choosers.save_file_dialog()
+ if file_path:
+ self.editor.file = file_path
+ file = open(self.editor.file, "w")
+ file.write(self.editor._get_all_text())
+ file.close()
+ return True
+ else: return False
def write_file(self, file_path):
if self.editor.lang:
@@ -330,9 +341,6 @@ class JAMEdit(activity.Activity):
jfile.write(self.editor._get_all_text())
jfile.close()
- if not self.editor.file:
- self.save_file(None, type="exit", mode=2)
-
def read_file(self, file_path):
fpath = open(file_path, "r")
text = fpath.read()