mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Use a 'notebook' for Info vs Profile
I dunno. This seems a better interface at least if we get more info for the dive, but I suspect I'll want to the add basic info to the profile page too. This makes the 'table' approach to layout be kind of pointless again, and the table has become a fancy vbox. Maybe I'll put the core info back, and use the notebook 'Info' page for extended information. I should just bite the bullet and start saving the dive data, and adding editing functions for adding information. But instead I'm playing around with random gtk widgets. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
a39b2ee220
commit
c17300cfaa
1 changed files with 10 additions and 5 deletions
15
main.c
15
main.c
|
@ -61,6 +61,7 @@ int main(int argc, char **argv)
|
||||||
GtkWidget *win;
|
GtkWidget *win;
|
||||||
GtkWidget *divelist;
|
GtkWidget *divelist;
|
||||||
GtkWidget *table;
|
GtkWidget *table;
|
||||||
|
GtkWidget *notebook;
|
||||||
GtkWidget *frame;
|
GtkWidget *frame;
|
||||||
|
|
||||||
parse_xml_init();
|
parse_xml_init();
|
||||||
|
@ -92,14 +93,18 @@ int main(int argc, char **argv)
|
||||||
divelist = create_dive_list();
|
divelist = create_dive_list();
|
||||||
gtk_table_attach_defaults(GTK_TABLE(table), divelist, 0, 1, 0, 2);
|
gtk_table_attach_defaults(GTK_TABLE(table), divelist, 0, 1, 0, 2);
|
||||||
|
|
||||||
/* Frame for dive profile */
|
/* Notebook for dive info vs profile vs .. */
|
||||||
frame = dive_profile_frame();
|
notebook = gtk_notebook_new();
|
||||||
gtk_table_attach_defaults(GTK_TABLE(table), frame, 1, 2, 1, 2);
|
gtk_table_attach_defaults(GTK_TABLE(table), notebook, 1, 2, 1, 2);
|
||||||
dive_profile = frame;
|
|
||||||
|
|
||||||
/* Frame for dive info */
|
/* Frame for dive info */
|
||||||
frame = dive_info_frame();
|
frame = dive_info_frame();
|
||||||
gtk_table_attach_defaults(GTK_TABLE(table), frame, 1, 2, 0, 1);
|
gtk_notebook_append_page(GTK_NOTEBOOK(notebook), frame, gtk_label_new("Dive Info"));
|
||||||
|
|
||||||
|
/* Frame for dive profile */
|
||||||
|
frame = dive_profile_frame();
|
||||||
|
gtk_notebook_append_page(GTK_NOTEBOOK(notebook), frame, gtk_label_new("Dive Profile"));
|
||||||
|
dive_profile = frame;
|
||||||
|
|
||||||
gtk_widget_set_app_paintable(win, TRUE);
|
gtk_widget_set_app_paintable(win, TRUE);
|
||||||
gtk_widget_show_all(win);
|
gtk_widget_show_all(win);
|
||||||
|
|
Loading…
Add table
Reference in a new issue