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         const OptionEntry[] options = {
10                 
11                         
12                         { "url", 0, 0, OptionArg.STRING, ref opt_url, "Url to grab", null },
13                         { "delay", 0, 0, OptionArg.INT, ref opt_delay, "Delay before snapshot in seconds", null },
14                         //{ "png", 0, 0, OptionArg.STRING, ref opt_target_png, "File to write (PNG)", null },
15                         { "pdf", 0, 0, OptionArg.STRING, ref opt_target_pdf, "File to write (PDF)", null },
16                         { null }
17         };
18     public static int main(string[] args) {
19         Gtk.init(ref args);
20  
21  
22         var opt_context = new OptionContext ("webkitpdf");
23                 
24                 
25                 try {
26                         opt_context.set_help_enabled (true);
27                         opt_context.add_main_entries (options, null);
28                         opt_context.parse (ref args);
29                         
30             if (webkitpdf.opt_url == null) {
31                 throw new OptionError.BAD_VALUE("missing url");
32             }
33                         if (webkitpdf.opt_target_png == null) {
34                 throw new OptionError.BAD_VALUE("missing png");
35             }
36             
37                 } catch (OptionError e) {
38                         stdout.printf ("error: %s\n", e.message);
39                         stdout.printf ("Run '%s --help' to see a full list of available command line options.\n %s", 
40                                          args[0], opt_context.get_help(true,null));
41                         return 0;
42                 }
43  
44  
45         var browser = new BrowserWindow();
46         browser.el.show_all();
47  
48         Gtk.main();
49  
50         return 0;
51     }
52 }
53
54
55