]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/qt_helpers.h
Disable literal cb if there is nothing to latexify.
[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 "ColorSet.h"
17 #include "Length.h"
18 #include "support/qstring_helpers.h"
19 #include "support/filetools.h"
20 #include "qt_i18n.h"
21
22 #include <QHeaderView>
23
24 class QComboBox;
25 class QLineEdit;
26 class QCheckBox;
27 class QString;
28 class QWidget;
29 template <class T> class QList;
30
31 namespace lyx {
32
33 namespace support { class FileName; }
34
35 class BufferParams;
36  
37 namespace frontend {
38
39 class LengthCombo;
40
41 /// method to get a Length from widgets (LengthCombo)
42 std::string widgetsToLength(QLineEdit const * input, LengthCombo const * combo);
43 /// method to get a Length from widgets (QComboBox)
44 Length widgetsToLength(QLineEdit const * input, QComboBox const * combo);
45
46 /// method to set widgets from a Length
47 //FIXME Remove default_unit argument for the first form. FIXME Change
48 // all the code to remove default_unit argument when equal to the
49 // default.
50 void lengthToWidgets(QLineEdit * input, LengthCombo * combo,
51                      Length const & len, 
52                      Length::UNIT default_unit = Length::defaultUnit());
53 /// method to set widgets from a string
54 void lengthToWidgets(QLineEdit * input, LengthCombo * combo,
55                      std::string const & len, 
56                      Length::UNIT default_unit = Length::defaultUnit());
57 /// method to set widgets from a docstring
58 void lengthToWidgets(QLineEdit * input, LengthCombo * combo,
59 docstring const & len, Length::UNIT default_unit);
60
61 /// method to get a double value from a localized widget (QLineEdit)
62 double widgetToDouble(QLineEdit const * input);
63 /// method to get a double value from a localized widget (QLineEdit)
64 std::string widgetToDoubleStr(QLineEdit const * input);
65 /// method to set a (localized) double value in a widget (QLineEdit)
66 void doubleToWidget(QLineEdit * input, double const & value,
67         char f = 'g', int prec = 6);
68 /// method to set a (localized) double value in a widget (QLineEdit)
69 void doubleToWidget(QLineEdit * input, std::string const & value,
70         char f = 'g', int prec = 6);
71 /**
72  * method to format localized floating point numbers without
73  * ever using scientific notation
74  */
75 QString formatLocFPNumber(double d);
76
77 /// Method to sort colors by GUI name in combo widgets
78 bool ColorSorter(ColorCode lhs, ColorCode rhs);
79
80 /// colors a widget red if invalid
81 void setValid(QWidget * widget, bool valid);
82
83 /// Qt5 changed setSectionMode to setSectionResizeMode
84 /// These wrappers work for Qt4 and Qt5
85 void setSectionResizeMode(QHeaderView * view,
86     int logicalIndex, QHeaderView::ResizeMode mode);
87 void setSectionResizeMode(QHeaderView * view,
88         QHeaderView::ResizeMode mode);
89
90 } // namespace frontend
91
92
93 /**
94  * qt_ - i18nize string and convert to QString
95  *
96  * Use this in qt4/ instead of _()
97  */
98 QString const qt_(std::string const & str);
99 QString const qt_(QString const & qstr);
100
101
102 ///
103 support::FileName libFileSearch(QString const & dir, QString const & name,
104                                 QString const & ext = QString(),
105                                 support::search_mode mode = support::must_exist);
106
107 ///
108 support::FileName imageLibFileSearch(QString & dir, QString const & name,
109                                 QString const & ext = QString(),
110                                 support::search_mode mode = support::must_exist);
111
112 /** Wrappers around browseFile which try to provide a filename
113         relative to relpath.
114
115 \param title: title for dialog
116         
117 \param filters: *.ps, etc
118
119 \param save: whether to save dialog info (current path, etc) for next use.
120
121 The \param labelN and \param dirN arguments provide for extra buttons 
122 in the dialog (e.g., "Templates" and a path to that directory).
123
124 The difference between the functions concerns when we think we have a 
125 relative path. 
126
127 In \c browseRelToParent, we return a relative path only if it IS NOT of 
128         the form "../../foo.txt".
129
130 In \c browseRelToSub, we return a relative path only if it IS of the
131  form "../../foo.txt".
132 */
133 QString browseRelToParent(QString const & filename,
134         QString const & relpath,
135         QString const & title,
136         QStringList const & filters,
137         bool save = false,
138         QString const & label1 = QString(),
139         QString const & dir1 = QString(),
140         QString const & label2 = QString(),
141         QString const & dir2 = QString());
142
143 QString browseRelToSub(QString const & filename,
144         QString const & relpath,
145         QString const & title,
146         QStringList const & filters,
147         bool save = false,
148         QString const & label1 = QString(),
149         QString const & dir1 = QString(),
150         QString const & label2 = QString(),
151         QString const & dir2 = QString());
152
153 /** Build filelists of all availabe bst/cls/sty-files. Done through
154 *  kpsewhich and an external script, saved in *Files.lst.
155 *  \param arg: cls, sty, bst, or bib, as required by TeXFiles.py.
156 *         Can be a list of these, too.
157 */
158 void rescanTexStyles(std::string const & arg = empty_string());
159
160 /** Fill \c contents from one of the three texfiles.
161  *  Each entry in the file list is returned as a name_with_path
162  */
163 QStringList texFileList(QString const & filename);
164
165 /// Convert internal line endings to line endings as expected by the OS
166 QString const externalLineEnding(docstring const & str);
167
168 /// Convert line endings in any formnat to internal line endings
169 docstring const internalLineEnding(QString const & str);
170
171 // wrapper around the docstring versions
172 QString internalPath(QString const &);
173 QString onlyFileName(QString const & str);
174 QString onlyPath(QString const & str);
175 QStringList fileFilters(QString const & description);
176
177 QString changeExtension(QString const & oldname, QString const & extension);
178
179 /// Remove the extension from \p name
180 QString removeExtension(QString const & name);
181
182 /** Add the extension \p ext to \p name.
183  Use this instead of changeExtension if you know that \p name is without
184  extension, because changeExtension would wrongly interpret \p name if it
185  contains a dot.
186  */
187 QString addExtension(QString const & name, QString const & extension);
188
189 /// Return the extension of the file (not including the .)
190 QString getExtension(QString const & name);
191 QString makeAbsPath(QString const & relpath, QString const & base);
192 QString changeExtension(QString const & oldname, QString const & ext);
193
194 /// Format \param text for display as a ToolTip, breaking at lines of \param
195 /// width ems. Note: this function is expensive. Better call it in a delayed
196 /// manner, i.e. not to fill in a model (see for instance the function
197 /// ToolTipFormatter::eventFilter).
198 ///
199 /// When is it called automatically? Whenever the tooltip is not already rich
200 /// text beginning with <html>, and is defined by the following functions:
201 ///  - QWidget::setToolTip(),
202 ///  - QAbstractItemModel::setData(..., Qt::ToolTipRole),
203 ///  - Inset::toolTip()
204 ///
205 /// In other words, tooltips can use Qt html, and the tooltip will still be
206 /// correctly broken. Moreover, it is possible to specify an entirely custom
207 /// tooltip (not subject to automatic formatting) by giving it in its entirety,
208 /// i.e. starting with <html>.
209 QString formatToolTip(QString text, int width = 30);
210
211
212 #if QT_VERSION < 0x050300
213 // Very partial implementation of QSignalBlocker for archaic qt versions.
214 class QSignalBlocker {
215 public:
216         explicit QSignalBlocker(QObject * o)
217                 : obj(o), init_state(obj && obj->blockSignals(true)) {}
218
219         ~QSignalBlocker() {
220                 if (obj)
221                         obj->blockSignals(init_state);
222         }
223 private:
224         QObject * obj;
225         bool init_state;
226 };
227 #endif
228
229
230 // Check if qstr is understood as rich text (Qt HTML) and if so, produce a
231 // rendering in plain text.
232 QString qtHtmlToPlainText(QString const & qstr);
233
234
235 } // namespace lyx
236
237 #endif // QTHELPERS_H