Hover uri added to title - no status bar needed
[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 static gchar selected_url[500];
40
41
42
43 static gchar* uri = NULL;
44 static gboolean verbose = FALSE;
45
46 static GOptionEntry entries[] =
47 {
48   { "uri", 'u', 0, G_OPTION_ARG_STRING, &uri, "Uri to load", NULL },
49   { "verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose, "Be verbose", NULL },
50   { NULL }
51 };
52
53
54
55
56 static void
57 activate_uri_entry_cb (GtkWidget* entry, gpointer data)
58 {
59     const gchar* uri = gtk_entry_get_text (GTK_ENTRY (entry));
60     g_assert (uri);
61     webkit_web_view_load_uri (web_view, uri);
62 }
63
64 static void update_title (GtkWindow* window)
65 {
66     GString* string = g_string_new (main_title);
67     g_string_append (string, " - Uzbl browser");
68     if (load_progress < 100)
69         g_string_append_printf (string, " (%d%%)", load_progress);
70
71     if (selected_url[0]!=0) {
72         g_string_append_printf (string, " -> (%s)", selected_url);
73     }
74
75     gchar* title = g_string_free (string, FALSE);
76     gtk_window_set_title (window, title);
77     g_free (title);
78 }
79
80 static void
81 link_hover_cb (WebKitWebView* page, const gchar* title, const gchar* link, gpointer data)
82 {
83     /* underflow is allowed */
84     gtk_statusbar_pop (main_statusbar, status_context_id);
85     if (link)
86         gtk_statusbar_push (main_statusbar, status_context_id, link);
87
88     //ADD HOVER URL TO WINDOW TITLE
89     selected_url[0]='\0';
90     if (link) {
91         strcpy (selected_url,link);
92     }
93     update_title (GTK_WINDOW (main_window));
94
95 }
96
97 static void
98 title_change_cb (WebKitWebView* web_view, WebKitWebFrame* web_frame, const gchar* title, gpointer data)
99 {
100     if (main_title)
101         g_free (main_title);
102     main_title = g_strdup (title);
103     update_title (GTK_WINDOW (main_window));
104 }
105
106 static void
107 progress_change_cb (WebKitWebView* page, gint progress, gpointer data)
108 {
109     load_progress = progress;
110     update_title (GTK_WINDOW (main_window));
111 }
112
113 static void
114 load_commit_cb (WebKitWebView* page, WebKitWebFrame* frame, gpointer data)
115 {
116     const gchar* uri = webkit_web_frame_get_uri(frame);
117     if (uri)
118         gtk_entry_set_text (GTK_ENTRY (uri_entry), uri);
119 }
120
121 static void
122 destroy_cb (GtkWidget* widget, gpointer data)
123 {
124     gtk_main_quit ();
125 }
126
127 static void
128 go_back_cb (GtkWidget* widget, gpointer data)
129 {
130     webkit_web_view_go_back (web_view);
131 }
132
133 static void
134 go_forward_cb (GtkWidget* widget, gpointer data)
135 {
136     webkit_web_view_go_forward (web_view);
137 }
138
139 static GtkWidget*
140 create_browser ()
141 {
142     GtkWidget* scrolled_window = gtk_scrolled_window_new (NULL, NULL);
143     gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
144
145     web_view = WEBKIT_WEB_VIEW (webkit_web_view_new ());
146     gtk_container_add (GTK_CONTAINER (scrolled_window), GTK_WIDGET (web_view));
147
148     g_signal_connect (G_OBJECT (web_view), "title-changed", G_CALLBACK (title_change_cb), web_view);
149     g_signal_connect (G_OBJECT (web_view), "load-progress-changed", G_CALLBACK (progress_change_cb), web_view);
150     g_signal_connect (G_OBJECT (web_view), "load-committed", G_CALLBACK (load_commit_cb), web_view);
151     g_signal_connect (G_OBJECT (web_view), "hovering-over-link", G_CALLBACK (link_hover_cb), web_view);
152
153     return scrolled_window;
154 }
155
156 static GtkWidget* create_statusbar ()
157 {
158     main_statusbar = GTK_STATUSBAR (gtk_statusbar_new ());
159     status_context_id = gtk_statusbar_get_context_id (main_statusbar, "Link Hover");
160
161     return (GtkWidget*)main_statusbar;
162 }
163
164 static GtkWidget* create_window ()
165 {
166     GtkWidget* window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
167     gtk_window_set_default_size (GTK_WINDOW (window), 800, 600);
168     gtk_widget_set_name (window, "Uzbl browser");
169     g_signal_connect (G_OBJECT (window), "destroy", G_CALLBACK (destroy_cb), NULL);
170
171     return window;
172 }
173
174 int main (int argc, char* argv[])
175 {
176     gtk_init (&argc, &argv);
177     if (!g_thread_supported ())
178         g_thread_init (NULL);
179
180     GtkWidget* vbox = gtk_vbox_new (FALSE, 0);
181     gtk_box_pack_start (GTK_BOX (vbox), create_browser (), TRUE, TRUE, 0);
182     gtk_box_pack_start (GTK_BOX (vbox), create_statusbar (), FALSE, FALSE, 0);
183
184     main_window = create_window ();
185     gtk_container_add (GTK_CONTAINER (main_window), vbox);
186   GError *error = NULL;
187
188   GOptionContext* context = g_option_context_new ("- some stuff here maybe someday");
189   g_option_context_add_main_entries (context, entries, NULL);
190   g_option_context_add_group (context, gtk_get_option_group (TRUE));
191   g_option_context_parse (context, &argc, &argv, &error);
192
193
194     webkit_web_view_load_uri (web_view, uri);
195
196     gtk_widget_grab_focus (GTK_WIDGET (web_view));
197     gtk_widget_show_all (main_window);
198     gtk_main ();
199
200     return 0;
201 }