diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2011-03-09 14:20:19 -0300 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2011-03-09 14:20:19 -0300 |
commit | 91775fc630020de9f8505fa731272763167cb08e (patch) | |
tree | 6ab3c99c939ed6f795cf76669ed26d2edcf564b2 /src/ui.hh | |
parent | f8ec6ac86bcc3b9edda3b5edc30d436c3dae839a (diff) |
Made a brand new CustTabs class (to allow fine control of tabs).
Diffstat (limited to 'src/ui.hh')
-rw-r--r-- | src/ui.hh | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -35,7 +35,7 @@ typedef enum { // Private classes class CustProgressBox; -class CustTabGroup; +class CustTabs; // Class definition ---------------------------------------------------------- @@ -115,7 +115,7 @@ public: // UI class definition ------------------------------------------------------- // class UI : public Fl_Pack { - CustTabGroup *Tabs; + CustTabs *Tabs; char *TabTooltip; Fl_Group *TopGroup; @@ -172,8 +172,8 @@ public: Fl_Widget *fullscreen_button() { return FullScreen; } void fullscreen_toggle() { FullScreen->do_callback(); } - CustTabGroup *tabs() { return Tabs; } - void tabs(CustTabGroup *tabs) { Tabs = tabs; } + CustTabs *tabs() { return Tabs; } + void tabs(CustTabs *tabs) { Tabs = tabs; } int pointerOnLink() { return PointerOnLink; } void pointerOnLink(int flag) { PointerOnLink = flag; } |