]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/Validator.cpp
d27f6b301f5c4a5459196b71de1ef1a6e02dee31
[lyx.git] / src / frontends / qt4 / Validator.cpp
1 /**
2  * \file Validator.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Angus Leeming
7  * \author Richard Heck
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12
13 #include <config.h>
14
15 #include "Validator.h"
16 #include "qt_helpers.h"
17
18 #include "support/gettext.h"
19 #include "LyXRC.h"
20
21 #include "frontends/alert.h"
22
23 #include "support/docstring.h"
24 #include "support/lstrings.h"
25
26 #include <QLineEdit>
27 #include <QLocale>
28 #include <QWidget>
29
30 using namespace std;
31
32 namespace lyx {
33 namespace frontend {
34
35 LengthValidator::LengthValidator(QWidget * parent)
36         : QValidator(parent),
37           no_bottom_(true), glue_length_(false)
38 {}
39
40
41 QValidator::State LengthValidator::validate(QString & qtext, int &) const
42 {
43         bool ok;
44         double d = qtext.trimmed().toDouble(&ok);
45         if (qtext.isEmpty() || ok)
46                 return QValidator::Acceptable;
47
48         string const text = fromqstr(qtext);
49
50         if (glue_length_) {
51                 GlueLength gl;
52                 return (isValidGlueLength(text, &gl)) ?
53                         QValidator::Acceptable : QValidator::Intermediate;
54         }
55
56         Length l;
57         bool const valid_length = isValidLength(text, &l);
58         if (!valid_length)
59                 return QValidator::Intermediate;
60
61         if (no_bottom_)
62                 return QValidator::Acceptable;
63
64         return b_.inPixels(100) <= l.inPixels(100) ?
65                 QValidator::Acceptable : QValidator::Intermediate;
66 }
67
68
69 void LengthValidator::setBottom(Length const & b)
70 {
71         b_ = b;
72         no_bottom_ = false;
73 }
74
75
76 void LengthValidator::setBottom(GlueLength const & g)
77 {
78         g_ = g;
79         no_bottom_ = false;
80         glue_length_ = true;
81 }
82
83
84 LengthValidator * unsignedLengthValidator(QLineEdit * ed)
85 {
86         LengthValidator * v = new LengthValidator(ed);
87         v->setBottom(Length());
88         return v;
89 }
90
91
92 LengthAutoValidator::LengthAutoValidator(QWidget * parent, QString const autotext)
93         : LengthValidator(parent),
94           autotext_(autotext)
95 {}
96
97
98 QValidator::State LengthAutoValidator::validate(QString & qtext, int & dummy) const
99 {
100         if (qtext == autotext_)
101                 return QValidator::Acceptable;
102         return LengthValidator::validate(qtext, dummy);
103 }
104
105
106 LengthAutoValidator * unsignedLengthAutoValidator(QLineEdit * ed, QString const autotext)
107 {
108         LengthAutoValidator * v = new LengthAutoValidator(ed, autotext);
109         v->setBottom(Length());
110         return v;
111 }
112
113
114 DoubleAutoValidator::DoubleAutoValidator(QWidget * parent, QString const autotext)
115         : QDoubleValidator(parent),
116           autotext_(autotext)
117 {}
118
119
120 DoubleAutoValidator::DoubleAutoValidator(double bottom,
121                 double top, int decimals, QObject * parent)
122         : QDoubleValidator(bottom, top, decimals, parent)
123 {}
124
125
126 QValidator::State DoubleAutoValidator::validate(QString & input, int & pos) const {
127         if (input == autotext_)
128                 return QValidator::Acceptable;
129         return QDoubleValidator::validate(input, pos);
130 }
131
132
133 PathValidator::PathValidator(bool acceptable_if_empty,
134                              QWidget * parent)
135         : QValidator(parent),
136           acceptable_if_empty_(acceptable_if_empty),
137           latex_doc_(false),
138           tex_allows_spaces_(false)
139 {}
140
141
142 static docstring const printable_list(docstring const & invalid_chars)
143 {
144         docstring s;
145         docstring::const_iterator const begin = invalid_chars.begin();
146         docstring::const_iterator const end = invalid_chars.end();
147         docstring::const_iterator it = begin;
148
149         for (; it != end; ++it) {
150                 if (it != begin)
151                         s += ", ";
152                 if (*it == ' ')
153                         s += _("space");
154                 else
155                         s += *it;
156         }
157
158         return s;
159 }
160
161
162 QValidator::State PathValidator::validate(QString & qtext, int &) const
163 {
164         if (!latex_doc_)
165                 return QValidator::Acceptable;
166
167         docstring const text = support::trim(qstring_to_ucs4(qtext));
168         if (text.empty())
169                 return acceptable_if_empty_ ?
170                         QValidator::Acceptable : QValidator::Intermediate;
171
172         docstring invalid_chars = from_ascii("#$%{}()[]\"^");
173         if (!tex_allows_spaces_)
174                 invalid_chars += ' ';
175
176         if (text.find_first_of(invalid_chars) != docstring::npos) {
177
178                 static int counter = 0;
179                 if (counter == 0) {
180                         Alert::error(_("Invalid filename"),
181                                      _("LyX does not provide LaTeX support for file names containing any of these characters:\n") +
182                                          printable_list(invalid_chars));
183                 }
184                 ++counter;
185                 return QValidator::Intermediate;
186         }
187
188         return QValidator::Acceptable;
189 }
190
191
192 void PathValidator::setChecker(KernelDocType const & type, LyXRC const & lyxrc)
193 {
194         latex_doc_ = type == LATEX;
195         tex_allows_spaces_ = lyxrc.tex_allows_spaces;
196 }
197
198
199 PathValidator * getPathValidator(QLineEdit * ed)
200 {
201         if (!ed)
202                 return 0;
203         QValidator * validator = const_cast<QValidator *>(ed->validator());
204         if (!validator)
205                 return 0;
206         return dynamic_cast<PathValidator *>(validator);
207 }
208
209 } // namespace frontend
210 } // namespace lyx
211
212 #include "moc_Validator.cpp"