]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/qt_helpers.cpp
Fix the tab ordering of GuiDocument components.
[lyx.git] / src / frontends / qt4 / qt_helpers.cpp
index df24f8870ebe80b7d583d894bbc59df8924dd06f..59a3d67fd2e224aa0fe25cf5f4f0d5bdc72fc7fd 100644 (file)
@@ -4,7 +4,7 @@
  * Licence details can be found in the file COPYING.
  *
  * \author Dekel Tsur
- * \author Jürgen Spitzmüller
+ * \author Jürgen Spitzmüller
  * \author Richard Heck
  *
  * Full author contact details are available in file CREDITS.
@@ -25,6 +25,7 @@
 #include "Length.h"
 #include "TextClass.h"
 
+#include "support/convert.h"
 #include "support/debug.h"
 #include "support/filetools.h"
 #include "support/foreach.h"
@@ -39,6 +40,7 @@
 #include <QCheckBox>
 #include <QComboBox>
 #include <QLineEdit>
+#include <QLocale>
 #include <QPalette>
 #include <QSet>
 
@@ -48,7 +50,7 @@
 
 // for FileFilter.
 // FIXME: Remove
-#include <boost/regex.hpp>
+#include "support/regex.h"
 #include <boost/tokenizer.hpp>
 
 
@@ -57,16 +59,20 @@ using namespace lyx::support;
 
 namespace lyx {
 
-LyXErr & operator<<(LyXErr & err, QString const & str)
+FileName libFileSearch(QString const & dir, QString const & name,
+                               QString const & ext)
 {
-       return err << fromqstr(str);
+       return support::libFileSearch(fromqstr(dir), fromqstr(name), fromqstr(ext));
 }
 
 
-FileName libFileSearch(QString const & dir, QString const & name,
+FileName imageLibFileSearch(QString & dir, QString const & name,
                                QString const & ext)
 {
-       return support::libFileSearch(fromqstr(dir), fromqstr(name), fromqstr(ext));
+       string tmp = fromqstr(dir);
+       FileName fn = support::imageLibFileSearch(tmp, fromqstr(name), fromqstr(ext));
+       dir = toqstr(tmp);
+       return fn;
 }
 
 
@@ -84,7 +90,7 @@ string widgetsToLength(QLineEdit const * input, LengthCombo const * combo)
 
        Length::UNIT const unit = combo->currentLengthItem();
 
-       return Length(length.toDouble(), unit).asString();
+       return Length(length.trimmed().toDouble(), unit).asString();
 }
 
 
@@ -98,9 +104,16 @@ Length widgetsToLength(QLineEdit const * input, QComboBox const * combo)
        if (isValidGlueLength(fromqstr(length)))
                return Length(fromqstr(length));
 
-       Length::UNIT const unit = unitFromString(fromqstr(combo->currentText()));
+       Length::UNIT unit = Length::UNIT_NONE;
+       QString const item = combo->currentText();
+       for (int i = 0; i < num_units; i++) {
+               if (qt_(lyx::unit_name_gui[i]) == item) {
+                       unit = unitFromString(unit_name[i]);
+                       break;
+               }
+       }
 
-       return Length(length.toDouble(), unit);
+       return Length(length.trimmed().toDouble(), unit);
 }
 
 
@@ -108,7 +121,9 @@ void lengthToWidgets(QLineEdit * input, LengthCombo * combo,
                      Length const & len, Length::UNIT /*defaultUnit*/)
 {
        combo->setCurrentItem(len.unit());
-       input->setText(QString::number(Length(len).value()));
+       QLocale loc;
+       loc.setNumberOptions(QLocale::OmitGroupSeparator);
+       input->setText(loc.toString(Length(len).value()));
 }
 
 
@@ -129,13 +144,44 @@ void lengthToWidgets(QLineEdit * input, LengthCombo * combo,
 }
 
 
