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