aboutsummaryrefslogtreecommitdiff
path: root/src/ToolTheme.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/ToolTheme.hh')
-rw-r--r--src/ToolTheme.hh58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/ToolTheme.hh b/src/ToolTheme.hh
new file mode 100644
index 0000000..24ae863
--- /dev/null
+++ b/src/ToolTheme.hh
@@ -0,0 +1,58 @@
1// ToolTheme.hh
2// Copyright (c) 2003 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: ToolTheme.hh,v 1.4 2003/08/29 00:45:41 fluxgen Exp $
24
25#ifndef TOOLTHEME_HH
26#define TOOLTHEME_HH
27
28
29#include "TextTheme.hh"
30#include "BorderTheme.hh"
31
32#include "FbTk/Texture.hh"
33
34#include <X11/Xlib.h>
35#include <string>
36
37/// Handles toolbar item theme for text and texture
38class ToolTheme: public FbTk::Theme, public TextTheme {
39public:
40 ToolTheme(int screen_num, const std::string &name, const std::string &altname);
41 virtual ~ToolTheme();
42
43 bool fallback(FbTk::ThemeItem_base &item);
44
45 void reconfigTheme();
46 // textures
47 const FbTk::Texture &texture() const { return *m_texture; }
48 const BorderTheme &border() const { return m_border; }
49
50protected:
51 FbTk::ThemeItem<FbTk::Texture> &textureTheme() { return m_texture; }
52
53private:
54 FbTk::ThemeItem<FbTk::Texture> m_texture;
55 BorderTheme m_border;
56};
57
58#endif // TOOLTHEME_HH