]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/Validator.h
Complete the removal of the embedding stuff. Maybe. It's hard to be sure we got every...
[lyx.git] / src / frontends / qt4 / Validator.h
1 // -*- C++ -*-
2 /**
3  * \file Validator.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Angus Leeming
8  * \author Richard Heck
9  *
10  * Full author contact details are available in file CREDITS.
11  *
12  * Validators are used to decide upon the legality of some input action.
13  * For example, a "line edit" widget might be used to input a "glue length".
14  * The correct syntax for such a length is "2em + 0.5em". The LengthValidator
15  * below will report whether the input text conforms to this syntax.
16  *
17  * This information is used in LyX primarily to give the user some
18  * feedback on the validity of the input data using the "checked_widget"
19  * concept. For example, if the data is invalid then the label of
20  * a "line edit" widget is changed in colour and the dialog's "Ok"
21  * and "Apply" buttons are disabled. See checked_widgets.[Ch] for
22  * further details.
23  */
24
25 #ifndef VALIDATOR_H
26 #define VALIDATOR_H
27
28 #include "Length.h"
29 #include "Dialog.h" // KernelDocType
30
31 #include <QValidator>
32
33 class QWidget;
34 class QLineEdit;
35
36
37 namespace lyx {
38
39 class LyXRC;
40
41 namespace frontend {
42
43 /** A class to ascertain whether the data passed to the @c validate()
44  *  member function can be interpretted as a GlueLength.
45  */
46 class LengthValidator : public QValidator
47 {
48         Q_OBJECT
49 public:
50         /// Define a validator for widget @c parent.
51         LengthValidator(QWidget * parent);
52
53         /** @returns QValidator::Acceptable if @c data is a GlueLength.
54          *  If not, returns QValidator::Intermediate.
55          */
56         QValidator::State validate(QString & data, int &) const;
57
58         /** @name Bottom
59          *  Set and retrieve the minimum allowed Length value.
60          */
61         //@{
62         void setBottom(Length const &);
63         void setBottom(GlueLength const &);
64         Length bottom() const { return b_; }
65         //@}
66
67 private:
68         Length b_;
69         GlueLength g_;
70         bool no_bottom_;
71         bool glue_length_;
72 };
73
74
75 /// @returns a new @c LengthValidator that does not accept negative lengths.
76 LengthValidator * unsignedLengthValidator(QLineEdit *);
77
78 //FIXME This should be generalized to take "text" as part of the
79 //constructor and so to set what text we check for, rather than
80 //hard-coding it as "auto". But see qt_helpers.h for reasons this
81 //is not so trivial and an idea about how to do it. (RGH)
82 /** A class to ascertain whether the data passed to the @c validate()
83  *  member function can be interpretted as a GlueLength or is "auto".
84  */
85 class LengthAutoValidator : public LengthValidator
86 {
87         Q_OBJECT
88 public:
89         /// Define a validator for widget @c parent.
90         LengthAutoValidator(QWidget * parent);
91
92         /** @returns QValidator::Acceptable if @c data is a GlueLength
93                 * or is "auto". If not, returns QValidator::Intermediate.
94          */
95         QValidator::State validate(QString & data, int &) const;
96 };
97
98 /// @returns a new @c LengthAutoValidator that does not accept negative lengths.
99 LengthAutoValidator * unsignedLengthAutoValidator(QLineEdit *);
100
101
102 //FIXME As above, this should really take a text argument.
103 /**
104  * A class to determine whether the passed is a double
105  * or is "auto".
106  *
107  */
108 class DoubleAutoValidator : public QDoubleValidator
109 {
110         Q_OBJECT
111 public:
112         DoubleAutoValidator(QWidget * parent);
113         DoubleAutoValidator(double bottom, double top, int decimals,
114                 QObject * parent);
115         QValidator::State validate(QString & input, int & pos) const;
116 };
117
118
119 /** A class to ascertain whether the data passed to the @c validate()
120  *  member function is a valid file path.
121  *  The test is active only when the path is to be stored in a LaTeX
122  *  file, LaTeX being quite picky about legal names.
123  */
124 class PathValidator : public QValidator
125 {
126         Q_OBJECT
127 public:
128         /** Define a validator for widget @c parent.
129          *  If @c acceptable_if_empty is @c true then an empty path
130          *  is regarded as acceptable.
131          */
132         PathValidator(bool acceptable_if_empty, QWidget * parent);
133
134         /** @returns QValidator::Acceptable if @c data is a valid path.
135          *  If not, returns QValidator::Intermediate.
136          */
137         QValidator::State validate(QString &, int &) const;
138
139         /** Define what checks that @c validate() will perform.
140          *  @param doc_type checks are activated only for @c LATEX docs.
141          *  @param lyxrc contains a @c tex_allows_spaces member that
142          *  is used to define what is legal.
143          */
144         void setChecker(KernelDocType const & doc_type, LyXRC const & lyxrc);
145
146 private:
147         bool acceptable_if_empty_;
148         bool latex_doc_;
149         bool tex_allows_spaces_;
150 };
151
152
153 /// @returns the PathValidator attached to the widget, or 0.
154 PathValidator * getPathValidator(QLineEdit *);
155
156 } // namespace frontend
157 } // namespace lyx
158
159 # endif // NOT VALIDATOR_H