]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiPrefs.h
Fix handling of the add branch textfield in GuiBranches
[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_mimeED_textEdited(const QString &);
362         void on_shortcutED_textEdited(const QString &);
363         void on_formatED_editingFinished();
364         void on_formatED_textChanged(const QString &);
365         void on_formatsCB_currentIndexChanged(int);
366         void on_formatsCB_editTextChanged(const QString &);
367         void on_formatNewPB_clicked();
368         void on_formatRemovePB_clicked();
369         void on_viewerCO_currentIndexChanged(int i);
370         void on_editorCO_currentIndexChanged(int i);
371         void setFlags();
372         void updatePrettyname();
373
374 private:
375         Format & currentFormat();
376         ///
377         void updateViewers();
378         ///
379         void updateEditors();
380         ///
381         LyXRC::Alternatives viewer_alternatives;
382         ///
383         LyXRC::Alternatives editor_alternatives;
384 };
385
386
387 class PrefLanguage : public PrefModule, public Ui::PrefLanguageUi
388 {
389         Q_OBJECT
390 public:
391         PrefLanguage(GuiPreferences * form);
392
393         void apply(LyXRC & rc) const;
394         void update(LyXRC const & rc);
395
396 private Q_SLOTS:
397         void on_uiLanguageCO_currentIndexChanged(int);
398         void on_languagePackageCO_currentIndexChanged(int);
399 };
400
401
402 class PrefPrinter : public PrefModule, public Ui::PrefPrinterUi
403 {
404         Q_OBJECT
405 public:
406         PrefPrinter(GuiPreferences * form);
407
408         void apply(LyXRC & rc) const;
409         void update(LyXRC const & rc);
410 };
411
412
413 class PrefUserInterface : public PrefModule, public Ui::PrefUi
414 {
415         Q_OBJECT
416 public:
417         PrefUserInterface(GuiPreferences * form);
418
419         void apply(LyXRC & rc) const;
420         void update(LyXRC const & rc);
421
422 public Q_SLOTS:
423         void selectUi();
424         void on_clearSessionPB_clicked();
425 };
426
427
428 class PrefEdit : public PrefModule, public Ui::PrefEditUi
429 {
430         Q_OBJECT
431 public:
432         PrefEdit(GuiPreferences * form);
433
434         void apply(LyXRC & rc) const;
435         void update(LyXRC const & rc);
436 };
437
438
439
440 class GuiShortcutDialog : public QDialog, public Ui::shortcutUi
441 {
442 public:
443         GuiShortcutDialog(QWidget * parent);
444 };
445
446
447 class PrefShortcuts : public PrefModule, public Ui::PrefShortcuts
448 {
449         Q_OBJECT
450 public:
451         PrefShortcuts(GuiPreferences * form);
452
453         void apply(LyXRC & rc) const;
454         void update(LyXRC const & rc);
455         void updateShortcutsTW();
456         void modifyShortcut();
457         void removeShortcut();
458         ///
459         void setItemType(QTreeWidgetItem * item, KeyMap::ItemType tag);
460         QTreeWidgetItem * insertShortcutItem(FuncRequest const & lfun, 
461                 KeySequence const & shortcut, KeyMap::ItemType tag);
462
463 public Q_SLOTS:
464         void selectBind();
465         void on_modifyPB_pressed();
466         void on_newPB_pressed();
467         void on_removePB_pressed();
468         void on_searchLE_textEdited();
469         ///
470         void on_shortcutsTW_itemSelectionChanged();
471         void on_shortcutsTW_itemDoubleClicked();
472         ///
473         void shortcutOkPressed();
474         void shortcutCancelPressed();
475         void shortcutClearPressed();
476         void shortcutRemovePressed();
477
478 private:
479         ///
480         GuiShortcutDialog * shortcut_;
481         ///
482         ButtonController shortcut_bc_;
483         /// category items
484         QTreeWidgetItem * editItem_;
485         QTreeWidgetItem * mathItem_;
486         QTreeWidgetItem * bufferItem_;
487         QTreeWidgetItem * layoutItem_;
488         QTreeWidgetItem * systemItem_;
489         // system_bind_ holds bindings from rc.bind_file
490         // user_bind_ holds \bind bindings from user.bind
491         // user_unbind_ holds \unbind bindings from user.bind
492         // When an item is inserted, it is added to user_bind_
493         // When an item from system_bind_ is deleted, it is added to user_unbind_
494         // When an item in user_bind_ or user_unbind_ is deleted, it is 
495         //      deleted (unbind)
496         KeyMap system_bind_;
497         KeyMap user_bind_;
498         KeyMap user_unbind_;
499         ///
500         QString save_lfun_;
501 };
502
503
504 class PrefIdentity : public PrefModule, public Ui::PrefIdentityUi
505 {
506         Q_OBJECT
507 public:
508         PrefIdentity(GuiPreferences * form);
509
510         void apply(LyXRC & rc) const;
511         void update(LyXRC const & rc);
512 };
513
514
515 } // namespace frontend
516 } // namespace lyx
517
518 #endif // GUIPREFS_H