-void lengthAutoToWidgets(QLineEdit * input, LengthCombo * combo,
-       Length const & len, Length::UNIT defaultUnit)
+void lengthToWidgets(QLineEdit * input, LengthCombo * combo,
+       docstring const & len, Length::UNIT defaultUnit)
+{
+       lengthToWidgets(input, combo, to_utf8(len), defaultUnit);
+}
+
+
+double widgetToDouble(QLineEdit const * input)
 {
-       if (len.value() == 0)
-               lengthToWidgets(input, combo, "auto", defaultUnit);
-       else
-               lengthToWidgets(input, combo, len, defaultUnit);
+       QString const text = input->text();
+       if (text.isEmpty())
+               return 0.0;
+       
+       return text.trimmed().toDouble();
+}
+
+
+string widgetToDoubleStr(QLineEdit const * input)
+{
+       QString const text = input->text();
+       if (text.isEmpty())
+               return string();
+       
+       return convert<string>(text.trimmed().toDouble());
+}
+
+
+void doubleToWidget(QLineEdit * input, double const & value, char f, int prec)
+{
+       QLocale loc;
+       loc.setNumberOptions(QLocale::OmitGroupSeparator);
+       input->setText(loc.toString(value, f, prec));
+}
+
+
+void doubleToWidget(QLineEdit * input, string const & value, char f, int prec)
+{
+       doubleToWidget(input, convert<double>(value), f, prec);
 }
 
 
@@ -177,7 +223,7 @@ void rescanTexStyles()
                return;
        // FIXME UNICODE
        frontend::Alert::error(_("Could not update TeX information"),
-               bformat(_("The script `%s' failed."), from_utf8(command.absFilename())));
+               bformat(_("The script `%1$s' failed."), from_utf8(command.absFileName())));
 }
 
 
@@ -207,6 +253,27 @@ QStringList texFileList(QString const & filename)
        return QList<QString>::fromSet(set);
 }
 
+QString const externalLineEnding(docstring const & str)
+{
+#ifdef Q_WS_MACX
+       // The MAC clipboard uses \r for lineendings, and we use \n
+       return toqstr(subst(str, '\n', '\r'));
+#elif defined(Q_WS_WIN)
+       // Windows clipboard uses \r\n for lineendings, and we use \n
+       return toqstr(subst(str, from_ascii("\n"), from_ascii("\r\n")));
+#else
+       return toqstr(str);
+#endif
+}
+
+
+docstring const internalLineEnding(QString const & str)
+{
+       docstring const s = subst(qstring_to_ucs4(str), 
+                                 from_ascii("\r\n"), from_ascii("\n"));
+       return subst(s, '\r', '\n');
+}
+
 
 QString internalPath(const QString & str)
 {
@@ -214,9 +281,9 @@ QString internalPath(const QString & str)
 }
 
 
-QString onlyFilename(const QString & str)
+QString onlyFileName(const QString & str)
 {
-       return toqstr(support::onlyFilename(fromqstr(str)));
+       return toqstr(support::onlyFileName(fromqstr(str)));
 }
 
 
@@ -261,7 +328,7 @@ QString getExtension(QString const & name)
 QString makeAbsPath(QString const & relpath, QString const & base)
 {
        return toqstr(support::makeAbsPath(fromqstr(relpath),
-               fromqstr(base)).absFilename());
+               fromqstr(base)).absFileName());
 }
 
 
