fluxbox/src/FbTk/TextTheme.hh

56 lines
2 KiB
C++
Raw Normal View History

2003-08-11 14:28:38 +00:00
// TextTheme.hh
2006-02-16 06:53:05 +00:00
// Copyright (c) 2003 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org)
2003-08-11 14:28:38 +00:00
// and Simon Bowden (rathnor at users.sourceforge.net)
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
#ifndef FBTK_TEXTTHEME_HH
#define FBTK_TEXTTHEME_HH
2003-08-11 14:28:38 +00:00
#include "Theme.hh"
#include "Font.hh"
#include "Color.hh"
#include "Orientation.hh"
#include "GContext.hh"
2003-08-11 14:28:38 +00:00
namespace FbTk {
2003-08-11 14:28:38 +00:00
class TextTheme {
public:
TextTheme(Theme &theme, const std::string &name, const std::string &altname);
virtual ~TextTheme() { }
2003-08-11 14:28:38 +00:00
2008-01-04 09:06:38 +00:00
void updateTextColor();
2003-08-11 14:28:38 +00:00
Font &font() { return *m_font; }
const Font &font() const { return *m_font; }
const Color &textColor() const { return *m_text_color; }
Justify justify() const { return *m_justify; }
2003-08-27 18:05:12 +00:00
GC textGC() const { return m_text_gc.gc(); }
2003-08-11 14:28:38 +00:00
private:
ThemeItem<Font> m_font;
ThemeItem<Color> m_text_color;
ThemeItem<Justify> m_justify;
GContext m_text_gc;
2003-08-11 14:28:38 +00:00
};
2008-04-21 22:43:10 +00:00
} // end namespace FbTk
#endif // FBTK_TEXTTHEME_HH