diff options
author | rathnor <rathnor> | 2003-07-20 08:12:36 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-07-20 08:12:36 (GMT) |
commit | 1741ac072dd6516b4dcfdf6dbe9099a335c7bc7d (patch) | |
tree | 8dd1331222e35070a16aaae5d4bd059296dd341c /src/FbTk/Menu.hh | |
parent | ace3e2e6293fa0ae5a2b9d971f24fa45b317ba2e (diff) | |
download | fluxbox_pavel-1741ac072dd6516b4dcfdf6dbe9099a335c7bc7d.zip fluxbox_pavel-1741ac072dd6516b4dcfdf6dbe9099a335c7bc7d.tar.bz2 |
fix menus for "extra" things, like remember, so that they will be
added back if the menu is rebuilt.
Diffstat (limited to 'src/FbTk/Menu.hh')
-rw-r--r-- | src/FbTk/Menu.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/FbTk/Menu.hh b/src/FbTk/Menu.hh index 013c478..2610ad9 100644 --- a/src/FbTk/Menu.hh +++ b/src/FbTk/Menu.hh | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Menu.hh,v 1.19 2003/07/19 03:59:56 rathnor Exp $ | 25 | // $Id: Menu.hh,v 1.20 2003/07/20 08:12:36 rathnor Exp $ |
26 | 26 | ||
27 | #ifndef FBTK_MENU_HH | 27 | #ifndef FBTK_MENU_HH |
28 | #define FBTK_MENU_HH | 28 | #define FBTK_MENU_HH |
@@ -77,7 +77,7 @@ public: | |||
77 | int remove(unsigned int item); | 77 | int remove(unsigned int item); |
78 | /// remove all items | 78 | /// remove all items |
79 | void removeAll(); | 79 | void removeAll(); |
80 | inline void setInternalMenu() { internal_menu = true; } | 80 | inline void setInternalMenu(bool val = true) { internal_menu = val; } |
81 | inline void setAlignment(Alignment a) { m_alignment = a; } | 81 | inline void setAlignment(Alignment a) { m_alignment = a; } |
82 | inline void setTorn() { torn = true; } | 82 | inline void setTorn() { torn = true; } |
83 | inline void removeParent() { if (internal_menu) m_parent = 0; } | 83 | inline void removeParent() { if (internal_menu) m_parent = 0; } |
@@ -160,7 +160,7 @@ public: | |||
160 | 160 | ||
161 | protected: | 161 | protected: |
162 | 162 | ||
163 | inline void setTitleVisibility(bool b) { title_vis = b; } | 163 | inline void setTitleVisibility(bool b) { title_vis = b; m_need_update = true; } |
164 | inline void setMovable(bool b) { movable = b; } | 164 | inline void setMovable(bool b) { movable = b; } |
165 | inline void setHideTree(bool h) { hide_tree = h; } | 165 | inline void setHideTree(bool h) { hide_tree = h; } |
166 | 166 | ||