@@ -280,18 +347,19 @@ QString makeAbsPath(QString const & relpath, QString const & base)
 static string const convert_brace_glob(string const & glob)
 {
        // Matches " *.{abc,def,ghi}", storing "*." as group 1 and
-       // "abc,def,ghi" as group 2.
-       static boost::regex const glob_re(" *([^ {]*)\\{([^ }]+)\\}");
-       // Matches "abc" and "abc,", storing "abc" as group 1.
-       static boost::regex const block_re("([^,}]+),?");
+       // "abc,def,ghi" as group 2, while allowing spaces in group 2.
+       static lyx::regex const glob_re(" *([^ {]*)\\{([^}]+)\\}");
+       // Matches "abc" and "abc,", storing "abc" as group 1,
+       // while ignoring surrounding spaces.
+       static lyx::regex const block_re(" *([^ ,}]+) *,? *");
 
        string pattern;
 
        string::const_iterator it = glob.begin();
        string::const_iterator const end = glob.end();
        while (true) {
-               boost::match_results<string::const_iterator> what;
-               if (!boost::regex_search(it, end, what, glob_re)) {
+               match_results<string::const_iterator> what;
+               if (!regex_search(it, end, what, glob_re)) {
                        // Ensure that no information is lost.
                        pattern += string(it, end);
                        break;
@@ -308,7 +376,7 @@ static string const convert_brace_glob(string const & glob)
                // Split the ','-separated chunks of tail so that
                // $head{$chunk1,$chunk2} becomes "$head$chunk1 $head$chunk2".
                string const fmt = " " + head + "$1";
-               pattern += boost::regex_merge(tail, block_re, fmt);
+               pattern += regex_replace(tail, block_re, fmt);
 
                // Increment the iterator to the end of the match.
                it += distance(it, what[0].second);
@@ -356,7 +424,7 @@ QString Filter::toString() const
 {
        QString s;
 
-       bool const has_description = desc_.empty();
+       bool const has_description = !desc_.empty();
 
        if (has_description) {
                s += toqstr(desc_);
@@ -417,14 +485,14 @@ FileFilterList::FileFilterList(docstring const & qt_style_filter)
 
        // Split data such as "TeX documents (*.tex);;LyX Documents (*.lyx)"
        // into individual filters.
-       static boost::regex const separator_re(";;");
+       static lyx::regex const separator_re(";;");
 
        string::const_iterator it = filter.begin();
        string::const_iterator const end = filter.end();
        while (true) {
-               boost::match_results<string::const_iterator> what;
+               match_results<string::const_iterator> what;
 
-               if (!boost::regex_search(it, end, what, separator_re)) {
+               if (!lyx::regex_search(it, end, what, separator_re)) {
                        parse_filter(string(it, end));
                        break;
                }
@@ -441,12 +509,12 @@ FileFilterList::FileFilterList(docstring const & qt_style_filter)
 
 void FileFilterList::parse_filter(string const & filter)
 {
-       // Matches "TeX documents (*.tex)",
-       // storing "TeX documents " as group 1 and "*.tex" as group 2.
-       static boost::regex const filter_re("([^(]*)\\(([^)]+)\\) *$");
+       // Matches "TeX documents (plain) (*.tex)",
+       // storing "TeX documents (plain) " as group 1 and "*.tex" as group 2.
+       static lyx::regex const filter_re("(.*)\\(([^()]+)\\) *$");
 
-       boost::match_results<string::const_iterator> what;
-       if (!boost::regex_search(filter, what, filter_re)) {
+       match_results<string::const_iterator> what;
+       if (!lyx::regex_search(filter, what, filter_re)) {
                // Just a glob, no description.
                filters_.push_back(Filter(docstring(), trim(filter)));
        } else {
@@ -467,11 +535,11 @@ QStringList fileFilters(QString const & desc)
        // we have: "*.{gif,png,jpg,bmp,pbm,ppm,tga,tif,xpm,xbm}"
        // but need:  "*.cpp;*.cc;*.C;*.cxx;*.c++"
        FileFilterList filters(qstring_to_ucs4(desc));
-       LYXERR0("DESC: " << desc);
+       //LYXERR0("DESC: " << desc);
        QStringList list;
        for (size_t i = 0; i != filters.filters_.size(); ++i) {
                QString f = filters.filters_[i].toString();
-               LYXERR0("FILTER: " << f);
+               //LYXERR0("FILTER: " << f);
                list.append(f);
        }
        return list;
@@ -493,7 +561,7 @@ QString guiName(string const & type, BufferParams const & bp)
        if (type == "listing")
                return qt_("List of Listings");
        if (type == "index")
-               return qt_("List of Indexes");
+               return qt_("List of Index Entries");
        if (type == "marginalnote")
                return qt_("List of Marginal notes");
        if (type == "note")
@@ -502,6 +570,10 @@ QString guiName(string const & type, BufferParams const & bp)
                return qt_("List of Citations");
        if (type == "label")
                return qt_("Labels and References");
+       if (type == "branch")
+               return qt_("List of Branches");
+       if (type == "change")
+               return qt_("List of Changes");
 
        FloatList const & floats = bp.documentClass().floats();
        if (floats.typeExist(type))