diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2011-04-21 13:15:51 -0300 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2011-04-21 13:15:51 -0300 |
commit | feb717facdc7fadf6b629d4bb9a34bfa87eba623 (patch) | |
tree | 286f29f4ee0037d32e592b4c1f3c3262af637169 /src/ui.hh | |
parent | 5567884e9d110921ec880bfb886acdb3ab7e2a65 (diff) |
Added a submenu to control the panel size (Tools)
Diffstat (limited to 'src/ui.hh')
-rw-r--r-- | src/ui.hh | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -168,6 +168,9 @@ public: void paste_url(); void set_panelmode(UIPanelmode mode); UIPanelmode get_panelmode(); + int get_panelsize() { return PanelSize; } + int get_smallicons() { return Small_Icons; } + void change_panel(int new_size, int small_icons); void findbar_toggle(bool add); void fullscreen_toggle(); @@ -177,7 +180,6 @@ public: void pointerOnLink(int flag) { PointerOnLink = flag; } // Hooks to method callbacks - void panel_cb_i(); void color_change_cb_i(); void toggle_cb_i(); void panelmode_cb_i(); |