]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/qt_helpers.h
move LyXerr QString specialisation to support/qstring_helpers
[lyx.git] / src / frontends / qt4 / qt_helpers.h
1 // -*- C++ -*-
2 /**
3  * \file qt_helpers.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Dekel Tsur
8  * \author Richard Heck
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef QTHELPERS_H
14 #define QTHELPERS_H
15
16 #include "Length.h"
17 #include "support/qstring_helpers.h"
18 #include "qt_i18n.h"
19
20 #include <QString>
21
22 class QComboBox;
23 class QLineEdit;
24 class QCheckBox;
25 class QString;
26 class QWidget;
27 template <class T> class QList;
28
29 class LengthCombo;
30
31 namespace lyx {
32
33 namespace support { class FileName; }
34
35 class BufferParams;
36
37 namespace frontend {
38
39 /// method to get a Length from widgets (LengthCombo)
40 std::string widgetsToLength(QLineEdit const * input, LengthCombo const * combo);
41 /// method to get a Length from widgets (QComboBox)
42 Length widgetsToLength(QLineEdit const * input, QComboBox const * combo);
43
44 //FIXME It would be nice if defaultUnit were a default argument
45 /// method to set widgets from a Length
46 void lengthToWidgets(QLineEdit * input, LengthCombo * combo,
47 Length const & len, Length::UNIT default_unit);
48 /// method to set widgets from a string
49 void lengthToWidgets(QLineEdit * input, LengthCombo * combo,
50 std::string const & len, Length::UNIT default_unit);
51 /// method to set widgets from a Length with optional "auto" if zero
52 void lengthAutoToWidgets(QLineEdit * input, LengthCombo * combo,
53 Length const & len, Length::UNIT defaultUnit);
54
55 /// colors a widget red if invalid
56 void setValid(QWidget * widget, bool valid);
57
58 } // namespace frontend
59
60
61 /**
62  * qt_ - i18nize string and convert to QString
63  *
64  * Use this in qt4/ instead of _()
65  */
66 QString const qt_(std::string const & str);
67
68 ///
69 support::FileName libFileSearch(QString const & dir, QString const & name,
70                                 QString const & ext = QString());
71
72 /** Wrapper around browseFile which tries to provide a filename
73         relative to relpath.  If the relative path is of the form "foo.txt"
74         or "bar/foo.txt", then it is returned as relative. OTOH, if it is
75         of the form "../baz/foo.txt", an absolute path is returned. This is
76         intended to be useful for insets which encapsulate files/
77 */
78 QString browseRelFile(QString const & filename,
79         QString const & refpath,
80         QString const & title,
81         QStringList const & filters,
82         bool save = false,
83         QString const & label1 = QString(),
84         QString const & dir1 = QString(),
85         QString const & label2 = QString(),
86         QString const & dir2 = QString());
87
88
89 /** Build filelists of all availabe bst/cls/sty-files. Done through
90 *  kpsewhich and an external script, saved in *Files.lst.
91 */
92 void rescanTexStyles();
93
94 /** Fill \c contents from one of the three texfiles.
95  *  Each entry in the file list is returned as a name_with_path
96  */
97 QStringList texFileList(QString const & filename);
98
99 // wrapper around the docstring versions
100 QString internalPath(QString const &);
101 QString onlyFilename(QString const & str);
102 QString onlyPath(QString const & str);
103 QStringList fileFilters(QString const & description);
104
105 QString changeExtension(QString const & oldname, QString const & extension);
106
107 /// Remove the extension from \p name
108 QString removeExtension(QString const & name);
109
110 /** Add the extension \p ext to \p name.
111  Use this instead of changeExtension if you know that \p name is without
112  extension, because changeExtension would wrongly interpret \p name if it
113  contains a dot.
114  */
115 QString addExtension(QString const & name, QString const & extension);
116
117 /// Return the extension of the file (not including the .)
118 QString getExtension(QString const & name);
119 QString makeAbsPath(QString const & relpath, QString const & base);
120 QString changeExtension(QString const & oldname, QString const & ext);
121
122 /// \return the display string associated with given type and buffer
123 /// parameter.
124 QString guiName(std::string const & type, BufferParams const & bp);
125
126 } // namespace lyx
127
128 #endif // QTHELPERS_H