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
|
/***************************************************************************
* Copyright (C) 2003 by Gulmini Luciano *
* [email protected] *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program 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 General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
#ifndef SHORTHANDFORMER_H
#define SHORTHANDFORMER_H
/**
@author Gulmini Luciano
*/
#include <qmap.h>
class QString;
class QStringList;
class ShorthandFormer{
public:
ShorthandFormer(){}
ShorthandFormer( QMap<QString,QString> m );
~ShorthandFormer(){}
QString compress();
QMap<QString,QString> expand(const QString& propertyName, const QString& propertyValue);
static QStringList SHFormList();
private:
QMap<QString,QString> m_properties;
QString cue_after,
cue_before,
pause_before,
pause_after,
background_color,
background_image,
background_repeat,
background_attachment,
background_position,
border_top_style,
border_top_color,
border_top_width,
border_left_style,
border_left_color,
border_left_width,
border_right_style,
border_right_color,
border_right_width,
border_bottom_style,
border_bottom_color,
border_bottom_width,
outline_style,
outline_color,
outline_width,
list_style_type,
list_style_image,
list_style_position,
font_style,
font_variant,
font_weight,
font_size,
line_height,
font_family,
margin_top,
margin_bottom,
margin_left,
margin_right,
padding_top,
padding_bottom,
padding_left,
padding_right;
private:
QString compressCueProp();
QString compressPauseProp();
QString compressPaddingProp();
QString compressMarginProp();
QString compressFontProp();
QString compressBackgroundProp();
QString compressOutlineProp();
QString compressListStyleProp();
QString compressBorderStyleProp();
QString compressBorderWidthProp();
QString compressBorderColorProp();
QString compressBorderProp();
QString compressImplementation( const QString& prop, const QString& t, const QString& b, const QString& r, const QString& l, const QString& defValue);
QString compressImplementation2( const QString& prop, const QString& after, const QString& before, const QString& defValue);
QString compressImplementation3( const QString& prop, const QString& p1, const QString& p2, const QString& p3);
QMap<QString,QString> expandCueProp(const QStringList& l);
QMap<QString,QString> expandPauseProp(const QStringList& l);
QMap<QString,QString> expandBackgroundProp(const QStringList& l);
QMap<QString,QString> expandFontProp(const QStringList& l);
QMap<QString,QString> expandOutlineProp(const QStringList& l);
QMap<QString,QString> expandListstyleProp(const QStringList& l);
QMap<QString,QString> expandBoxSide(const QString& subPropName, const QStringList& l);
QMap<QString,QString> expandBorderProp(const QStringList& l);
QMap<QString,QString> expandBox(const QString& subPropName, const QStringList& l);
QMap<QString,QString> expandPaddingProp(const QStringList& l);
QMap<QString,QString> expandMarginProp(const QStringList& l);
QMap<QString,QString> expandImplementation(const QString& propertyName, const QStringList& l);
QMap<QString,QString> expandImplementation2(const QString& propertyName, const QStringList& l);
};
#endif
|