diff options
author | jcid <devnull@localhost> | 2008-05-22 18:31:16 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-05-22 18:31:16 +0200 |
commit | 5bebce82075f689f7cf0d749ecd2498bd4c52ff7 (patch) | |
tree | 13ccae2711aa8dbd7d8bc97eb4d51290575e23fb /src/ui.hh | |
parent | 9d97108cd3fe3a35bfcfabdf0839ab8d089dc483 (diff) |
- Replaced the findtext dialog with an in-window widget!
Diffstat (limited to 'src/ui.hh')
-rw-r--r-- | src/ui.hh | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -11,6 +11,8 @@ #include <fltk/Output.h> #include <fltk/Image.h> +#include "findbar.hh" + using namespace fltk; typedef enum { @@ -57,6 +59,7 @@ class UI : public fltk::Window { int xpos, bw, bh, fh, lh, lbl; UIPanelmode Panelmode; + Findbar *findbar; PackedGroup *make_toolbar(int tw, int th); PackedGroup *make_location(); @@ -87,6 +90,7 @@ public: void paste_url(); void set_panelmode(UIPanelmode mode); UIPanelmode get_panelmode(); + void set_findbar_visibility(bool visible); Widget *fullscreen_button() { return FullScreen; } void fullscreen_toggle() { FullScreen->do_callback(); } |