aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/MenuItem.hh
AgeCommit message (Collapse)AuthorFilesLines
2016-08-28fix compiler warning about std::auto_ptrMathias Gumz1-2/+2
fluxbox uses std::unique_ptr<> where it previously used std::auto_ptr<>. C++0X was approved in 2011. among other things, it deprecates std::auto_ptr. 5 years is long enough for compilers to catch up the standard.
2015-05-01roll back 7e17056: m_index does not exist anymoreMathias Gumz1-6/+1
m_index was removed in 03ce82a.
2015-05-01Initialize m_index in MenuItem's constructors.Mario J. Rugiero1-1/+6
2015-01-28Feature: typeahead in menu matches text anywhereMathias Gumz1-17/+8
This commit implements a tweak to the typeahead feature already existent in fluxbox: If the user opens up a menu and starts typing, fluxbox tries to detect matching menu items and makes them available for quick selection. The typed pattern is now search also in the middle of the text. I opted to strip down the code quite a bit and remove complexity by throwing out FbTk::TypeAhead and FbTk::SearchResult because I do not see the need for a general solution when the only use case for such a feature is in fluxbox' menus. FbTk::ITypeAheadable shrunk down to 2 functions; the whole file might be combined with the code that implements FbTk::Menu::TypeSearch. FbTk::Menu::setIndex() and related code is also gone: the position of each menu item is defined by it's position in the items container. This reduces the mount of book keeping fluxbox has to do. Fewer moving parts is a good thing. It's possible that users start to complaint because they expect their typed pattern to match only at the beginning of the text OR that some demand other tweaks. We will see. This commit also fixes a regression introduced by 8387742c. The bug made the menu vanish.
2015-01-16Fix uninitialized variables; cosmeticsMathias Gumz1-5/+11
Note: I expect only modern compilers will hit the source of fluxbox. It seems futile to guard stdlib headers while demanding <algorithm> etc. This should trim down the noise in the source quite a bit.
2010-09-08introduced FbTk::BidiStringMathias Gumz1-9/+9
a 'BidiString' holds both the logical content and the visual reordered version of the content of a string. this helps to reduce the number of calls to reorder the string before drawing it (as introduced in the patch from Ken Bloom) and to be more consistent in menus and textboxes (drawing cursors and underlining text).
2008-01-11make FbTk::Command a template class, split parsing information out of ↵Mark Tiefenbruck1-5/+5
ObjectRegistry
2008-01-05update code to use ThemeProxyMark Tiefenbruck1-5/+6
2008-01-04remove old svn $Id$ tagsMark Tiefenbruck1-2/+0
2007-12-29'inline' in class declaration is implicitly inlineMathias Gumz1-10/+10
2007-12-18holding control will now keep the menu openMark Tiefenbruck1-1/+1
2007-12-18make MenuItem responsible for decision to close menu when clickedMark Tiefenbruck1-18/+22
2007-10-13merged changes from pre-develmarkt1-0/+3
2007-04-17basicly cosmetic changes, patch by slava semushinmathias1-1/+0
2007-03-03added support for typeahead in menusmarkt1-1/+14
2007-01-07per-window transparency, including apps and menu support, plus some simonb1-8/+8
infrastructure and related changes. Thanks for original patch from Julien Trolet, dmxen at sourceforge dot net
2006-05-20improve native language handling, move messages and menu labels to simonb1-10/+11
FbTk::FbString
2005-06-23added showSubmenu in MenuItemfluxgen1-2/+4
2005-05-03fix some menu drawing issuessimonb1-2/+20
2005-04-26extension of previous big patch. Move a bunch of menu things onto simonb1-0/+2
background pixmap. Same for textbuttons.
2005-01-24copyright datemathias1-1/+1
2004-11-19svn propset svn:keywords "Id"mathias1-1/+1
2004-06-10include pixmap with maskfluxgen1-2/+3
2004-06-10icon in menu itemfluxgen1-4/+13
2004-06-07drawing of items is now done in MenuItemfluxgen1-12/+29
2003-12-16fixed some icc warningsfluxgen1-2/+2
2003-08-27added m_toggle_item valuefluxgen1-7/+13
2003-02-17we might want to change command once the object is createdfluxgen1-1/+2
2003-01-12item in the menufluxgen1-0/+94