]> git.tdb.fi Git - ext/subsurface.git/commitdiff
Some UI beauty patches:
authorHylke Bons <hylkebons@gmail.com>
Sun, 4 Sep 2011 15:08:40 +0000 (17:08 +0200)
committerHylke Bons <hylkebons@gmail.com>
Sun, 4 Sep 2011 17:37:23 +0000 (19:37 +0200)
Uppercase first letter for each label word
Tweak the paddings for easier reading
Rename File menu to Log menu
Add a separator before Quit in the Log menu
Remove frame in extended diving info and add 6px padding

Signed-off-by: Hylke Bons <hylkebons@gmail.com>
info.c
main.c
profile.c

diff --git a/info.c b/info.c
index 55708bedfd7b103313810034398749d2364659d9..beadda0a5d679e856a0c79099bac3f7cfe9828ce 100644 (file)
--- a/info.c
+++ b/info.c
@@ -164,21 +164,16 @@ static GtkTextBuffer *text_entry(GtkWidget *box, const char *label, gboolean exp
        return buffer;
 }
 
-GtkWidget *extended_dive_info_frame(void)
+GtkWidget *extended_dive_info_box(void)
 {
-       GtkWidget *frame;
        GtkWidget *vbox;
-
-       frame = gtk_frame_new("Extended dive info");
-       gtk_widget_show(frame);
-
-       vbox = gtk_vbox_new(FALSE, 5);
-       gtk_container_add(GTK_CONTAINER(frame), vbox);
+       vbox = gtk_vbox_new(FALSE, 6);
 
        location = text_entry(vbox, "Location", FALSE);
+       gtk_container_set_border_width(GTK_CONTAINER(vbox), 6);
        notes = text_entry(vbox, "Notes", TRUE);
 
        /* Add extended info here: name, description, yadda yadda */
        update_dive_info(current_dive);
-       return frame;
+       return vbox;
 }
diff --git a/main.c b/main.c
index c9cda2b472ec56db5398b2aa729e768ed4cb8bc3..99c4b6f2a104f0838ff07fe9a7b210b23206f02a 100644 (file)
--- a/main.c
+++ b/main.c
@@ -134,7 +134,7 @@ static void quit(GtkWidget *w, gpointer data)
 }
 
 static GtkActionEntry menu_items[] = {
-       { "FileMenuAction", GTK_STOCK_FILE, "File", NULL, NULL, NULL},
+       { "FileMenuAction", GTK_STOCK_FILE, "Log", NULL, NULL, NULL},
        { "OpenFile",       GTK_STOCK_OPEN, NULL,   "<control>O", NULL, G_CALLBACK(file_open) },
        { "SaveFile",       GTK_STOCK_SAVE, NULL,   "<control>S", NULL, G_CALLBACK(file_save) },
        { "Quit",           GTK_STOCK_QUIT, NULL,   "<control>Q", NULL, G_CALLBACK(quit) },
@@ -147,6 +147,7 @@ static const gchar* ui_string = " \
                        <menu name=\"FileMenu\" action=\"FileMenuAction\"> \
                                <menuitem name=\"Open\" action=\"OpenFile\" /> \
                                <menuitem name=\"Save\" action=\"SaveFile\" /> \
+                               <separator name=\"Seperator\"/> \
                                <menuitem name=\"Quit\" action=\"Quit\" /> \
                        </menu> \
                </menubar> \
@@ -176,6 +177,7 @@ int main(int argc, char **argv)
        GtkWidget *divelist;
        GtkWidget *table;
        GtkWidget *notebook;
+       GtkWidget *box;
        GtkWidget *frame;
        GtkWidget *menubar;
        GtkWidget *vbox;
@@ -210,6 +212,7 @@ int main(int argc, char **argv)
        table = gtk_table_new(2, 2, FALSE);
        gtk_container_set_border_width(GTK_CONTAINER(table), 5);
        gtk_box_pack_end(GTK_BOX(vbox), table, TRUE, TRUE, 0);
+       gtk_table_set_col_spacings(GTK_TABLE(table), 6);
        gtk_widget_show(table);
 
        /* Create the atual divelist */
@@ -220,11 +223,12 @@ int main(int argc, char **argv)
        /* Frame for minimal dive info */
        frame = dive_info_frame();
        gtk_table_attach(GTK_TABLE(table), frame, 1, 2, 0, 1,
-                GTK_FILL | GTK_SHRINK | GTK_EXPAND, 0, 0, 0);
+                GTK_FILL | GTK_SHRINK | GTK_EXPAND, 0, 6, 6);
 
        /* Notebook for dive info vs profile vs .. */
        notebook = gtk_notebook_new();
-       gtk_table_attach_defaults(GTK_TABLE(table), notebook, 1, 2, 1, 2);
+       gtk_table_attach(GTK_TABLE(table), notebook, 1, 2, 1, 2,
+               GTK_FILL | GTK_EXPAND, GTK_FILL | GTK_EXPAND, 6, 6);
 
        /* Frame for dive profile */
        frame = dive_profile_frame();
@@ -232,8 +236,8 @@ int main(int argc, char **argv)
        dive_profile = frame;
 
        /* Frame for extended dive info */
-       frame = extended_dive_info_frame();
-       gtk_notebook_append_page(GTK_NOTEBOOK(notebook), frame, gtk_label_new("Extended dive Info"));
+       box = extended_dive_info_box();
+       gtk_notebook_append_page(GTK_NOTEBOOK(notebook), box, gtk_label_new("Extended Dive Info"));
 
        gtk_widget_set_app_paintable(win, TRUE);
        gtk_widget_show_all(win);
index 7a0a20828f07c433ed3625bc54bcd8def420619e..c0313032de7ba416c152285f31351c9a1b9d873a 100644 (file)
--- a/profile.c
+++ b/profile.c
@@ -200,7 +200,7 @@ GtkWidget *dive_profile_frame(void)
        GtkWidget *frame;
        GtkWidget *da;
 
-       frame = gtk_frame_new("Dive profile");
+       frame = gtk_frame_new("Dive Profile");
        gtk_widget_show(frame);
        da = gtk_drawing_area_new();
        gtk_widget_set_size_request(da, 450, 350);