aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/MenuSeparator.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2004-06-07 21:05:16 (GMT)
committerfluxgen <fluxgen>2004-06-07 21:05:16 (GMT)
commitc7f696db319ff1f93e5561e10ed202fe55aec9ce (patch)
treeefd6ddad3532e334143cb9aee02d2e90c7ea3f1f /src/FbTk/MenuSeparator.cc
parent2bb46b002064f8cd354ff7b06bb602709395a874 (diff)
downloadfluxbox-c7f696db319ff1f93e5561e10ed202fe55aec9ce.zip
fluxbox-c7f696db319ff1f93e5561e10ed202fe55aec9ce.tar.bz2
draws a separator
Diffstat (limited to 'src/FbTk/MenuSeparator.cc')
-rw-r--r--src/FbTk/MenuSeparator.cc48
1 files changed, 48 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
31namespace FbTk {
32
33void 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