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
|
/***************************************************************************
kxespecprocinstrdialog.cpp - description
--------------------------
begin : Ne ?ec 6 2003
copyright : (C) 2003 by The KXMLEditor Team
email : lvanek@users.sourceforge.net
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#include "kxespecprocinstrdialog.h"
#include "kxmleditorfactory.h"
#include "kxeconfiguration.h"
#include "kxenewfilesettings.h"
#include <qstring.h>
#include <qcombobox.h>
#include <qlineedit.h>
#include <qpushbutton.h>
#include <qregexp.h>
#include <qframe.h>
#include <qcheckbox.h>
#include <kdebug.h>
KXESpecProcInstrDialog::KXESpecProcInstrDialog(QWidget *parent, const char *name )
: KXESpecProcInstrDialogBase(parent,name)
{
m_pComboBoxEncoding->insertStringList( KXMLEditorFactory::configuration()->newfile()->encodings() );
m_pLineEditVersion->setText("1.0");
m_pHLine->hide();
m_pDontShowAgain->hide();
// signals and slots connections
connect( m_pBtnOK, SIGNAL( clicked() ), this, SLOT( slotAccept() ) );
}
KXESpecProcInstrDialog::~KXESpecProcInstrDialog()
{
}
void KXESpecProcInstrDialog::fillDialog( const QString strData )
{
QString strVersion;
QString strEncoding;
int iStart, iEnd;
// find version info
if((iStart = strData.find("version", 0)) >= 0)
{
// info about encoding found;
iStart += 7; // skip version
// search " or ' after encoding
if((iStart = strData.find(QRegExp("[\"']"), iStart)) > 0)
{
QChar ch = strData[iStart];
iStart++; // skip ch
if((iEnd = strData.find(ch, iStart)) > 0)
strVersion = strData.mid(iStart, iEnd - iStart);
}
}
else
strVersion = "1.0";
// find encoding info
if((iStart = strData.find("encoding", 0)) >= 0)
{
// info about encoding found;
iStart += 8; // skip encoding
// search " or ' after encoding
if((iStart = strData.find(QRegExp("[\"']"), iStart)) > 0)
{
QChar ch = strData[iStart];
iStart++; // skip ch
if((iEnd = strData.find(ch, iStart)) > 0)
strEncoding = strData.mid(iStart, iEnd - iStart);
}
}
else
strEncoding = "UTF-8";
m_pLineEditVersion->setText(strVersion);
m_pComboBoxEncoding->setCurrentText(strEncoding);
}
int KXESpecProcInstrDialog::exec()
{
m_pBtnOK->setDefault(true);
return KXESpecProcInstrDialogBase::exec();
}
/** Called when user press OK button */
void KXESpecProcInstrDialog::slotAccept()
{
accept();
}
/*!
Initializes content of dialog controls with specified values.
@param version XML file version
@param encoding encoding type for the XML file
*/
void KXESpecProcInstrDialog::fillDialog(const QString& version, const QString& encoding)
{
m_pLineEditVersion->setText(version);
m_pComboBoxEncoding->setCurrentText(encoding);
}
/*!
Returns content of the dialog as an string of format: '"version = '...' encoding = '...' ".
*/
QString KXESpecProcInstrDialog::getData()
{
return QString("version = '")+m_pLineEditVersion->text()+
"' encoding = '"+m_pComboBoxEncoding->currentText()+"' ";
}
#include "kxespecprocinstrdialog.moc"
|