]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiPrefs.h
make mouse scroll wheel zoom configurable
[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 changeLyxObjectsSelection();
258
259 private:
260         std::vector<ColorCode> lcolors_;
261         std::vector<QString> curcolors_;
262         std::vector<QString> newcolors_;
263 };
264
265
266 class PrefDisplay : public PrefModule, public Ui::PrefDisplayUi
267 {
268         Q_OBJECT
269 public:
270         PrefDisplay(GuiPreferences * form);
271
272         void apply(LyXRC & rc) const;
273         void update(LyXRC const & rc);
274
275 private Q_SLOTS:
276         void on_instantPreviewCO_currentIndexChanged(int);
277 };
278
279
280 class PrefPaths : public PrefModule, public Ui::PrefPathsUi
281 {
282         Q_OBJECT
283 public:
284         PrefPaths(GuiPreferences * form);
285
286         void apply(LyXRC & rc) const;
287         void update(LyXRC const & rc);
288
289 private Q_SLOTS:
290         void selectExampledir();
291         void selectTemplatedir();
292         void selectTempdir();
293         void selectBackupdir();
294         void selectWorkingdir();
295         void selectThesaurusdir();
296         void selectHunspelldir();
297         void selectLyxPipe();
298
299 };
300
301
302 class PrefSpellchecker : public PrefModule, public Ui::PrefSpellcheckerUi
303 {
304         Q_OBJECT
305 public:
306         PrefSpellchecker(GuiPreferences * form);
307
308         void apply(LyXRC & rc) const;
309         void update(LyXRC const & rc);
310
311 };
312
313
314 class PrefConverters : public PrefModule, public Ui::PrefConvertersUi
315 {
316         Q_OBJECT
317 public:
318         PrefConverters(GuiPreferences * form);
319
320         void apply(LyXRC & rc) const;
321         void update(LyXRC const & rc);
322
323 public Q_SLOTS:
324         void updateGui();
325
326 private Q_SLOTS:
327         void updateConverter();
328         void switchConverter();
329         void removeConverter();
330         void changeConverter();
331         void on_cacheCB_stateChanged(int state);
332
333 private:
334         void updateButtons();
335 };
336
337
338 class PrefFileformats : public PrefModule, public Ui::PrefFileformatsUi
339 {
340         Q_OBJECT
341 public:
342         PrefFileformats(GuiPreferences * form);
343
344         void apply(LyXRC & rc) const;
345         void update(LyXRC const & rc);
346         void updateView();
347
348 Q_SIGNALS:
349         void formatsChanged();
350
351 private Q_SLOTS:
352         void on_copierED_textEdited(const QString & s);
353         void on_extensionED_textEdited(const QString &);
354         void on_viewerED_textEdited(const QString &);
355         void on_editorED_textEdited(const QString &);
356         void on_shortcutED_textEdited(const QString &);
357         void on_formatED_editingFinished();
358         void on_formatED_textChanged(const QString &);
359         void on_formatsCB_currentIndexChanged(int);
360         void on_formatsCB_editTextChanged(const QString &);
361         void on_formatNewPB_clicked();
362         void on_formatRemovePB_clicked();
363         void on_viewerCO_currentIndexChanged(int i);
364         void on_editorCO_currentIndexChanged(int i);
365         void setFlags();
366         void updatePrettyname();
367
368 private:
369         Format & currentFormat();
370         ///
371         void updateViewers();
372         ///
373         void updateEditors();
374         ///
375         LyXRC::Alternatives viewer_alternatives;
376         ///
377         LyXRC::Alternatives editor_alternatives;
378 };
379
380
381 class PrefLanguage : public PrefModule, public Ui::PrefLanguageUi
382 {
383         Q_OBJECT
384 public:
385         PrefLanguage(GuiPreferences * form);
386
387         void apply(LyXRC & rc) const;
388         void update(LyXRC const & rc);
389
390 private Q_SLOTS:
391         void on_uiLanguageCO_currentIndexChanged(int);
392 };
393
394
395 class PrefPrinter : public PrefModule, public Ui::PrefPrinterUi
396 {
397         Q_OBJECT
398 public:
399         PrefPrinter(GuiPreferences * form);
400
401         void apply(LyXRC & rc) const;
402         void update(LyXRC const & rc);
403 };
404
405
406 class PrefUserInterface : public PrefModule, public Ui::PrefUi
407 {
408         Q_OBJECT
409 public:
410         PrefUserInterface(GuiPreferences * form);
411
412         void apply(LyXRC & rc) const;
413         void update(LyXRC const & rc);
414
415 public Q_SLOTS:
416         void selectUi();
417         void on_clearSessionPB_clicked();
418 };
419
420
421 class PrefEdit : public PrefModule, public Ui::PrefEditUi
422 {
423         Q_OBJECT
424 public:
425         PrefEdit(GuiPreferences * form);
426
427         void apply(LyXRC & rc) const;
428         void update(LyXRC const & rc);
429 };
430
431
432
433 class GuiShortcutDialog : public QDialog, public Ui::shortcutUi
434 {
435 public:
436         GuiShortcutDialog(QWidget * parent);
437 };
438
439
440 class PrefShortcuts : public PrefModule, public Ui::PrefShortcuts
441 {
442         Q_OBJECT
443 public:
444         PrefShortcuts(GuiPreferences * form);
445
446         void apply(LyXRC & rc) const;
447         void update(LyXRC const & rc);
448         void updateShortcutsTW();
449         void modifyShortcut();
450         void removeShortcut();
451         ///
452         void setItemType(QTreeWidgetItem * item, KeyMap::ItemType tag);
453         QTreeWidgetItem * insertShortcutItem(FuncRequest const & lfun, 
454                 KeySequence const & shortcut, KeyMap::ItemType tag);
455
456 public Q_SLOTS:
457         void selectBind();
458         void on_modifyPB_pressed();
459         void on_newPB_pressed();
460         void on_removePB_pressed();
461         void on_searchLE_textEdited();
462         ///
463         void on_shortcutsTW_itemSelectionChanged();
464         void on_shortcutsTW_itemDoubleClicked();
465         ///
466         void shortcutOkPressed();
467         void shortcutCancelPressed();
468         void shortcutClearPressed();
469         void shortcutRemovePressed();
470
471 private:
472         ///
473         GuiShortcutDialog * shortcut_;
474         ///
475         ButtonController shortcut_bc_;
476         /// category items
477         QTreeWidgetItem * editItem_;
478         QTreeWidgetItem * mathItem_;
479         QTreeWidgetItem * bufferItem_;
480         QTreeWidgetItem * layoutItem_;
481         QTreeWidgetItem * systemItem_;
482         // system_bind_ holds bindings from rc.bind_file
483         // user_bind_ holds \bind bindings from user.bind
484         // user_unbind_ holds \unbind bindings from user.bind
485         // When an item is inserted, it is added to user_bind_
486         // When an item from system_bind_ is deleted, it is added to user_unbind_
487         // When an item in user_bind_ or user_unbind_ is deleted, it is 
488         //      deleted (unbind)
489         KeyMap system_bind_;
490         KeyMap user_bind_;
491         KeyMap user_unbind_;
492         ///
493         QString save_lfun_;
494 };
495
496
497 class PrefIdentity : public PrefModule, public Ui::PrefIdentityUi
498 {
499         Q_OBJECT
500 public:
501         PrefIdentity(GuiPreferences * form);
502
503         void apply(LyXRC & rc) const;
504         void update(LyXRC const & rc);
505 };
506
507
508 } // namespace frontend
509 } // namespace lyx
510
511 #endif // GUIPREFS_H