simple commandline argument parsing support
[uzbl-mobile] / uzbl.c
1 // Original code taken from the example webkit-gtk+ application. see notice below.
2
3 /*
4  * Copyright (C) 2006, 2007 Apple Inc.
5  * Copyright (C) 2007 Alp Toker <alp@atoker.com>
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
17  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
20  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
21  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
23  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
24  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 #include <gtk/gtk.h>
30 #include <webkit/webkit.h>
31
32 static GtkWidget* main_window;
33 static GtkWidget* uri_entry;
34 static GtkStatusbar* main_statusbar;
35 static WebKitWebView* web_view;
36 static gchar* main_title;
37 static gint load_progress;
38 static guint status_context_id;
39
40
41
42 static gchar* uri = NULL;
43 static gboolean verbose = FALSE;
44
45 static GOptionEntry entries[] =
46 {
47   { "uri", 'u', 0, G_OPTION_ARG_STRING, &uri, "Uri to load", NULL },
48   { "verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose, "Be verbose", NULL },
49   { NULL }
50 };
51
52
53
54
55 static void
56 activate_uri_entry_cb (GtkWidget* entry, gpointer data)
57 {
58     const gchar* uri = gtk_entry_get_text (GTK_ENTRY (entry));
59     g_assert (uri);
60     webkit_web_view_load_uri (web_view, uri);
61 }
62
63 static void update_title (GtkWindow* window)
64 {
65     GString* string = g_string_new (main_title);
66     g_string_append (string, " - Uzbl browser");
67     if (load_progress < 100)
68         g_string_append_printf (string, " (%d%%)", load_progress);
69     gchar* title = g_string_free (string, FALSE);
70     gtk_window_set_title (window, title);
71     g_free (title);
72 }
73
74 static void
75 link_hover_cb (WebKitWebView* page, const gchar* title, const gchar* link, gpointer data)
76 {
77     /* underflow is allowed */
78     gtk_statusbar_pop (main_statusbar, status_context_id);
79     if (link)
80         gtk_statusbar_push (main_statusbar, status_context_id, link);
81 }
82
83 static void
84 title_change_cb (WebKitWebView* web_view, WebKitWebFrame* web_frame, const gchar* title, gpointer data)
85 {
86     if (main_title)
87         g_free (main_title);
88     main_title = g_strdup (title);
89     update_title (GTK_WINDOW (main_window));
90 }
91
92 static void
93 progress_change_cb (WebKitWebView* page, gint progress, gpointer data)
94 {
95     load_progress = progress;
96     update_title (GTK_WINDOW (main_window));
97 }
98
99 static void
100 load_commit_cb (WebKitWebView* page, WebKitWebFrame* frame, gpointer data)
101 {
102     const gchar* uri = webkit_web_frame_get_uri(frame);
103     if (uri)
104         gtk_entry_set_text (GTK_ENTRY (uri_entry), uri);
105 }
106
107 static void
108 destroy_cb (GtkWidget* widget, gpointer data)
109 {
110     gtk_main_quit ();
111 }
112
113 static void
114 go_back_cb (GtkWidget* widget, gpointer data)
115 {
116     webkit_web_view_go_back (web_view);
117 }
118
119 static void
120 go_forward_cb (GtkWidget* widget, gpointer data)
121 {
122     webkit_web_view_go_forward (web_view);
123 }
124
125 static GtkWidget*
126 create_browser ()
127 {
128     GtkWidget* scrolled_window = gtk_scrolled_window_new (NULL, NULL);
129     gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
130
131     web_view = WEBKIT_WEB_VIEW (webkit_web_view_new ());
132     gtk_container_add (GTK_CONTAINER (scrolled_window), GTK_WIDGET (web_view));
133
134     g_signal_connect (G_OBJECT (web_view), "title-changed", G_CALLBACK (title_change_cb), web_view);
135     g_signal_connect (G_OBJECT (web_view), "load-progress-changed", G_CALLBACK (progress_change_cb), web_view);
136     g_signal_connect (G_OBJECT (web_view), "load-committed", G_CALLBACK (load_commit_cb), web_view);
137     g_signal_connect (G_OBJECT (web_view), "hovering-over-link", G_CALLBACK (link_hover_cb), web_view);
138
139     return scrolled_window;
140 }
141
142 static GtkWidget* create_statusbar ()
143 {
144     main_statusbar = GTK_STATUSBAR (gtk_statusbar_new ());
145     status_context_id = gtk_statusbar_get_context_id (main_statusbar, "Link Hover");
146
147     return (GtkWidget*)main_statusbar;
148 }
149
150 static GtkWidget* create_window ()
151 {
152     GtkWidget* window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
153     gtk_window_set_default_size (GTK_WINDOW (window), 800, 600);
154     gtk_widget_set_name (window, "Uzbl browser");
155     g_signal_connect (G_OBJECT (window), "destroy", G_CALLBACK (destroy_cb), NULL);
156
157     return window;
158 }
159
160 int main (int argc, char* argv[])
161 {
162     gtk_init (&argc, &argv);
163     if (!g_thread_supported ())
164         g_thread_init (NULL);
165
166     GtkWidget* vbox = gtk_vbox_new (FALSE, 0);
167     gtk_box_pack_start (GTK_BOX (vbox), create_browser (), TRUE, TRUE, 0);
168     gtk_box_pack_start (GTK_BOX (vbox), create_statusbar (), FALSE, FALSE, 0);
169
170     main_window = create_window ();
171     gtk_container_add (GTK_CONTAINER (main_window), vbox);
172   GError *error = NULL;
173
174   GOptionContext* context = g_option_context_new ("- some stuff here maybe someday");
175   g_option_context_add_main_entries (context, entries, NULL);
176   g_option_context_add_group (context, gtk_get_option_group (TRUE));
177   g_option_context_parse (context, &argc, &argv, &error);
178
179
180     webkit_web_view_load_uri (web_view, uri);
181
182     gtk_widget_grab_focus (GTK_WIDGET (web_view));
183     gtk_widget_show_all (main_window);
184     gtk_main ();
185
186     return 0;
187 }