summaryrefslogtreecommitdiff
path: root/src/ui.hh
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2008-09-26 00:53:13 +0200
committerjcid <devnull@localhost>2008-09-26 00:53:13 +0200
commitf0eaf18f7bf51913b8e10c98ee92c69e6fff6a30 (patch)
tree214b09c3ceebfe19e56093b49ec1953974b695d3 /src/ui.hh
parent061a12750c5fafcb0c582d182975022c3aa8b7ff (diff)
- Added the "middle_click_opens_new_tab" option to dillo2rc.
- Added the "focus_new_tab" option to dillo2rc. - Added "New Tab", "Open Link in new Tab" and "Open Image in new Tab". - Fixed the resizable when removed by tabs
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; }