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