webkitpdf.vala
[app.webkitpdf] / webkitpdf.vala
1
2 //valac --vapidir=./vapi --pkg gtk+-3.0 --pkg webkit2gtk-3.0 --pkg libsoup-2.4 webkitpdf.vala BrowserWindow -o /usr/bin/wksnapshot
3  
4 public class webkitpdf {
5  
6     public static string? opt_url = null;
7         public static uint opt_delay = 0;
8         public static string opt_target_png = null;
9         public static string opt_target_pdf = null;     
10         const OptionEntry[] options = {
11                 
12                         
13                         { "url", 0, 0, OptionArg.STRING, ref opt_url, "Url to grab", null },
14                         { "delay", 0, 0, OptionArg.INT, ref opt_delay, "Delay before snapshot in seconds", null },
15                         //{ "png", 0, 0, OptionArg.STRING, ref opt_target_png, "File to write (PNG)", null },
16                         { "inject", 0, 0, OptionArg.STRING, ref opt_inject_js, "Inject Javascript", null },
17                         { "pdf", 0, 0, OptionArg.STRING, ref opt_target_pdf, "File to write (PDF)", null },
18                         { null }
19         };
20     public static int main(string[] args) {
21         Gtk.init(ref args);
22  
23  
24         var opt_context = new OptionContext ("webkitpdf");
25                 
26                 
27                 try {
28                         opt_context.set_help_enabled (true);
29                         opt_context.add_main_entries (options, null);
30                         opt_context.parse (ref args);
31                         
32             if (webkitpdf.opt_url == null) {
33                 throw new OptionError.BAD_VALUE("missing url");
34             }
35                         //if (webkitpdf.opt_target_png == null) {
36             //    throw new OptionError.BAD_VALUE("missing png"  file path);
37             //}
38             if (webkitpdf.opt_target_pdf == null) {
39                 throw new OptionError.BAD_VALUE("missing pdf file path");
40             }
41             
42                 } catch (OptionError e) {
43                         stdout.printf ("error: %s\n", e.message);
44                         stdout.printf ("Run '%s --help' to see a full list of available command line options.\n %s", 
45                                          args[0], opt_context.get_help(true,null));
46                         return 0;
47                 }
48  
49  
50         var browser = new BrowserWindow();
51         browser.el.show_all();
52  
53         Gtk.main();
54  
55         return 0;
56     }
57 }
58
59
60