diff options
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | TODO | 17 | ||||
-rw-r--r-- | doc/Coding_style | 3 |
3 files changed, 18 insertions, 13 deletions
@@ -1,19 +1,24 @@ | |||
1 | Changes for 0.1.6: | 1 | Changes for 0.1.6: |
2 | *02/01/10: | ||
3 | * Fixed rootCommand to screen, so we can have | ||
4 | different rootcommands on the different screens | ||
2 | *02/01/09: | 5 | *02/01/09: |
3 | * Updated copyright date | 6 | * Updated copyright date |
4 | * Updated generate_menu (Thanks zyrnix) | 7 | * Updated generate_menu (Thanks zyrnix) |
8 | * Fixed Withdraw state | ||
9 | * Clean up in old gnome atom code | ||
5 | *02/01/08: | 10 | *02/01/08: |
6 | * Made class Keys more independent (layer 2). class Keys now only | 11 | * Made class Keys more independent (layer 2). class Keys now only |
7 | depends on StringUtil. | 12 | depends on StringUtil. |
8 | * Replaced the old strtok in Keys with a new stringtok from | 13 | * Replaced the old strtok in Keys with a new stringtok from |
9 | StringUtil this should make the config file less restrictive | 14 | StringUtil this should make the config file less restrictive |
10 | * Added stringtok to StringUtil | 15 | * Added stringtok to StringUtil |
11 | * Removed Fluxbox dependency from class Theme | 16 | * Removed Fluxbox dependency from class Theme |
12 | * Fixed closebutton bug | 17 | * Fixed closebutton bug |
13 | * Fixed memory leak in Keys | 18 | * Fixed memory leak in Keys |
14 | *02/01/06: | 19 | *02/01/06: |
15 | * Changed toolbar placement enums to uppercase letters (Claes Nästén) | 20 | * Changed toolbar placement enums to uppercase letters (Claes Nästén) |
16 | * Moved strcasestr from Theme.cc to StringUtil | 21 | * Moved strcasestr from Theme.cc to StringUtil |
17 | * Created StringUtil and DrawUtil and moved all functions from Misc to them | 22 | * Created StringUtil and DrawUtil and moved all functions from Misc to them |
18 | *02/01/05: | 23 | *02/01/05: |
19 | * Changed placement/alignment enums to uppercase letters (Claes Nästén) | 24 | * Changed placement/alignment enums to uppercase letters (Claes Nästén) |
@@ -1,10 +1,7 @@ | |||
1 | TODO for Fluxbox 0.2.0 | 1 | TODO for Fluxbox 0.2.0 |
2 | * "Dont use tab" doesnt save | ||
3 | * Remove the cylic dep between class Tab and class Window | 2 | * Remove the cylic dep between class Tab and class Window |
4 | * Remove the cylic dep between class Theme and class Fluxbox | 3 | * Fix "no font" crash |
5 | !* Fix "no font" crash | ||
6 | * Remove cyclic dep on Basemenu with class Fluxbox | 4 | * Remove cyclic dep on Basemenu with class Fluxbox |
7 | * sloppy focus - auto-raise | ||
8 | * Fix configurable toolbar | 5 | * Fix configurable toolbar |
9 | so the user can configure toolbar in a config file | 6 | so the user can configure toolbar in a config file |
10 | 7 | ||
@@ -16,18 +13,18 @@ TODO for Fluxbox 0.2.0 | |||
16 | 13 | ||
17 | * grabKillWindow to keygrabber grabCloseWindow | 14 | * grabKillWindow to keygrabber grabCloseWindow |
18 | 15 | ||
19 | * Fluxbox::real_reconfigure ...check "session.styleFile %s" | ||
20 | * grabRootmenu | 16 | * grabRootmenu |
21 | * wheel-config support | 17 | * wheel-config support |
22 | * separator in the menus | 18 | * separator in the menus |
23 | * slit-maximize-stop | ||
24 | (* restructure BImageControl::parseTexture) | 19 | (* restructure BImageControl::parseTexture) |
25 | * slit.onTop and slit.placement "bugg" when changin in configurefile | ||
26 | * fix "move group to..." without tab bugg. | 20 | * fix "move group to..." without tab bugg. |
27 | * 0,0-pos fix | 21 | * 0,0-pos fix |
28 | * reconfigure tar upp nya dekorationer | 22 | * gnome support |
29 | 23 | * net wm atom support | |
30 | * Create fbrun style app | 24 | * fix some more enums to uppercase |
25 | * clean up in the global namespace | ||
26 | * remove cyclic deps | ||
27 | * Create fbinput style app | ||
31 | (* Add wheelscroll-workspace-change configuration (reversed order or | 28 | (* Add wheelscroll-workspace-change configuration (reversed order or |
32 | regular)- Add "system menu" for minimized apps in the toolbar. | 29 | regular)- Add "system menu" for minimized apps in the toolbar. |
33 | (Close, Kill, Send to, etc) ) | 30 | (Close, Kill, Send to, etc) ) |
diff --git a/doc/Coding_style b/doc/Coding_style index df5e398..eff9eea 100644 --- a/doc/Coding_style +++ b/doc/Coding_style | |||
@@ -49,3 +49,6 @@ type classname::function(...) { | |||
49 | enums must be in uppercase letters: | 49 | enums must be in uppercase letters: |
50 | enum {WHITE, RED, BLUE}; | 50 | enum {WHITE, RED, BLUE}; |
51 | 51 | ||
52 | Class data members are prefixed by m_ | ||
53 | Class member function will be organized accordning to creator, | ||
54 | manipulator and accessor categories. | ||