tools
[app.Builder.js] / Sample / DialogConfirm.js
index 09409b6..70703ac 100644 (file)
@@ -25,15 +25,19 @@ DialogConfirm=new XObject({
     message_type : Gtk.MessageType.QUESTION,
     use_markup : true,
     text : "-",
+    modal : true,
     listeners : {
-        "destroy_event":function (self, event) {
-            this.el.hide();
-            return true;
-        },
-        "response":function (self, response_id) {
-            if (response_id > 0) {
+        response : function (self, response_id) {
+           this.el.hide();
+        print("RESPOSE: " + response_id);
+            if (response_id == -8) { //yes!
+           print("CALL SUCCES?")
               this.success();
             }
+        },
+        delete_event : function (self, event) {
+            this.el.hide();
+            return true;
         }
     }
 });