]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiPrefs.h
Finish implementation of "use system colors" checkbox.
[lyx.git] / src / frontends / qt4 / GuiPrefs.h
1 // -*- C++ -*-
2 /**
3  * \file GuiPrefs.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  * \author Bo Peng
9  * \author Edwin Leuven
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef GUIPREFS_H
15 #define GUIPREFS_H
16
17 #include "GuiDialog.h"
18
19 #include "ColorCode.h"
20 #include "Converter.h"
21 #include "Format.h"
22 #include "FuncCode.h"
23 #include "KeyMap.h"
24 #include "LyXRC.h"
25 #include "Mover.h"
26
27 #include "ui_PrefsUi.h"
28
29 #include "ui_PrefOutputUi.h"
30 #include "ui_PrefInputUi.h"
31 #include "ui_PrefLatexUi.h"
32 #include "ui_PrefScreenFontsUi.h"
33 #include "ui_PrefCompletionUi.h"
34 #include "ui_PrefColorsUi.h"
35 #include "ui_PrefDisplayUi.h"
36 #include "ui_PrefEditUi.h"
37 #include "ui_PrefPathsUi.h"
38 #include "ui_PrefShortcutsUi.h"
39 #include "ui_PrefSpellcheckerUi.h"
40 #include "ui_PrefConvertersUi.h"
41 #include "ui_PrefFileformatsUi.h"
42 #include "ui_PrefLanguageUi.h"
43 #include "ui_PrefPrinterUi.h"
44 #include "ui_PrefUi.h"
45 #include "ui_PrefIdentityUi.h"
46 #include "ui_ShortcutUi.h"
47
48 #include <string>
49 #include <vector>
50
51
52 namespace lyx {
53
54 class Converters;
55 class Formats;
56 class Movers;
57
58 namespace frontend {
59
60 class PrefModule;
61
62 class GuiPreferences : public GuiDialog, public Ui::PrefsUi
63 {
64         Q_OBJECT
65 public:
66         GuiPreferences(GuiView & lv);
67
68         void apply(LyXRC & rc) const;
69         void updateRc(LyXRC const & rc);
70
71 public Q_SLOTS:
72         void change_adaptor();
73
74 public:
75         /// Apply changes
76         void applyView();
77
78         std::vector<PrefModule *> modules_;
79
80         ///
81         bool initialiseParams(std::string const &);
82         ///
83         void clearParams() {}
84         ///
85         void dispatchParams();
86         ///
87         bool isBufferDependent() const { return false; }
88
89         /// various file pickers
90         QString browsebind(QString const & file) const;
91         QString browseUI(QString const & file) const;
92         QString browsekbmap(QString const & file) const;
93
94         /// general browse
95         QString browse(QString const & file, QString const & title) const;
96
97         /// set a color
98         void setColor(ColorCode col, QString const & hex);
99
100         /// update the screen fonts after change
101         void updateScreenFonts();
102
103         /// adjust the prefs paper sizes
104         PAPER_SIZE toPaperSize(int i) const;
105         /// adjust the prefs paper sizes
106         int fromPaperSize(PAPER_SIZE papersize) const;
107
108         LyXRC & rc() { return rc_; }
109         Converters & converters() { return converters_; }
110         Formats & formats() { return formats_; }
111         Movers & movers() { return movers_; }
112
113 private:
114         ///
115         void addModule(PrefModule * module);
116
117         /// temporary lyxrc
118         LyXRC rc_;
119         /// temporary converters
120         Converters converters_;
121         /// temporary formats
122         Formats formats_;
123         /// temporary movers
124         Movers movers_;
125
126         /// A list of colors to be dispatched
127         std::vector<std::string> colors_;
128
129         bool redraw_gui_;
130         bool update_screen_font_;
131 };
132
133
134 class PrefModule : public QWidget
135 {
136         Q_OBJECT
137 public:
138         PrefModule(QString const & cat, QString const & t,
139                         GuiPreferences * form)
140                 : QWidget(form), category_(cat), title_(t), form_(form)
141         {}
142
143         virtual void apply(LyXRC & rc) const = 0;
144         virtual void update(LyXRC const & rc) = 0;
145
146         QString const & category() const { return category_; }
147         QString const & title() const { return title_; }
148
149 protected:
150         QString category_;
151         QString title_;
152         GuiPreferences * form_;
153
154 Q_SIGNALS:
155         void changed();
156 };
157
158
159 class PrefOutput : public PrefModule, public Ui::PrefOutputUi
160 {
161         Q_OBJECT
162 public:
163         PrefOutput(GuiPreferences * form);
164
165         virtual void apply(LyXRC & rc) const;
166         virtual void update(LyXRC const & rc);
167
168 private Q_SLOTS:
169         void on_DateED_textChanged(const QString &);
170 };
171
172
173 class PrefInput : public PrefModule, public Ui::PrefInputUi
174 {
175         Q_OBJECT
176 public:
177         PrefInput(GuiPreferences * form);
178
179         virtual void apply(LyXRC & rc) const;
180         virtual void update(LyXRC const & rc);
181
182 private Q_SLOTS:
183         void on_firstKeymapPB_clicked(bool);
184         void on_secondKeymapPB_clicked(bool);
185         void on_keymapCB_toggled(bool);
186         void on_scrollzoomEnableCB_toggled(bool);
187
188 private:
189         QString testKeymap(QString const & keymap);
190 };
191
192
193 class PrefCompletion : public PrefModule, public Ui::PrefCompletionUi
194 {
195         Q_OBJECT
196 public:
197         PrefCompletion(GuiPreferences * form);
198
199         virtual void apply(LyXRC & rc) const;
200         virtual void update(LyXRC const & rc);
201         virtual void enableCB();
202 private Q_SLOTS:
203         void on_popupTextCB_clicked();
204         void on_inlineTextCB_clicked();
205 };
206
207
208 class PrefLatex : public PrefModule, public Ui::PrefLatexUi
209 {
210         Q_OBJECT
211 public:
212         PrefLatex(GuiPreferences * form);
213
214         virtual void apply(LyXRC & rc) const;
215         virtual void update(LyXRC const & rc);
216
217 private Q_SLOTS:
218         void on_latexEncodingCB_stateChanged(int state);
219         void on_latexBibtexCO_activated(int n);
220         void on_latexIndexCO_activated(int n);
221
222 private:
223         ///
224         std::set<std::string> bibtex_alternatives;
225         ///
226         std::set<std::string> index_alternatives;
227 };
228
229
230 class PrefScreenFonts : public PrefModule, public Ui::PrefScreenFontsUi
231 {
232         Q_OBJECT
233 public:
234         PrefScreenFonts(GuiPreferences * form);
235
236         virtual void apply(LyXRC & rc) const;
237         virtual void update(LyXRC const & rc);
238
239 private Q_SLOTS:
240         void selectRoman(const QString&);
241         void selectSans(const QString&);
242         void selectTypewriter(const QString&);
243 };
244
245
246 class PrefColors : public PrefModule, public Ui::PrefColorsUi
247 {
248         Q_OBJECT
249 public:
250         PrefColors(GuiPreferences * form);
251
252         void apply(LyXRC & rc) const;
253         void update(LyXRC const & rc);
254
255 private Q_SLOTS:
256         void changeColor();
257         void changeSysColor();
258         void changeLyxObjectsSelection();
259
260 private:
261         std::vector<ColorCode> lcolors_;
262         std::vector<QString> curcolors_;
263         std::vector<QString> newcolors_;
264 };
265
266
267 class PrefDisplay : public PrefModule, public Ui::PrefDisplayUi
268 {
269         Q_OBJECT
270 public:
271         PrefDisplay(GuiPreferences * form);
272
273         void apply(LyXRC & rc) const;
274         void update(LyXRC const & rc);
275
276 private Q_SLOTS:
277         void on_instantPreviewCO_currentIndexChanged(int);
278 };
279
280
281 class PrefPaths : public PrefModule, public Ui::PrefPathsUi
282 {
283         Q_OBJECT
284 public:
285         PrefPaths(GuiPreferences * form);
286
287         void apply(LyXRC & rc) const;
288         void update(LyXRC const & rc);
289
290 private Q_SLOTS:
291         void selectExampledir();
292         void selectTemplatedir();
293         void selectTempdir();
294         void selectBackupdir();
295         void selectWorkingdir();
296         void selectThesaurusdir();
297         void selectHunspelldir();
298         void selectLyxPipe();
299
300 };
301
302
303 class PrefSpellchecker : public PrefModule, public Ui::PrefSpellcheckerUi
304 {
305         Q_OBJECT
306 public:
307         PrefSpellchecker(GuiPreferences * form);
308
309         void apply(LyXRC & rc) const;
310         void update(LyXRC const & rc);
311
312 };
313
314
315 class PrefConverters : public PrefModule, public Ui::PrefConvertersUi
316 {
317         Q_OBJECT
318 public:
319         PrefConverters(GuiPreferences * form);
320
321         void apply(LyXRC & rc) const;
322         void update(LyXRC const & rc);
323
324 public Q_SLOTS:
325         void updateGui();
326
327 private Q_SLOTS:
328         void updateConverter();
329         void switchConverter();
330         void removeConverter();
331         void changeConverter();
332         void on_cacheCB_stateChanged(int state);
333
334 private:
335         void updateButtons();
336 };
337
338
339 class PrefFileformats : public PrefModule, public Ui::PrefFileformatsUi
340 {
341         Q_OBJECT
342 public:
343         PrefFileformats(GuiPreferences * form);
344
345         void apply(LyXRC & rc) const;
346         void update(LyXRC const & rc);
347         void updateView();
348
349 Q_SIGNALS:
350         void formatsChanged();
351
352 private Q_SLOTS:
353         void on_copierED_textEdited(const QString & s);
354         void on_extensionED_textEdited(const QString &);
355         void on_viewerED_textEdited(const QString &);
356         void on_editorED_textEdited(const QString &);
357         void on_shortcutED_textEdited(const QString &);
358         void on_formatED_editingFinished();
359         void on_formatED_textChanged(const QString &);
360         void on_formatsCB_currentIndexChanged(int);
361         void on_formatsCB_editTextChanged(const QString &);
362         void on_formatNewPB_clicked();
363         void on_formatRemovePB_clicked();
364         void on_viewerCO_currentIndexChanged(int i);
365         void on_editorCO_currentIndexChanged(int i);
366         void setFlags();
367         void updatePrettyname();
368
369 private:
370         Format & currentFormat();
371         ///
372         void updateViewers();
373         ///
374         void updateEditors();
375         ///
376         LyXRC::Alternatives viewer_alternatives;
377         ///
378         LyXRC::Alternatives editor_alternatives;
379 };
380
381
382 class PrefLanguage : public PrefModule, public Ui::PrefLanguageUi
383 {
384         Q_OBJECT
385 public:
386         PrefLanguage(GuiPreferences * form);
387
388         void apply(LyXRC & rc) const;
389         void update(LyXRC const & rc);
390
391 private Q_SLOTS:
392         void on_uiLanguageCO_currentIndexChanged(int);
393 };
394
395
396 class PrefPrinter : public PrefModule, public Ui::PrefPrinterUi
397 {
398         Q_OBJECT
399 public:
400         PrefPrinter(GuiPreferences * form);
401
402         void apply(LyXRC & rc) const;
403         void update(LyXRC const & rc);
404 };
405
406
407 class PrefUserInterface : public PrefModule, public Ui::PrefUi
408 {
409         Q_OBJECT
410 public:
411         PrefUserInterface(GuiPreferences * form);
412
413         void apply(LyXRC & rc) const;
414         void update(LyXRC const & rc);
415
416 public Q_SLOTS:
417         void selectUi();
418         void on_clearSessionPB_clicked();
419 };
420
421
422 class PrefEdit : public PrefModule, public Ui::PrefEditUi
423 {
424         Q_OBJECT
425 public:
426         PrefEdit(GuiPreferences * form);
427
428         void apply(LyXRC & rc) const;
429         void update(LyXRC const & rc);
430 };
431
432
433
434 class GuiShortcutDialog : public QDialog, public Ui::shortcutUi
435 {
436 public:
437         GuiShortcutDialog(QWidget * parent);
438 };
439
440
441 class PrefShortcuts : public PrefModule, public Ui::PrefShortcuts
442 {
443         Q_OBJECT
444 public:
445         PrefShortcuts(GuiPreferences * form);
446
447         void apply(LyXRC & rc) const;
448         void update(LyXRC const & rc);
449         void updateShortcutsTW();
450         void modifyShortcut();
451         void removeShortcut();
452         ///
453         void setItemType(QTreeWidgetItem * item, KeyMap::ItemType tag);
454         QTreeWidgetItem * insertShortcutItem(FuncRequest const & lfun, 
455                 KeySequence const & shortcut, KeyMap::ItemType tag);
456
457 public Q_SLOTS:
458         void selectBind();
459         void on_modifyPB_pressed();
460         void on_newPB_pressed();
461         void on_removePB_pressed();
462         void on_searchLE_textEdited();
463         ///
464         void on_shortcutsTW_itemSelectionChanged();
465         void on_shortcutsTW_itemDoubleClicked();
466         ///
467         void shortcutOkPressed();
468         void shortcutCancelPressed();
469         void shortcutClearPressed();
470         void shortcutRemovePressed();
471
472 private:
473         ///
474         GuiShortcutDialog * shortcut_;
475         ///
476         ButtonController shortcut_bc_;
477         /// category items
478         QTreeWidgetItem * editItem_;
479         QTreeWidgetItem * mathItem_;
480         QTreeWidgetItem * bufferItem_;
481         QTreeWidgetItem * layoutItem_;
482         QTreeWidgetItem * systemItem_;
483         // system_bind_ holds bindings from rc.bind_file
484         // user_bind_ holds \bind bindings from user.bind
485         // user_unbind_ holds \unbind bindings from user.bind
486         // When an item is inserted, it is added to user_bind_
487         // When an item from system_bind_ is deleted, it is added to user_unbind_
488         // When an item in user_bind_ or user_unbind_ is deleted, it is 
489         //      deleted (unbind)
490         KeyMap system_bind_;
491         KeyMap user_bind_;
492         KeyMap user_unbind_;
493         ///
494         QString save_lfun_;
495 };
496
497
498 class PrefIdentity : public PrefModule, public Ui::PrefIdentityUi
499 {
500         Q_OBJECT
501 public:
502         PrefIdentity(GuiPreferences * form);
503
504         void apply(LyXRC & rc) const;
505         void update(LyXRC const & rc);
506 };
507
508
509 } // namespace frontend
510 } // namespace lyx
511
512 #endif // GUIPREFS_H