summaryrefslogtreecommitdiff
path: root/src/ui.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui.hh')
-rw-r--r--src/ui.hh9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/ui.hh b/src/ui.hh
index 45659aba..605ccc7b 100644
--- a/src/ui.hh
+++ b/src/ui.hh
@@ -36,15 +36,16 @@ typedef enum {
UI_TEMPORARILY_SHOW_PANELS
} UIPanelmode;
-// Private class
+// Private classes
class CustProgressBox;
+class CustTabGroup;
//
// UI class definition -------------------------------------------------------
//
class UI : public fltk::Group {
void *Bw;
- TabGroup *Tabs;
+ CustTabGroup *Tabs;
char *TabTooltip;
Group *TopGroup;
@@ -105,8 +106,8 @@ public:
Widget *fullscreen_button() { return FullScreen; }
void fullscreen_toggle() { FullScreen->do_callback(); }
- TabGroup *tabs() { return Tabs; }
- void tabs(TabGroup *tabs) { Tabs = tabs; }
+ CustTabGroup *tabs() { return Tabs; }
+ void tabs(CustTabGroup *tabs) { Tabs = tabs; }
void *vbw() { return Bw; }
void vbw(void *v_bw) { Bw = v_bw; }