aboutsummaryrefslogtreecommitdiff
path: root/src/ui.hh
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2008-10-26 19:21:51 +0100
committerjcid <devnull@localhost>2008-10-26 19:21:51 +0100
commit989c6785ff153d4a84a176639420aa1837ead2d7 (patch)
treeb1e403ecd61f28f999b357e3cb1960dd5dd98391 /src/ui.hh
parente48bb7717ec4a51abf1a2d467a5b1dbebf61888a (diff)
- Added the "middle_click_drags_page" dillorc option.
Diffstat (limited to 'src/ui.hh')
-rw-r--r--src/ui.hh3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ui.hh b/src/ui.hh
index 7a302efd..926a800f 100644
--- a/src/ui.hh
+++ b/src/ui.hh
@@ -64,6 +64,7 @@ class UI : public fltk::Group {
UIPanelmode Panelmode;
Findbar *findbar;
+ int PointerOnLink;
PackedGroup *make_toolbar(int tw, int th);
PackedGroup *make_location();
@@ -103,6 +104,8 @@ public:
CustTabGroup *tabs() { return Tabs; }
void tabs(CustTabGroup *tabs) { Tabs = tabs; }
+ int pointerOnLink() { return PointerOnLink; }
+ void pointerOnLink(int flag) { PointerOnLink = flag; }
// Hooks to method callbacks
void panel_cb_i();