diff options
author | jcid <devnull@localhost> | 2007-10-29 15:51:30 +0100 |
---|---|---|
committer | jcid <devnull@localhost> | 2007-10-29 15:51:30 +0100 |
commit | 2fca0769dca44c7d105fbb3b8d23369be5f7a600 (patch) | |
tree | 8f6e77a8539f706a5f081acea95ef4fd88460ac8 /src/ui.hh | |
parent | 4c6e82430a895d577d3767ef12fccff27922ac25 (diff) |
- Hooked "Activate" to the form_receiver.
- Connected the plain page context menu.
- Added code for the image menu (not hooked yet though).
- Added a image-loading toggle button to the UI (not functional yet).
Diffstat (limited to 'src/ui.hh')
-rw-r--r-- | src/ui.hh | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -34,12 +34,12 @@ typedef enum { class UI : public fltk::Window { Group *TopGroup; Button *Back, *Forw, *Home, *Reload, *Save, *Stop, *Bookmarks, - *Clear, *Search, *FullScreen, *BugMeter; + *Clear, *Search, *FullScreen, *ImageLoad, *BugMeter; Input *Location; Widget *PProg, *IProg; Image *ImgLeftIns, *ImgLeftSens, *ImgRightIns, *ImgRightSens, *ImgStopIns, *ImgStopSens, *ImgFullScreenOn, *ImgFullScreenOff, - *ImgMeterOK, *ImgMeterBug; + *ImgImageLoadOn, *ImgImageLoadOff, *ImgMeterOK, *ImgMeterBug; Group *Panel, *StatusPanel; Widget *Main; Output *Status; @@ -104,6 +104,7 @@ public: void color_change_cb_i(); void toggle_cb_i(); void fullscreen_cb_i(); + void imageload_toggle(); }; #endif // __UI_HH__ |