BrowserWindow.vala
[app.webkitpdf] / BrowserWindow.vala
index 5cacd2a..73ac9ce 100644 (file)
@@ -4,7 +4,7 @@ public class BrowserWindow : Object
 {
     public Gtk.Window el;
     private BrowserWindow  _this;
-
+    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( () => {
@@ -70,22 +71,15 @@ public class BrowserWindow : Object
                 if (scheme=="https") {
                     ssl="TRUE";
                 }                
-                try {
-                         FileIOStream iostream;
-                             //File file = File.new_tmp ("cookie.txt", out iostream);
-                             //printf ("cookie tmp file name: %s\n", file.get_path ());
-                                            //File file = File.new_for_path(GLib.Environment.get_user_cache_dir() + "/cookie.txt" );
-                                            //print("setting cookie file%s\n",file.get_path());
-                                            
+                try {            
+                    FileIOStream iostream;                           
                     File file = File.new_tmp ("cookie-XXXXXX.txt", out iostream);
-                             print("cookie tmp file name: %s\n", file.get_path ());
-
+                    this.cookie_file = file.get_path ();        
+                    print("cookie tmp file name: %s\n", file.get_path ());
+                
                              OutputStream ostream = iostream.output_stream;
                              DataOutputStream dostream = new DataOutputStream (ostream);                                            
                                             
-                             //FileOutputStream ostream = file.replace (null, false, FileCreateFlags.NONE);
-                             //DataOutputStream dostream = new DataOutputStream (ostream);
-                             
                              dostream.put_string (uri.get_host() + "\tTRUE\t/\t"+ssl+"\t2147483647\t" + cookies[0] + "\t" + cookies[1] );                            
                              cookie_manager.set_persistent_storage(file.get_path(), WebKit.CookiePersistentStorage.TEXT);                            
                     } catch (Error e) {
@@ -115,6 +109,7 @@ public class BrowserWindow : Object
             if (cd < 1) {
                print("calling printit - timed out");
                _this.view.printit();
+               
                return false;                   
             }
             return true;
@@ -322,6 +317,7 @@ public class BrowserWindow : Object
             pe.set_page_setup(psetup);
             pe.finished.connect( () => {
                print("print completed\n");
+               
                 Gtk.main_quit();
                        
             });