]> git.lyx.org Git - features.git/blob - src/frontends/qt/GuiDocument.h
Fix UI quirk in IncludeOnly settings
[features.git] / src / frontends / qt / GuiDocument.h
1 // -*- C++ -*-
2 /**
3  * \file GuiDocument.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Edwin Leuven
8  * \author Richard Heck (modules)
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef GUIDOCUMENT_H
14 #define GUIDOCUMENT_H
15
16 #include "BufferParams.h"
17 #include "BulletsModule.h"
18 #include "GuiDialog.h"
19 #include "GuiIdListModel.h"
20
21 #include "ui_BiblioUi.h"
22 #include "ui_ColorUi.h"
23 #include "ui_ChangeTrackingUi.h"
24 #include "ui_DocumentUi.h"
25 #include "ui_FontUi.h"
26 #include "ui_LanguageUi.h"
27 #include "ui_LaTeXUi.h"
28 #include "ui_ListingsSettingsUi.h"
29 #include "ui_LocalLayoutUi.h"
30 #include "ui_MarginsUi.h"
31 #include "ui_MasterChildUi.h"
32 #include "ui_MathsUi.h"
33 #include "ui_ModulesUi.h"
34 #include "ui_NumberingUi.h"
35 #include "ui_OutputUi.h"
36 #include "ui_PageLayoutUi.h"
37 #include "ui_PDFSupportUi.h"
38 #include "ui_PreambleUi.h"
39 #include "ui_TextLayoutUi.h"
40
41 #include <QStandardItemModel>
42
43 namespace lyx {
44
45 class BufferParams;
46 class LayoutModuleList;
47 class LyXModule;
48 class TextClass;
49
50 namespace support {
51         class TempFile;
52 }
53
54 namespace frontend {
55
56 class FloatPlacement;
57 class GuiBranches;
58 class GuiIndices;
59 class ModuleSelectionManager;
60 class PreambleModule;
61 class LocalLayout;
62 class FontModule;
63
64 ///
65 typedef Buffer const * BufferId;
66
67 template<class UI>
68 class UiWidget : public QWidget, public UI
69 {
70 public:
71         UiWidget(QWidget * parent) : QWidget(parent) { UI::setupUi(this); }
72 };
73
74
75 class GuiDocument : public GuiDialog, public Ui::DocumentUi
76 {
77         Q_OBJECT
78 public:
79         GuiDocument(GuiView & lv);
80
81         void paramsToDialog();
82         void updateFontsize(std::string const &, std::string const &);
83         void updateFontlist();
84         void updateDefaultFormat();
85         void updateCiteStyles(std::vector<std::string> const &,
86                               CiteEngineType const & sel = ENGINE_TYPE_AUTHORYEAR);
87         void updateEngineType(std::string const &, CiteEngineType const &);
88         void updatePagestyle(std::string const &, std::string const &);
89         bool isChildIncluded(std::string const &);
90
91         ///
92         BufferParams const & params() const { return bp_; }
93
94 public Q_SLOTS:
95         void onBufferViewChanged();//override
96         // OK button clicked
97         void slotOK();
98         // Apply button clicked
99         void slotApply();
100         void slotButtonBox(QAbstractButton *);
101
102 private Q_SLOTS:
103         void updateNumbering();
104         void change_adaptor();
105         void shellescapeChanged();
106         void includeonlyClicked(QTreeWidgetItem * item, int);
107         void setListingsMessage();
108         void listingsPackageChanged(int);
109         void saveDefaultClicked();
110         void useDefaultsClicked();
111         void setLSpacing(int);
112         void setMargins();
113         void papersizeChanged(int);
114         void setColSep();
115         void setCustomMargins(bool);
116         void fontencChanged(int);
117         void romanChanged(int);
118         void sansChanged(int);
119         void ttChanged(int);
120         void fontOsfToggled(bool state);
121         void fontScToggled(bool state);
122         void setIndent(int);
123         void enableIndent(bool);
124         void setSkip(int);
125         void enableSkip(bool);
126         void allowMathIndent();
127         void enableMathIndent(int);
128         void browseLayout();
129         void browseMaster();
130         void classChanged();
131         void classChanged_adaptor();
132         void languagePackageChanged(int);
133         void biblioChanged();
134         void rescanBibFiles();
135         void resetDefaultBibfile(std::string const & which = std::string());
136         void resetDefaultBbxBibfile();
137         void resetDefaultCbxBibfile();
138         void citeEngineChanged(int);
139         void citeStyleChanged();
140         void bibtexChanged(int);
141         void updateResetDefaultBiblio();
142         void matchBiblatexStyles();
143         void updateEngineDependends();
144         void updateModuleInfo();
145         void modulesChanged();
146         void changeBackgroundColor();
147         void deleteBackgroundColor();
148         void changeFontColor();
149         void deleteFontColor();
150         void changeNoteFontColor();
151         void deleteNoteFontColor();
152         void changeBoxBackgroundColor();
153         void deleteBoxBackgroundColor();
154         void languageChanged(int);
155         void osFontsChanged(bool);
156         void encodingSwitched(int);
157         void inputencodingToDialog();
158         void mathFontChanged(int);
159         void branchesRename(docstring const &, docstring const &);
160         void allPackagesAuto();
161         void allPackagesAlways();
162         void allPackagesNot();
163         void moduleFilterPressed();
164         void moduleFilterChanged(const QString & text);
165         void resetModuleFilter();
166         void linenoToggled(bool);
167         void outputChangesToggled(bool);
168         void setOutputSync(bool);
169 private:
170         /// validate listings parameters and return an error message, if any
171         QString validateListingsParameters();
172
173         UiWidget<Ui::TextLayoutUi> *textLayoutModule;
174         UiWidget<Ui::MasterChildUi> *masterChildModule;
175         FontModule *fontModule;
176         UiWidget<Ui::PageLayoutUi> *pageLayoutModule;
177         UiWidget<Ui::MarginsUi> *marginsModule;
178         UiWidget<Ui::LanguageUi> *langModule;
179         UiWidget<Ui::ColorUi> *colorModule;
180         UiWidget<Ui::ChangeTrackingUi> *changesModule;
181         UiWidget<Ui::NumberingUi> *numberingModule;
182         UiWidget<Ui::BiblioUi> *biblioModule;
183         UiWidget<Ui::MathsUi> *mathsModule;
184         UiWidget<Ui::LaTeXUi> *latexModule;
185         UiWidget<Ui::PDFSupportUi> *pdfSupportModule;
186         UiWidget<Ui::ModulesUi> *modulesModule;
187         UiWidget<Ui::OutputUi> *outputModule;
188         UiWidget<Ui::ListingsSettingsUi> *listingsModule;
189         PreambleModule * preambleModule;
190         LocalLayout * localLayout;
191
192         GuiBranches * branchesModule;
193         GuiIndices * indicesModule;
194
195         BulletsModule * bulletsModule;
196         FloatPlacement * floatModule;
197
198         ModuleSelectionManager * selectionManager;
199
200         /// Available modules
201         QStandardItemModel * availableModel() { return &modules_av_model_; }
202         /// Selected modules
203         GuiIdListModel * selectedModel() { return &modules_sel_model_; }
204
205         /// Apply changes
206         void applyView();
207         /// update
208         void updateContents();
209         ///
210         void updateAvailableModules();
211         ///
212         void updateSelectedModules();
213         ///
214         void updateIncludeonlyDisplay();
215         ///
216         void updateIncludeonlys();
217         ///
218         void updateDefaultBiblio(std::string const & style,
219                                  std::string const & which = std::string());
220         /// save as default template
221         void saveDocDefault();
222         /// reset to default params
223         void useClassDefaults();
224         ///
225         void setLayoutComboByIDString(std::string const & idString);
226         /// Update quotes styles combo, indicating the current language's default
227         void updateQuoteStyles(bool const set = false);
228         ///
229         void getTableStyles();
230
231         /// available modules
232         QStandardItemModel modules_av_model_;
233         /// selected modules
234         GuiIdListModel modules_sel_model_;
235
236         /// Module filter
237         FancyLineEdit * filter_;
238
239         /// return false if validate_listings_params returns error
240         bool isValid();
241
242         /// font family names for BufferParams::fonts_default_family
243         static char const * const fontfamilies[5];
244         /// GUI names corresponding fontfamilies
245         static char const * fontfamilies_gui[5];
246         ///
247         bool initialiseParams(std::string const & data);
248         ///
249         void clearParams();
250         ///
251         void dispatchParams();
252         ///
253         void modulesToParams(BufferParams &);
254         ///
255         bool isBufferDependent() const { return true; }
256         /// always true since we don't manipulate document contents
257         bool canApply() const { return true; }
258         ///
259         DocumentClass const & documentClass() const;
260         ///
261         BufferParams & params() { return bp_; }
262         ///
263         BufferId id() const;
264         ///
265         struct modInfoStruct {
266                 QString name;
267                 std::string id;
268                 QString description;
269                 QString category;
270                 bool local;
271                 bool missingreqs;
272         };
273         ///
274         static modInfoStruct modInfo(LyXModule const & mod);
275         /// List of available modules
276         std::list<modInfoStruct> const & getModuleInfo();
277         /// Modules in use in current buffer
278         std::list<modInfoStruct> const getSelectedModules();
279         ///
280         std::list<modInfoStruct> const getProvidedModules();
281         ///
282         std::list<modInfoStruct> const
283                         makeModuleInfo(LayoutModuleList const & mods);
284         ///
285         void setLanguage() const;
286         ///
287         void saveAsDefault() const;
288         /// does this font provide Old Style figures?
289         bool providesOSF(QString const & font) const;
290         /// does this font provide true Small Caps?
291         bool providesSC(QString const & font) const;
292         /** does this font provide OSF and Small Caps only via
293          * a single, undifferentiated expert option?
294          */
295         bool hasMonolithicExpertSet(QString const & font) const;
296         /// does this font provide size adjustment?
297         bool providesScale(QString const & font) const;
298         /// does this font provide extra options?
299         bool providesExtraOpts(QString const & font) const;
300         /// does this font provide an alternative without math?
301         bool providesNoMath(QString const & font) const;
302         ///
303         void executeBranchRenaming() const;
304         ///
305         void setCustomPapersize(bool custom);
306 private:
307         ///
308         void loadModuleInfo();
309         ///
310         void updateUnknownBranches();
311         ///
312         void updateTexFonts();
313         ///
314         void updateMathFonts(QString const & rm);
315         ///
316         void updateExtraOpts();
317         ///
318         void updateFontOptions();
319         ///
320         bool ot1() const;
321         ///
322         bool completeFontset() const;
323         ///
324         bool noMathFont() const;
325         ///
326         void allPackages(int);
327         ///
328         bool isBiblatex() const;
329         ///
330         void checkPossibleCiteEngines();
331         ///
332         void filterModules(QString const & string);
333         ///
334         BufferParams bp_;
335         /// List of names of available modules
336         std::list<modInfoStruct> moduleNames_;
337         ///
338         std::map<docstring, docstring> changedBranches_;
339         ///
340         std::list<std::string> includeonlys_;
341         ///
342         bool biblioChanged_;
343         /// Track if a non-module document param changed
344         bool nonModuleChanged_;
345         /// Track if used modules changed
346         bool modulesChanged_;
347         /// Track if the shellescape param changed
348         bool shellescapeChanged_;
349 };
350
351
352 class PreambleModule : public UiWidget<Ui::PreambleUi>
353 {
354         Q_OBJECT
355 public:
356         PreambleModule(QWidget * parent);
357         void update(BufferParams const & params, BufferId id);
358         void apply(BufferParams & params);
359         bool editing() const { return (bool)tempfile_; }
360
361 Q_SIGNALS:
362         /// signal that something's changed in the Widget.
363         void changed();
364
365 private:
366         void closeEvent(QCloseEvent *);
367         void on_preambleTE_textChanged() { changed(); }
368
369         typedef std::map<BufferId, std::pair<int,int> > Coords;
370         Coords preamble_coords_;
371         BufferId current_id_;
372         unique_ptr<support::TempFile> tempfile_;
373
374 private Q_SLOTS:
375         ///
376         void checkFindButton();
377         void findText();
378         void editExternal();
379 };
380
381
382 class LocalLayout : public UiWidget<Ui::LocalLayoutUi>
383 {
384         Q_OBJECT
385 public:
386         LocalLayout(QWidget * parent);
387         void update(BufferParams const & params, BufferId id);
388         void apply(BufferParams & params);
389         bool isValid() const { return validated_; }
390         bool editing() const { return (bool)tempfile_; }
391
392 Q_SIGNALS:
393         /// signal that something's changed in the Widget.
394         void changed();
395
396 private:
397         void validate();
398         void convert();
399         void hideConvert();
400 private Q_SLOTS:
401         void textChanged();
402         void validatePressed();
403         void convertPressed();
404         void editExternal();
405
406 private:
407         BufferId current_id_;
408         bool validated_;
409         unique_ptr<support::TempFile> tempfile_;
410 };
411
412
413 class FontModule : public UiWidget<Ui::FontUi>
414 {
415         Q_OBJECT
416 public:
417         FontModule(QWidget * parent) : UiWidget<Ui::FontUi>(parent),
418            font_sf_scale(100), font_tt_scale(100) {}
419         /// The roman font currently not selected by osFontsCB->isChecked()
420         QString font_roman;
421         /// The sans font currently not selected by osFontsCB->isChecked()
422         QString font_sans;
423         /// The typewriter font currently not selected by osFontsCB->isChecked()
424         QString font_typewriter;
425         /// The math font currently not selected by osFontsCB->isChecked()
426         QString font_math;
427         /// The sans font scale currently not selected by osFontsCB->isChecked()
428         int font_sf_scale;
429         /// The typewriter font scale currently not selected by osFontsCB->isChecked()
430         int font_tt_scale;
431 };
432
433
434 } // namespace frontend
435 } // namespace lyx
436
437 #endif // GUIDOCUMENT_H