set x window id. will be useful to tag the fifo
[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 <gdk/gdkx.h>
33 #include <webkit/webkit.h>
34
35 static GtkWidget* main_window;
36 static GtkWidget* uri_entry;
37 static GtkWidget* mainbar;
38 static WebKitWebView* web_view;
39 static gchar* main_title;
40 static gchar* history_file;
41 static gint load_progress;
42 static guint status_context_id;
43
44 Window xwin = NULL;
45 gchar* uri = NULL;
46 static gboolean verbose = FALSE;
47
48 static GOptionEntry entries[] =
49 {
50   { "uri", 'u', 0, G_OPTION_ARG_STRING, &uri, "Uri to load", NULL },
51   { "verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose, "Be verbose", NULL },
52   { NULL }
53 };
54
55
56
57 static void
58 log_history_cb () {
59     FILE * output_file = fopen(history_file, "a");
60     if (output_file == NULL) {
61        fprintf(stderr, "Cannot open %s for logging\n", history_file);
62     } else {
63         time_t rawtime;
64         struct tm * timeinfo;
65         char buffer [80];
66         time ( &rawtime );
67         timeinfo = localtime ( &rawtime );
68         strftime (buffer,80,"%Y-%m-%d %H:%M:%S",timeinfo);
69
70         fprintf(output_file, "%s %s\n",buffer, uri);
71         fclose(output_file);
72     }
73 }
74
75
76 static void
77 activate_uri_entry_cb (GtkWidget* entry, gpointer data)
78 {
79     uri = gtk_entry_get_text (GTK_ENTRY (entry));
80     g_assert (uri);
81     webkit_web_view_load_uri (web_view, uri);
82 }
83
84 static void
85 update_title (GtkWindow* window)
86 {
87     GString* string = g_string_new (main_title);
88     g_string_append (string, " - Uzbl browser");
89     if (load_progress < 100)
90         g_string_append_printf (string, " (%d%%)", load_progress);
91     gchar* title = g_string_free (string, FALSE);
92     gtk_window_set_title (window, title);
93     g_free (title);
94 }
95
96 static void
97 link_hover_cb (WebKitWebView* page, const gchar* title, const gchar* link, gpointer data)
98 {
99     /* underflow is allowed */
100     //gtk_statusbar_pop (main_statusbar, status_context_id);
101     //if (link)
102     //    gtk_statusbar_push (main_statusbar, status_context_id, link);
103     //TODO implementation roadmap pending..
104 }
105
106 static void
107 title_change_cb (WebKitWebView* web_view, WebKitWebFrame* web_frame, const gchar* title, gpointer data)
108 {
109     if (main_title)
110         g_free (main_title);
111     main_title = g_strdup (title);
112     update_title (GTK_WINDOW (main_window));
113 }
114
115 static void
116 progress_change_cb (WebKitWebView* page, gint progress, gpointer data)
117 {
118     load_progress = progress;
119     update_title (GTK_WINDOW (main_window));
120 }
121
122 static void
123 load_commit_cb (WebKitWebView* page, WebKitWebFrame* frame, gpointer data)
124 {
125     const gchar* uri = webkit_web_frame_get_uri(frame);
126     if (uri)
127         gtk_entry_set_text (GTK_ENTRY (uri_entry), uri);
128 }
129
130 static void
131 destroy_cb (GtkWidget* widget, gpointer data)
132 {
133     gtk_main_quit ();
134 }
135
136 static void
137 go_back_cb (GtkWidget* widget, gpointer data)
138 {
139     webkit_web_view_go_back (web_view);
140 }
141
142 static void
143 go_forward_cb (GtkWidget* widget, gpointer data)
144 {
145     webkit_web_view_go_forward (web_view);
146 }
147
148 static GtkWidget*
149 create_browser ()
150 {
151     GtkWidget* scrolled_window = gtk_scrolled_window_new (NULL, NULL);
152     gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window), GTK_POLICY_NEVER, GTK_POLICY_NEVER); //todo: some sort of display of position/total length. like what emacs does
153
154     web_view = WEBKIT_WEB_VIEW (webkit_web_view_new ());
155     gtk_container_add (GTK_CONTAINER (scrolled_window), GTK_WIDGET (web_view));
156
157     g_signal_connect (G_OBJECT (web_view), "title-changed", G_CALLBACK (title_change_cb), web_view);
158     g_signal_connect (G_OBJECT (web_view), "load-progress-changed", G_CALLBACK (progress_change_cb), web_view);
159     g_signal_connect (G_OBJECT (web_view), "load-committed", G_CALLBACK (load_commit_cb), web_view);
160     g_signal_connect (G_OBJECT (web_view), "load-committed", G_CALLBACK (log_history_cb), web_view);
161     g_signal_connect (G_OBJECT (web_view), "hovering-over-link", G_CALLBACK (link_hover_cb), web_view);
162
163     return scrolled_window;
164 }
165
166 static GtkWidget*
167 create_mainbar ()
168 {
169     mainbar = gtk_hbox_new(FALSE, 0);
170     uri_entry = gtk_entry_new();
171     gtk_entry_set_width_chars(GTK_ENTRY(uri_entry), 40);
172     gtk_entry_set_text(GTK_ENTRY(uri_entry), "http://");
173     gtk_box_pack_start (GTK_BOX (mainbar), uri_entry, FALSE,TRUE , 0);
174     gtk_signal_connect_object (GTK_OBJECT (uri_entry), "activate", GTK_SIGNAL_FUNC (activate_uri_entry_cb), GTK_OBJECT (uri_entry));
175
176     //status_context_id = gtk_statusbar_get_context_id (main_statusbar, "Link Hover");
177
178     return mainbar;
179 }
180
181 static
182 GtkWidget* create_window ()
183 {
184     GtkWidget* window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
185     gtk_window_set_default_size (GTK_WINDOW (window), 800, 600);
186     gtk_widget_set_name (window, "Uzbl browser");
187     g_signal_connect (G_OBJECT (window), "destroy", G_CALLBACK (destroy_cb), NULL);
188
189     return window;
190 }
191
192 int main (int argc, char* argv[])
193 {
194     gtk_init (&argc, &argv);
195     if (!g_thread_supported ())
196         g_thread_init (NULL);
197
198     GKeyFile* config = g_key_file_new ();
199     gboolean res = g_key_file_load_from_file (config, "./sampleconfig", G_KEY_FILE_NONE, NULL); //TODO: pass config file as argument
200     if(res) {
201         printf("config loaded\n");
202     } else {
203         fprintf(stderr,"config loading failed\n"); //TODO: exit codes with gtk? 
204     }
205     history_file = g_key_file_get_value (config, "behavior", "history_file", NULL);
206     if(history_file) {
207         printf("setting history file to: %s\n",history_file);
208     } else {
209         printf("history logging disabled\n");
210     }
211
212     GtkWidget* vbox = gtk_vbox_new (FALSE, 0);
213     gtk_box_pack_start (GTK_BOX (vbox), create_mainbar (), FALSE, TRUE, 0);
214     gtk_box_pack_start (GTK_BOX (vbox), create_browser (), TRUE, TRUE, 0);
215
216
217
218     main_window = create_window ();
219     gtk_container_add (GTK_CONTAINER (main_window), vbox);
220   GError *error = NULL;
221
222   GOptionContext* context = g_option_context_new ("- some stuff here maybe someday");
223   g_option_context_add_main_entries (context, entries, NULL);
224   g_option_context_add_group (context, gtk_get_option_group (TRUE));
225   g_option_context_parse (context, &argc, &argv, &error);
226
227
228     webkit_web_view_load_uri (web_view, uri);
229
230     gtk_widget_grab_focus (GTK_WIDGET (web_view));
231     gtk_widget_show_all (main_window);
232     xwin = GDK_WINDOW_XID (GTK_WIDGET (main_window)->window);
233     printf("My X window id is %i\n",(int) xwin);
234
235     gtk_main ();
236
237     return 0;
238 }