BrowserWindow.vala
[app.webkitpdf] / BrowserWindow.vala
index 374f983..84e3dd0 100644 (file)
@@ -4,7 +4,7 @@ public class BrowserWindow : Object
 {
     public Gtk.Window el;
     private BrowserWindow  _this;
-    private string cookie_file;
+    public string cookie_file;
     public static BrowserWindow singleton()
     {
         if (_BrowserWindow == null) {
@@ -32,6 +32,7 @@ public class BrowserWindow : Object
 
         //listeners
         this.el.destroy.connect( () => {
+                  
             Gtk.main_quit();
         });
         this.el.show.connect( () => {
@@ -108,7 +109,7 @@ public class BrowserWindow : Object
             if (cd < 1) {
                print("calling printit - timed out");
                _this.view.printit();
-               print("deleting tmp file %s\n",file.get_path ());
+               
                return false;                   
             }
             return true;
@@ -251,6 +252,7 @@ public class BrowserWindow : Object
          }
                  
          print("calling print in %d seconds\n", (int)webkitpdf.opt_delay);
+         
          if (webkitpdf.opt_target_pdf != null) {
             GLib.Timeout.add_seconds(webkitpdf.opt_delay, () => { 
                print("delay done URL: %s\n", this.el.uri);
@@ -316,6 +318,7 @@ public class BrowserWindow : Object
             pe.set_page_setup(psetup);
             pe.finished.connect( () => {
                print("print completed\n");
+                this.delete_cookiefile(); 
                 Gtk.main_quit();
                        
             });
@@ -345,6 +348,7 @@ public class BrowserWindow : Object
             */;
              pe.done.connect(() => {
                print("print completed\n");
+               this.delete_cookiefile(); 
                 Gtk.main_quit();
                        
             });
@@ -414,6 +418,16 @@ public class BrowserWindow : Object
             
             
         
+        }
+        
+        public void delete_cookiefile () {
+            print("deleting tmp file %s\n",_this.cookie_file);
+            File file = File.new_for_path (_this.cookie_file);
+                try {
+                         file.delete ();
+                } catch (Error e) {
+                         stdout.printf ("Error: %s\n", e.message);
+                }
         }
     }