From d93679c1db2692a85637f2db08b605e16ab29c8b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Wed, 14 Nov 2007 00:21:31 +0000 Subject: [PATCH] cosmetics git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21596 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/TocModel.cpp | 17 ++++--------- src/frontends/qt4/TocModel.h | 8 +++---- src/frontends/qt4/Validator.cpp | 12 +++++----- src/frontends/qt4/Validator.h | 42 ++++++++++++++------------------- 4 files changed, 32 insertions(+), 47 deletions(-) diff --git a/src/frontends/qt4/TocModel.cpp b/src/frontends/qt4/TocModel.cpp index 360d705857..d9adf4dcee 100644 --- a/src/frontends/qt4/TocModel.cpp +++ b/src/frontends/qt4/TocModel.cpp @@ -1,5 +1,5 @@ /** - * \file GuiTocDialog.C + * \file TocModel.cpp * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * @@ -17,16 +17,8 @@ #include -#include -#include -#include - using std::endl; -using std::pair; using std::map; -using std::vector; -using std::string; -using std::make_pair; using std::max; using std::min; @@ -126,9 +118,8 @@ void TocModel::populate(Toc const & toc) } -void TocModel::populate(TocIterator & iter, - TocIterator const & end, - QModelIndex const & parent) +void TocModel::populate(TocIterator & iter, TocIterator const & end, + QModelIndex const & parent) { int curdepth = iter->depth() + 1; @@ -166,7 +157,7 @@ void TocModel::populate(TocIterator & iter, } -int TocModel::modelDepth() +int TocModel::modelDepth() const { return maxdepth_ - mindepth_; } diff --git a/src/frontends/qt4/TocModel.h b/src/frontends/qt4/TocModel.h index 55915c4bde..1c56ed74af 100644 --- a/src/frontends/qt4/TocModel.h +++ b/src/frontends/qt4/TocModel.h @@ -23,7 +23,8 @@ namespace lyx { namespace frontend { -class TocModel: public QStandardItemModel { +class TocModel : public QStandardItemModel +{ Q_OBJECT public: @@ -44,12 +45,11 @@ public: /// QModelIndex const modelIndex(TocIterator const & it) const; /// - int modelDepth(); + int modelDepth() const; private: /// - void populate(TocIterator & it, - TocIterator const & end, + void populate(TocIterator & it, TocIterator const & end, QModelIndex const & parent); /// typedef std::map TocMap; diff --git a/src/frontends/qt4/Validator.cpp b/src/frontends/qt4/Validator.cpp index e5878b1b63..ccc23d3ba9 100644 --- a/src/frontends/qt4/Validator.cpp +++ b/src/frontends/qt4/Validator.cpp @@ -26,11 +26,11 @@ #include #include -using lyx::support::isStrDbl; using std::string; namespace lyx { +namespace frontend { LengthValidator::LengthValidator(QWidget * parent) : QValidator(parent), @@ -41,7 +41,7 @@ LengthValidator::LengthValidator(QWidget * parent) QValidator::State LengthValidator::validate(QString & qtext, int &) const { string const text = fromqstr(qtext); - if (text.empty() || isStrDbl(text)) + if (text.empty() || support::isStrDbl(text)) return QValidator::Acceptable; if (glue_length_) { @@ -173,7 +173,7 @@ QValidator::State PathValidator::validate(QString & qtext, int &) const static int counter = 0; if (counter == 0) { - frontend::Alert::error(_("Invalid filename"), + Alert::error(_("Invalid filename"), _("LyX does not provide LaTeX support for file names containing any of these characters:\n") + printable_list(invalid_chars)); } @@ -185,10 +185,9 @@ QValidator::State PathValidator::validate(QString & qtext, int &) const } -void PathValidator::setChecker(frontend::KernelDocType const & type, - LyXRC const & lyxrc) +void PathValidator::setChecker(KernelDocType const & type, LyXRC const & lyxrc) { - latex_doc_ = type == frontend::LATEX; + latex_doc_ = type == LATEX; tex_allows_spaces_ = lyxrc.tex_allows_spaces; } @@ -203,6 +202,7 @@ PathValidator * getPathValidator(QLineEdit * ed) return dynamic_cast(validator); } +} // namespace frontend } // namespace lyx #include "Validator_moc.cpp" diff --git a/src/frontends/qt4/Validator.h b/src/frontends/qt4/Validator.h index f13f8d63c3..ee3ae34369 100644 --- a/src/frontends/qt4/Validator.h +++ b/src/frontends/qt4/Validator.h @@ -26,7 +26,7 @@ #define VALIDATOR_H #include "Length.h" -#include "Dialog.h" +#include "Dialog.h" // KernelDocType #include @@ -36,6 +36,10 @@ class QLineEdit; namespace lyx { +class LyXRC; + +namespace frontend { + /** A class to ascertain whether the data passed to the @c validate() * member function can be interpretted as a GlueLength. */ @@ -61,11 +65,6 @@ public: //@} private: -#if defined(Q_DISABLE_COPY) - LengthValidator( const LengthValidator & ); - LengthValidator& operator=( const LengthValidator & ); -#endif - Length b_; GlueLength g_; bool no_bottom_; @@ -86,36 +85,36 @@ LengthValidator * unsignedLengthValidator(QLineEdit *); class LengthAutoValidator : public LengthValidator { Q_OBJECT - public: +public: /// Define a validator for widget @c parent. - LengthAutoValidator(QWidget * parent); + LengthAutoValidator(QWidget * parent); /** @returns QValidator::Acceptable if @c data is a GlueLength * or is "auto". If not, returns QValidator::Intermediate. */ - QValidator::State validate(QString & data, int &) const; + QValidator::State validate(QString & data, int &) const; }; /// @returns a new @c LengthAutoValidator that does not accept negative lengths. LengthAutoValidator * unsignedLengthAutoValidator(QLineEdit *); + //FIXME As above, this should really take a text argument. /** * A class to determine whether the passed is a double * or is "auto". * */ -class DoubleAutoValidator : public QDoubleValidator { +class DoubleAutoValidator : public QDoubleValidator +{ Q_OBJECT - public: - DoubleAutoValidator(QWidget * parent); - DoubleAutoValidator(double bottom, double top, int decimals, - QObject * parent); - QValidator::State validate(QString & input, int & pos) const; +public: + DoubleAutoValidator(QWidget * parent); + DoubleAutoValidator(double bottom, double top, int decimals, + QObject * parent); + QValidator::State validate(QString & input, int & pos) const; }; -// Forward declarations -class LyXRC; /** A class to ascertain whether the data passed to the @c validate() * member function is a valid file path. @@ -142,15 +141,9 @@ public: * @param lyxrc contains a @c tex_allows_spaces member that * is used to define what is legal. */ - void setChecker(frontend::KernelDocType const & doc_type, - LyXRC const & lyxrc); + void setChecker(KernelDocType const & doc_type, LyXRC const & lyxrc); private: -#if defined(Q_DISABLE_COPY) - PathValidator(const PathValidator &); - PathValidator & operator=(const PathValidator &); -#endif - bool acceptable_if_empty_; bool latex_doc_; bool tex_allows_spaces_; @@ -160,6 +153,7 @@ private: /// @returns the PathValidator attached to the widget, or 0. PathValidator * getPathValidator(QLineEdit *); +} // namespace frontend } // namespace lyx # endif // NOT VALIDATOR_H -- 2.39.5