CSS text properties implemented, margins not accurate, no gui to set
[kworship.git] / kworship / display / KwTextManager.h
blob0e91dd709afd6f5b8d88b7fe3a37026f356cff58
1 /***************************************************************************
2 * This file is part of KWorship. *
3 * Copyright 2008 James Hogan <james@albanarts.com> *
4 * *
5 * KWorship is free software: you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation, either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * KWorship is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with KWorship. If not, write to the Free Software Foundation, *
17 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
18 ***************************************************************************/
20 #ifndef _KwTextManager_h_
21 #define _KwTextManager_h_
23 /**
24 * @file KwTextManager.h
25 * @brief Text manager.
26 * @author James Hogan <james@albanarts.com>
29 #include "KwAbstractDisplayManager.h"
30 #include "KwTextStyle.h"
32 #include <kdemacros.h>
34 #include <QString>
36 class KwCssScope;
37 class KwTextLayer;
39 /// Text manager.
40 /**
41 * High level interface for controlling text on screen.
43 class KDE_EXPORT KwTextManager : public KwAbstractDisplayManager
45 public:
48 * Constructors + destructors
51 /// Default constructor.
52 KwTextManager();
54 /// Destructor.
55 virtual ~KwTextManager();
58 * Main interface
61 /// Apply the styles in a scope.
62 void applyStyles(KwCssScope* scope);
64 /// Clear all text.
65 void clear();
67 /// Set the text.
68 void setText(const QString& text);
70 /// Set formatted text.
71 void setHtml(const QString& html);
73 private:
76 * Variables
79 /// Current style.
80 KwTextStyle m_style;
82 /// Current text layer.
83 KwTextLayer* m_currentLayer;
86 #endif // _KwTextManager_h_