Sample/Window.bjs
[app.Builder.js] / Sample / Editor.js
index 82a6037..8c741ee 100644 (file)
@@ -14,15 +14,21 @@ Editor=new XObject({
     xtype: Gtk.Window,
     listeners : {
         destroy_event : function (self, event) {
-            if (!this.get('/Editor.buffer').checkSyntax) {
+            if (!this.get('/Editor.RightEditor').save()) {
                 // no hiding with errors.
                 return true;
             }
+            this.get('/Editor').activePath = false;
             this.el.hide();
             return true;
         },
         delete_event : function (self, event) {
-              this.el.hide();
+            if (!this.get('/Editor.RightEditor').save()) {
+                // no hiding with errors.
+                return true;
+            }
+            this.el.hide();
+            this.get('/Editor').activePath = false;
             return true;
         },
         configure_event : function (self, object) {
@@ -72,6 +78,11 @@ Editor=new XObject({
                     id : "RightEditor",
                     pack : "add",
                     save : function() {
+                        // make sure we have an active path..
+                         if (!this.get('/Editor').activePath) {
+                            return true;
+                         }
+                         
                          var str = this.get('/Editor.buffer').toString();
                          if (!this.get('/Editor.buffer').checkSyntax()) {
                              this.get('/StandardErrorDialog').show("Fix errors in code and save..");