moving config.h to config.def.h.
[surf.git] / surf.c
diff --git a/surf.c b/surf.c
index 454a585..9a67c04 100644 (file)
--- a/surf.c
+++ b/surf.c
@@ -179,17 +179,29 @@ void
 drawindicator(Client *c) {
        GtkWidget *w;
        gint width;
+       GdkGC *gc;
+       gchar *uri;
+
 
+       uri = geturi(c);
        w = c->indicator;
        width = c->progress * w->allocation.width / 100;
+
+       gc = gdk_gc_new(w->window);
+
+       if(strstr(uri, "https://") == uri)
+               gdk_gc_set_rgb_fg_color(gc, &progress_trust);
+       else
+               gdk_gc_set_rgb_fg_color(gc, &progress);
        gdk_draw_rectangle(w->window,
                        w->style->bg_gc[GTK_WIDGET_STATE(w)],
                        TRUE,
                        0, 0, w->allocation.width, w->allocation.height);
        gdk_draw_rectangle(w->window,
-                       w->style->fg_gc[GTK_WIDGET_STATE(w)],
+                       gc,
                        TRUE,
                        0, 0, width, w->allocation.height);
+       g_object_unref(gc);/*g_free(gc);*/
 }
 
 gboolean
@@ -403,7 +415,7 @@ newclient(void) {
 
        /* indicator */
        c->indicator = gtk_drawing_area_new();
-       gtk_widget_set_size_request(c->indicator, 800, 5);
+       gtk_widget_set_size_request(c->indicator, 800, 2);
        g_signal_connect (G_OBJECT (c->indicator), "expose_event",
                        G_CALLBACK (exposeindicator), c);