]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiDocument.h
GUI for categorized text classes
[lyx.git] / src / frontends / qt4 / 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 <QDialog>
17
18 #include "BufferParams.h"
19 #include "BulletsModule.h"
20 #include "CategorizedCombo.h"
21 #include "GuiDialog.h"
22 #include "GuiIdListModel.h"
23
24 #include "ui_BiblioUi.h"
25 #include "ui_ColorUi.h"
26 #include "ui_DocumentUi.h"
27 #include "ui_FontUi.h"
28 #include "ui_LanguageUi.h"
29 #include "ui_LaTeXUi.h"
30 #include "ui_ListingsSettingsUi.h"
31 #include "ui_LocalLayoutUi.h"
32 #include "ui_MarginsUi.h"
33 #include "ui_MasterChildUi.h"
34 #include "ui_MathsUi.h"
35 #include "ui_ModulesUi.h"
36 #include "ui_NumberingUi.h"
37 #include "ui_OutputUi.h"
38 #include "ui_PageLayoutUi.h"
39 #include "ui_PDFSupportUi.h"
40 #include "ui_PreambleUi.h"
41 #include "ui_TextLayoutUi.h"
42
43 namespace lyx {
44
45 class BufferParams;
46 class LayoutModuleList;
47 class TextClass;
48
49 namespace frontend {
50
51 class CategorizedCombo;
52 class FloatPlacement;
53 class GuiBranches;
54 class GuiIndices;
55 class ModuleSelectionManager;
56 class PreambleModule;
57 class LocalLayout;
58
59 ///
60 typedef void const * BufferId;
61
62 template<class UI>
63 class UiWidget : public QWidget, public UI
64 {
65 public:
66         UiWidget(QWidget * parent = 0) : QWidget(parent) { UI::setupUi(this); }
67 };
68
69
70 class GuiDocument : public GuiDialog, public Ui::DocumentUi
71 {
72         Q_OBJECT
73 public:
74         GuiDocument(GuiView & lv);
75
76         void paramsToDialog();
77         void updateFontsize(std::string const &, std::string const &);
78         void updateFontlist();
79         void updateDefaultFormat();
80         void updateEngineType(std::string const &, CiteEngineType const &);
81         void updatePagestyle(std::string const &, std::string const &);
82         bool isChildIncluded(std::string const &);
83
84         ///
85         BufferParams const & params() const { return bp_; }
86
87 private Q_SLOTS:
88         void updateNumbering();
89         void change_adaptor();
90         void includeonlyClicked(QTreeWidgetItem * item, int);
91         void setListingsMessage();
92         void saveDefaultClicked();
93         void useDefaultsClicked();
94         void setLSpacing(int);
95         void setMargins();
96         void papersizeChanged(int);
97         void setColSep();
98         void setCustomMargins(bool);
99         void fontencChanged(int);
100         void romanChanged(int);
101         void sansChanged(int);
102         void ttChanged(int);
103         void setIndent(int);
104         void enableIndent(bool);
105         void setSkip(int);
106         void enableSkip(bool);
107         void browseLayout();
108         void browseMaster();
109         void classChanged();
110         void languagePackageChanged(int);
111         void biblioChanged();
112         void bibtexChanged(int);
113         void setAuthorYear(bool);
114         void setNumerical(bool);
115         void updateModuleInfo();
116         void modulesChanged();
117         void changeBackgroundColor();
118         void deleteBackgroundColor();
119         void changeFontColor();
120         void deleteFontColor();
121         void changeNoteFontColor();
122         void deleteNoteFontColor();
123         void changeBoxBackgroundColor();
124         void deleteBoxBackgroundColor();
125         void languageChanged(int);
126         void osFontsChanged(bool);
127         void mathFontChanged(int);
128         void branchesRename(docstring const &, docstring const &);
129 private:
130         /// validate listings parameters and return an error message, if any
131         QString validateListingsParameters();
132
133         UiWidget<Ui::TextLayoutUi> *textLayoutModule;
134         UiWidget<Ui::MasterChildUi> *masterChildModule;
135         UiWidget<Ui::FontUi> *fontModule;
136         UiWidget<Ui::PageLayoutUi> *pageLayoutModule;
137         UiWidget<Ui::MarginsUi> *marginsModule;
138         UiWidget<Ui::LanguageUi> *langModule;
139         UiWidget<Ui::ColorUi> *colorModule;
140         UiWidget<Ui::NumberingUi> *numberingModule;
141         UiWidget<Ui::BiblioUi> *biblioModule;
142         UiWidget<Ui::MathsUi> *mathsModule;
143         UiWidget<Ui::LaTeXUi> *latexModule;
144         UiWidget<Ui::PDFSupportUi> *pdfSupportModule;
145         UiWidget<Ui::ModulesUi> *modulesModule;
146         UiWidget<Ui::OutputUi> *outputModule;
147         UiWidget<Ui::ListingsSettingsUi> *listingsModule;
148         PreambleModule * preambleModule;
149         LocalLayout * localLayout;
150
151         GuiBranches * branchesModule;
152         GuiIndices * indicesModule;
153
154         BulletsModule * bulletsModule;
155         FloatPlacement * floatModule;
156
157         ModuleSelectionManager * selectionManager;
158
159         /// Available modules
160         GuiIdListModel * availableModel() { return &modules_av_model_; }
161         /// Selected modules
162         GuiIdListModel * selectedModel() { return &modules_sel_model_; }
163
164         /// Apply changes
165         void applyView();
166         /// update
167         void updateContents();
168         ///
169         void updateAvailableModules();
170         ///
171         void updateSelectedModules();
172         ///
173         void updateIncludeonlys();
174         /// save as default template
175         void saveDocDefault();
176         /// reset to default params
177         void useClassDefaults();
178         ///
179         void setLayoutComboByIDString(std::string const & idString);
180
181         /// available modules
182         GuiIdListModel modules_av_model_;
183         /// selected modules
184         GuiIdListModel modules_sel_model_;
185         /// current buffer
186         BufferId current_id_;
187
188         /// return false if validate_listings_params returns error
189         bool isValid();
190
191         /// font family names for BufferParams::fonts_default_family
192         static char const * const fontfamilies[5];
193         /// GUI names corresponding fontfamilies
194         static char const * fontfamilies_gui[5];
195         ///
196         bool initialiseParams(std::string const & data);
197         ///
198         void clearParams();
199         ///
200         void dispatchParams();
201         ///
202         void modulesToParams(BufferParams &);
203         ///
204         bool isBufferDependent() const { return true; }
205         /// always true since we don't manipulate document contents
206         bool canApply() const { return true; }
207         ///
208         DocumentClass const & documentClass() const;
209         ///
210         BufferParams & params() { return bp_; }
211         ///
212         BufferId id() const;
213         ///
214         struct modInfoStruct {
215                 QString name;
216                 std::string id;
217                 QString description;
218         };
219         /// List of available modules
220         std::list<modInfoStruct> const & getModuleInfo();
221         /// Modules in use in current buffer
222         std::list<modInfoStruct> const getSelectedModules();
223         ///
224         std::list<modInfoStruct> const getProvidedModules();
225         ///
226         std::list<modInfoStruct> const
227                         makeModuleInfo(LayoutModuleList const & mods);
228         ///
229         void setLanguage() const;
230         ///
231         void saveAsDefault() const;
232         /// does this font provide Old Style figures?
233         bool providesOSF(QString const & font) const;
234         /// does this font provide true Small Caps?
235         bool providesSC(QString const & font) const;
236         /// does this font provide size adjustment?
237         bool providesScale(QString const & font) const;
238         /// does this font provide an alternative without math?
239         bool providesNoMath(QString const & font) const;
240         ///
241         void executeBranchRenaming() const;
242         ///
243         void setCustomPapersize(bool custom);
244 private:
245         ///
246         void loadModuleInfo();
247         ///
248         void updateUnknownBranches();
249         ///
250         void updateTexFonts();
251         ///
252         void updateMathFonts(QString const & rm);
253         ///
254         void updateFontOptions();
255         ///
256         bool ot1() const;
257         ///
258         bool completeFontset() const;
259         ///
260         bool noMathFont() const;
261         ///
262         BufferParams bp_;
263         /// List of names of available modules
264         std::list<modInfoStruct> moduleNames_;
265         ///
266         std::map<docstring, docstring> changedBranches_;
267         ///
268         std::list<std::string> includeonlys_;
269         ///
270         bool biblioChanged_;
271 };
272
273
274 class PreambleModule : public UiWidget<Ui::PreambleUi>
275 {
276         Q_OBJECT
277 public:
278         PreambleModule();
279         void update(BufferParams const & params, BufferId id);
280         void apply(BufferParams & params);
281
282 Q_SIGNALS:
283         /// signal that something's changed in the Widget.
284         void changed();
285
286 private:
287         void closeEvent(QCloseEvent *);
288         void on_preambleTE_textChanged() { changed(); }
289
290 private:
291         typedef std::map<BufferId, std::pair<int,int> > Coords;
292         Coords preamble_coords_;
293         BufferId current_id_;
294 };
295
296
297 class LocalLayout : public UiWidget<Ui::LocalLayoutUi>
298 {
299         Q_OBJECT
300 public:
301         LocalLayout();
302         void update(BufferParams const & params, BufferId id);
303         void apply(BufferParams & params);
304         bool isValid() const { return validated_; }
305
306 Q_SIGNALS:
307         /// signal that something's changed in the Widget.
308         void changed();
309
310 private:
311         void validate();
312         void convert();
313 private Q_SLOTS:
314         void textChanged();
315         void validatePressed();
316         void convertPressed();
317
318 private:
319         BufferId current_id_;
320         bool validated_;
321 };
322
323
324 } // namespace frontend
325 } // namespace lyx
326
327 #endif // GUIDOCUMENT_H