diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-04 11:49:49 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-04 11:49:49 -0700 |
commit | 230a13476d9af732cb60b2c0393feeadb5b39e67 (patch) | |
tree | 7858e505d87025beecc97379ad08376347f195c8 /display.h | |
parent | 550eb862fa6dbc1d07c6a3165634900421dd2ca6 (diff) | |
parent | 31123f63af0a2b6a9756b8496f56359d1c68a645 (diff) | |
download | subsurface-230a13476d9af732cb60b2c0393feeadb5b39e67.tar.gz |
Merge branch 'ui-improvements' of https://github.com/nathansamson/diveclog
* 'ui-improvements' of https://github.com/nathansamson/diveclog:
Split the dive list in columns. Columns are sortable now (name = date, depth, duration)
Remove the redundant frames in the notebook. Closes #9
Use a pane so the dive list can be made wider or smaller to the users wishes
Diffstat (limited to 'display.h')
-rw-r--r-- | display.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,9 +8,9 @@ extern int selected_dive; #define current_dive (get_dive(selected_dive)) -extern GtkWidget *dive_profile_frame(void); +extern GtkWidget *dive_profile_widget(void); extern GtkWidget *dive_info_frame(void); -extern GtkWidget *extended_dive_info_frame(void); +extern GtkWidget *extended_dive_info_widget(void); extern GtkWidget *create_dive_list(void); extern void update_dive_info(struct dive *dive); extern void repaint_dive(void); |