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
|
/***************************************************************************
* Copyright (C) 2003 by Gulmini Luciano *
* gulmini.luciano@student.unife.it *
* *
* 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. *
***************************************************************************/
#include "cssshpropertyparser.h"
#include <tqregexp.h>
//#include <kdebug.h>
CSSSHPropertyParser::CSSSHPropertyParser(const TQString& s){
TQStringList l1,
l2=TQStringList::split(",",s);
for ( TQStringList::Iterator it = l2.begin(); it != l2.end(); ++it ) {
TQString temp;
temp=removeBeginningWhiteSpaces((*it));
temp=removeEndingWhiteSpaces(temp);
l1.append(temp);
}
m_propertyToParse = l1.join(",");// we eliminte blanks before after a comma in things like "something" , something , serif
}
CSSSHPropertyParser::~CSSSHPropertyParser(){}
TQString CSSSHPropertyParser::removeEndingWhiteSpaces(const TQString& s){
int index = s.length()-1;
while(s[index] == ' ' ) index--;
return s.left(index+1);
}
TQString CSSSHPropertyParser::removeBeginningWhiteSpaces(const TQString& s){
int index = 0;
while(s[index] == ' ' ) index++;
return s.right(s.length()-index);
}
TQString CSSSHPropertyParser::extractFunctionList(){
TQRegExp functionListPattern("\\s*([a-zA-Z0-9_]*\\([\\W\\w]*\\))\\s*");
functionListPattern.search(m_propertyToParse);
return functionListPattern.cap(1);
}
TQString CSSSHPropertyParser::extractQuotedStringList(){
TQString temp;
bool stop = false;
unsigned int i=0;
while(!stop && i<m_propertyToParse.length() ){
if( m_propertyToParse[i] == ' ' ){
if( ( temp.contains("\"") + temp.contains("\'") )%2 == 0 ) stop = true;
else temp += m_propertyToParse[i];
}
else temp += m_propertyToParse[i];
i++;
}
return temp;
}
TQString CSSSHPropertyParser::extractURIList(){//extract things like url('...') or url("..") or url("..."), url(.....
//kdDebug(24000) << "\n\n\nextractURIList()\n\n\n";
TQRegExp URIListPattern("\\s*(url\\([\\W\\w]*\\))\\s*");
URIListPattern.search(m_propertyToParse);
return URIListPattern.cap(1);
}
TQStringList CSSSHPropertyParser::parse(){
TQStringList tokenList;
bool stop = false;
m_propertyToParse = removeBeginningWhiteSpaces(m_propertyToParse);
while(!stop){
TQString temp;
for(unsigned int i=0;i<m_propertyToParse.length() ;i++){
if(m_propertyToParse[i] == ' ') break;// tokens are delimited by a blank
temp+=m_propertyToParse[i];
}
if(temp.contains("url(") !=0 ){
TQString foundURIList = extractURIList();
m_propertyToParse = removeBeginningWhiteSpaces(m_propertyToParse.remove(foundURIList));
tokenList.append(foundURIList);
}
else
if(temp.contains("(")!=0){
TQString foundFunctionList = extractFunctionList();
m_propertyToParse = removeBeginningWhiteSpaces(m_propertyToParse.remove(foundFunctionList));
tokenList.append(foundFunctionList);
}
else
if(temp.contains("'")!=0 || temp.contains("\"")!=0 || temp.contains(",")!=0){
TQString foundQuotedStringList = extractQuotedStringList();
m_propertyToParse = removeBeginningWhiteSpaces(m_propertyToParse.remove(foundQuotedStringList));
tokenList.append(foundQuotedStringList);
}
else
if(temp.contains("/")!=0){ //treat the presence of line-height in font shorthand form
m_propertyToParse = removeBeginningWhiteSpaces(m_propertyToParse.remove(temp));
tokenList.append(temp.section("/",0,0));
tokenList.append("/"+temp.section("/",1,1));
}
else {
tokenList.append(temp);
int tempPos = m_propertyToParse.find(temp);
m_propertyToParse = removeBeginningWhiteSpaces(m_propertyToParse.remove(tempPos,temp.length()));
}
if( m_propertyToParse.isEmpty() ) stop = true;
}
return tokenList;
}
|