diff options
-rw-r--r-- | src/FbTk/MenuSeparator.cc | 48 | ||||
-rw-r--r-- | src/FbTk/MenuSeparator.hh | 44 |
2 files changed, 92 insertions, 0 deletions
diff --git a/src/FbTk/MenuSeparator.cc b/src/FbTk/MenuSeparator.cc new file mode 100644 index 0000000..45562d9 --- /dev/null +++ b/src/FbTk/MenuSeparator.cc | |||
@@ -0,0 +1,48 @@ | |||
1 | // MenuSeparator.cc for FbTk - Fluxbox ToolKit | ||
2 | // Copyright (c) 2004 Henrik Kinnunen (fluxgen at users.sourceforge.net) | ||
3 | // and Simon Bowden (rathnor at users.sourceforge.net) | ||
4 | // | ||
5 | // Permission is hereby granted, free of charge, to any person obtaining a | ||
6 | // copy of this software and associated documentation files (the "Software"), | ||
7 | // to deal in the Software without restriction, including without limitation | ||
8 | // the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
9 | // and/or sell copies of the Software, and to permit persons to whom the | ||
10 | // Software is furnished to do so, subject to the following conditions: | ||
11 | // | ||
12 | // The above copyright notice and this permission notice shall be included in | ||
13 | // all copies or substantial portions of the Software. | ||
14 | // | ||
15 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
16 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
17 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
18 | // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
19 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
21 | // DEALINGS IN THE SOFTWARE. | ||
22 | |||
23 | // $Id: MenuSeparator.cc,v 1.1 2004/06/07 21:05:16 fluxgen Exp $ | ||
24 | |||
25 | #include "MenuSeparator.hh" | ||
26 | |||
27 | #include "GContext.hh" | ||
28 | #include "MenuTheme.hh" | ||
29 | #include "FbDrawable.hh" | ||
30 | |||
31 | namespace FbTk { | ||
32 | |||
33 | void MenuSeparator::draw(FbDrawable &drawable, | ||
34 | const MenuTheme &theme, | ||
35 | bool highlight, | ||
36 | int x, int y, | ||
37 | unsigned int width, unsigned int height) const { | ||
38 | const GContext &tgc = | ||
39 | (highlight ? theme.hiliteTextGC() : | ||
40 | (isEnabled() ? theme.frameTextGC() : theme.disableTextGC() ) ); | ||
41 | |||
42 | drawable.drawRectangle(tgc.gc(), | ||
43 | x + theme.bevelWidth() + height + 1, y + height / 2, | ||
44 | width - ((theme.bevelWidth() + height) * 2) - 1, 0); | ||
45 | } | ||
46 | |||
47 | } | ||
48 | |||
diff --git a/src/FbTk/MenuSeparator.hh b/src/FbTk/MenuSeparator.hh new file mode 100644 index 0000000..25b6278 --- /dev/null +++ b/src/FbTk/MenuSeparator.hh | |||
@@ -0,0 +1,44 @@ | |||
1 | // MenuSeparator.hh for FbTk - Fluxbox ToolKit | ||
2 | // Copyright (c) 2004 Henrik Kinnunen (fluxgen at users.sourceforge.net) | ||
3 | // and Simon Bowden (rathnor at users.sourceforge.net) | ||
4 | // | ||
5 | // Permission is hereby granted, free of charge, to any person obtaining a | ||
6 | // copy of this software and associated documentation files (the "Software"), | ||
7 | // to deal in the Software without restriction, including without limitation | ||
8 | // the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
9 | // and/or sell copies of the Software, and to permit persons to whom the | ||
10 | // Software is furnished to do so, subject to the following conditions: | ||
11 | // | ||
12 | // The above copyright notice and this permission notice shall be included in | ||
13 | // all copies or substantial portions of the Software. | ||
14 | // | ||
15 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
16 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
17 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
18 | // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
19 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
21 | // DEALINGS IN THE SOFTWARE. | ||
22 | |||
23 | // $Id: MenuSeparator.hh,v 1.1 2004/06/07 21:05:16 fluxgen Exp $ | ||
24 | |||
25 | #ifndef MENUSEPARATOR_HH | ||
26 | #define MENUSEPARATOR_hh | ||
27 | |||
28 | #include "MenuItem.hh" | ||
29 | |||
30 | namespace FbTk { | ||
31 | |||
32 | class MenuSeparator: public MenuItem { | ||
33 | public: | ||
34 | virtual void draw(FbDrawable &drawable, | ||
35 | const MenuTheme &theme, | ||
36 | bool highlight, | ||
37 | int x, int y, | ||
38 | unsigned int width, unsigned int height) const; | ||
39 | |||
40 | }; | ||
41 | |||
42 | } // end namespace FbTk | ||
43 | |||
44 | #endif // MENUSEPARATOR_HH | ||