]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/Dialogs2.C
Port the TabularCreate dialog to the Dialog scheme.
[lyx.git] / src / frontends / xforms / Dialogs2.C
1 /**
2  * \file xforms/Dialogs2.C
3  * Copyright 1995 Matthias Ettrich
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Allan Rae
8  * \author Angus Leeming
9  *
10  * Full author contact details are available in file CREDITS
11  */
12
13 #include <config.h>
14
15 #include "Dialogs_impl.h"
16
17
18 void Dialogs::showAboutlyx()
19 {
20         pimpl_->aboutlyx.controller().show();
21 }
22
23
24 void Dialogs::showMergeChanges()
25 {
26         pimpl_->changes.controller().show();
27 }
28
29
30 void Dialogs::showCharacter()
31 {
32         pimpl_->character.controller().show();
33 }
34
35
36 void Dialogs::setUserFreeFont()
37 {
38         pimpl_->character.controller().apply();
39 }
40
41
42 void Dialogs::showDocument()
43 {
44         pimpl_->document.controller().show();
45 }
46
47
48 void Dialogs::showFile(string const & f)
49 {
50         pimpl_->file.controller().showFile(f);
51 }
52
53
54 void Dialogs::showForks()
55 {
56         pimpl_->forks.controller().show();
57 }
58
59
60 void Dialogs::showLogFile()
61 {
62         pimpl_->logfile.controller().show();
63 }
64
65
66 void Dialogs::showMathPanel()
67 {
68         pimpl_->mathpanel.controller().show();
69 }
70
71
72 void Dialogs::showParagraph()
73 {
74         pimpl_->paragraph.controller().show();
75 }
76
77
78 void Dialogs::updateParagraph()
79 {
80         pimpl_->paragraph.controller().changedParagraph();
81 }
82
83
84 void Dialogs::showPreamble()
85 {
86         pimpl_->preamble.controller().show();
87 }
88
89
90 void Dialogs::showPreferences()
91 {
92         pimpl_->preferences.controller().show();
93 }
94
95
96 void Dialogs::showPrint()
97 {
98         pimpl_->print.controller().show();
99 }
100
101
102 void Dialogs::showSearch()
103 {
104         pimpl_->search.controller().show();
105 }
106
107
108 void Dialogs::showSendto()
109 {
110         pimpl_->sendto.controller().show();
111 }
112
113
114 void Dialogs::showSpellchecker()
115 {
116         pimpl_->spellchecker.controller().show();
117 }
118
119
120 void Dialogs::showTexinfo()
121 {
122         pimpl_->texinfo.controller().show();
123 }
124
125
126 #ifdef HAVE_LIBAIKSAURUS
127
128 void Dialogs::showThesaurus(string const & s)
129 {
130         pimpl_->thesaurus.controller().showEntry(s);
131 }
132
133 #else
134
135 void Dialogs::showThesaurus(string const &)
136 {}
137
138 #endif
139
140
141 void Dialogs::showVCLogFile()
142 {
143         pimpl_->vclogfile.controller().show();
144 }