diff options
author | jcid <devnull@localhost> | 2008-09-26 00:53:13 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-09-26 00:53:13 +0200 |
commit | f0eaf18f7bf51913b8e10c98ee92c69e6fff6a30 (patch) | |
tree | 214b09c3ceebfe19e56093b49ec1953974b695d3 /src/ui.hh | |
parent | 061a12750c5fafcb0c582d182975022c3aa8b7ff (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.hh | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -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; } |