summaryrefslogtreecommitdiffstats
path: root/tdehtml/css/css_extensionsimpl.h
blob: dba74e2179c0093dcf0add6f7b435ee4b7cd23cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
/*
 * This file is part of the DOM implementation for KDE.
 *
 * (C) 1999 Lars Knoll (knoll@kde.org)
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public License
 * along with this library; see the file COPYING.LIB.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 */
#ifndef _CSS_css_extensionsimpl_h_
#define _CSS_css_extensionsimpl_h_

#include "css_valueimpl.h"
#include "dom_string.h"

namespace DOM {

class CSS2AzimuthImpl : public CSSValueImpl
{
public:
    CSS2AzimuthImpl(DocumentImpl *doc);

    ~CSS2AzimuthImpl();

    unsigned short azimuthType() const;
    DOM::DOMString identifier() const;
    bool behind() const;
    void setAngleValue ( const unsigned short &unitType, const float &floatValue );
    float getAngleValue ( const unsigned short &unitType );
    void setIdentifier ( const DOM::DOMString &identifier, const bool &behind );
};


class DOM::DOMString;

class CSS2BackgroundPositionImpl : public CSSValueImpl
{
public:
    CSS2BackgroundPositionImpl(DocumentImpl *doc);

    ~CSS2BackgroundPositionImpl();

    unsigned short horizontalType() const;
    unsigned short verticalType() const;
    DOM::DOMString horizontalIdentifier() const;
    DOM::DOMString verticalIdentifier() const;
    float getHorizontalPosition ( const float &horizontalType );
    float getVerticalPosition ( const float &verticalType );
    void setHorizontalPosition ( const unsigned short &horizontalType, const float &value );
    void setVerticalPosition ( const unsigned short &verticalType, const float &value );
    void setPositionIdentifier ( const DOM::DOMString &horizontalIdentifier, const DOM::DOMString &verticalIdentifier );
};



class CSS2BorderSpacingImpl : public CSSValueImpl
{
public:
    CSS2BorderSpacingImpl(DocumentImpl *doc);

    ~CSS2BorderSpacingImpl();

    unsigned short horizontalType() const;
    unsigned short verticalType() const;
    float getHorizontalSpacing ( const float &horizontalType );
    float getVerticalSpacing ( const float &verticalType );
    void setHorizontalSpacing ( const unsigned short &horizontalType, const float &value );
    void setVerticalSpacing ( const unsigned short &verticalType, const float &value );
    void setInherit();
};


class CSS2CounterIncrementImpl
{
public:
    CSS2CounterIncrementImpl(DocumentImpl *doc);

    ~CSS2CounterIncrementImpl();

    short increment() const;
    void setIncrement( const short & );
};


class CSS2CounterResetImpl
{
public:
    CSS2CounterResetImpl(DocumentImpl *doc);

    ~CSS2CounterResetImpl();

    short reset() const;
    void setReset( const short & );
};


class CSS2CursorImpl : public CSSValueImpl
{
public:
    CSS2CursorImpl(DocumentImpl *doc);

    ~CSS2CursorImpl();

    unsigned short cursorType() const;
    void setCursorType( const unsigned short & );

    CSSValueList uris() const;
};


class CSS2FontFaceSrcImpl
{
public:
    CSS2FontFaceSrcImpl(DocumentImpl *doc);

    ~CSS2FontFaceSrcImpl();

    CSSValueList format() const;
};


class CSS2FontFaceWidthsImpl
{
public:
    CSS2FontFaceWidthsImpl(DocumentImpl *doc);

    ~CSS2FontFaceWidthsImpl();

    CSSValueList numbers() const;
};


class CSS2PageSizeImpl : public CSSValueImpl
{
public:
    CSS2PageSizeImpl(DocumentImpl *doc);

    ~CSS2PageSizeImpl();

    unsigned short widthType() const;
    unsigned short heightType() const;
    DOM::DOMString identifier() const;
    float getWidth ( const float &widthType );
    float getHeightSize ( const float &heightType );
    void setWidthSize ( const unsigned short &widthType, const float &value );
    void setHeightSize ( const unsigned short &heightType, const float &value );
    void setIdentifier ( const DOM::DOMString &identifier );
};


class CSS2PlayDuringImpl : public CSSValueImpl
{
public:
    CSS2PlayDuringImpl(DocumentImpl *doc);

    ~CSS2PlayDuringImpl();

    unsigned short playDuringType() const;
    bool mix() const;

    void setMix( const bool & );
    bool repeat() const;

    void setRepeat( const bool & );
};


class CSS2PropertiesImpl
{
public:
    CSS2PropertiesImpl(DocumentImpl *doc);

    ~CSS2PropertiesImpl();
};


class CSS2TextShadowImpl
{
public:
    CSS2TextShadowImpl(DocumentImpl *doc);

    ~CSS2TextShadowImpl();

    CSSValue color() const;
    CSSValue horizontal() const;
    CSSValue vertical() const;
    CSSValue blur() const;
};


}; // namespace

#endif