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