all repos — fluxbox @ 5d9491ac1c9efc16704007126979d71d8ca69e78

custom fork of the fluxbox windowmanager

update
fluxgen fluxgen
commit

5d9491ac1c9efc16704007126979d71d8ca69e78

parent

bdac72d061d7dc6742daf99e87aae96b6d3fe376

3 files changed, 18 insertions(+), 13 deletions(-)

jump to
M ChangeLogChangeLog

@@ -1,19 +1,24 @@

Changes for 0.1.6: +*02/01/10: + * Fixed rootCommand to screen, so we can have + different rootcommands on the different screens *02/01/09: * Updated copyright date - * Updated generate_menu (Thanks zyrnix) + * Updated generate_menu (Thanks zyrnix) + * Fixed Withdraw state + * Clean up in old gnome atom code *02/01/08: * Made class Keys more independent (layer 2). class Keys now only depends on StringUtil. * Replaced the old strtok in Keys with a new stringtok from StringUtil this should make the config file less restrictive * Added stringtok to StringUtil - * Removed Fluxbox dependency from class Theme + * Removed Fluxbox dependency from class Theme * Fixed closebutton bug * Fixed memory leak in Keys *02/01/06: * Changed toolbar placement enums to uppercase letters (Claes Nästén) - * Moved strcasestr from Theme.cc to StringUtil + * Moved strcasestr from Theme.cc to StringUtil * Created StringUtil and DrawUtil and moved all functions from Misc to them *02/01/05: * Changed placement/alignment enums to uppercase letters (Claes Nästén)
M TODOTODO

@@ -1,10 +1,7 @@

TODO for Fluxbox 0.2.0 -* "Dont use tab" doesnt save * Remove the cylic dep between class Tab and class Window -* Remove the cylic dep between class Theme and class Fluxbox -!* Fix "no font" crash +* Fix "no font" crash * Remove cyclic dep on Basemenu with class Fluxbox -* sloppy focus - auto-raise * Fix configurable toolbar so the user can configure toolbar in a config file

@@ -16,18 +13,18 @@ you are in "change workspace mode"

* grabKillWindow to keygrabber grabCloseWindow -* Fluxbox::real_reconfigure ...check "session.styleFile %s" * grabRootmenu * wheel-config support * separator in the menus -* slit-maximize-stop (* restructure BImageControl::parseTexture) -* slit.onTop and slit.placement "bugg" when changin in configurefile * fix "move group to..." without tab bugg. * 0,0-pos fix -* reconfigure tar upp nya dekorationer - -* Create fbrun style app +* gnome support +* net wm atom support +* fix some more enums to uppercase +* clean up in the global namespace +* remove cyclic deps +* Create fbinput style app (* Add wheelscroll-workspace-change configuration (reversed order or regular)- Add "system menu" for minimized apps in the toolbar. (Close, Kill, Send to, etc) )
M doc/Coding_styledoc/Coding_style

@@ -49,3 +49,6 @@

enums must be in uppercase letters: enum {WHITE, RED, BLUE}; +Class data members are prefixed by m_ +Class member function will be organized accordning to creator, +manipulator and accessor categories.