1 /***************************************************************************
2 * This file is part of KWorship. *
3 * Copyright 2008 James Hogan <james@albanarts.com> *
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. *
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. *
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 _KwCssStyleSheet_h_
21 #define _KwCssStyleSheet_h_
24 * @file KwCssStyleSheet.h
25 * @brief Cascading style sheet.
26 * @author James Hogan <james@albanarts.com>
29 #include <kdemacros.h>
36 /// Cascading style sheet.
38 * Represents a set of style definitions.
39 * These definitions may be backed up by a CSS-like file.
41 class KDE_EXPORT KwCssStyleSheet
50 typedef QList
<KwCssStyleRule
> RuleList
;
52 /// Constant iterator.
53 typedef RuleList::const_iterator ConstIterator
;
56 typedef RuleList::iterator Iterator
;
59 * Constructors + destructors
62 /// Default constructor.
67 * This copies all except the actual styles in each rule which are aliased.
69 KwCssStyleSheet(const KwCssStyleSheet
& copy
);
72 virtual ~KwCssStyleSheet();
82 void addRule(const KwCssStyleRule
& rule
);
84 /// Import another stylesheet.
85 void importStyleSheet(const KwCssStyleSheet
* styleSheet
);
87 /// Import from CSS-like format into the sheet.
88 void import(const KwCssSchema
* schema
, const QString
& sheet
);
97 /// Get the constant rules.
98 const RuleList
& getRules() const;
100 /// Convert to CSS-like format.
101 QString
toString() const;
109 /// List of style rules.
113 #endif // _KwCssStyleSheet_h_