]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/Dialogs2.C
Hold on to your hats.
[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
16 #include "Dialogs_impl.h"
17
18
19 void Dialogs::showAboutlyx()
20 {
21         pimpl_->aboutlyx.controller().show();
22 }
23
24
25 void Dialogs::showMergeChanges()
26 {
27         pimpl_->changes.controller().show();
28 }
29
30
31 void Dialogs::showCharacter()
32 {
33         pimpl_->character.controller().show();
34 }
35
36
37 void Dialogs::setUserFreeFont()
38 {
39         pimpl_->character.controller().apply();
40 }
41
42
43 void Dialogs::showDocument()
44 {
45         pimpl_->document.controller().show();
46 }
47
48
49 void Dialogs::showExternal(InsetExternal * ie)
50 {
51         pimpl_->external.controller().showInset(ie);
52 }
53
54
55 void Dialogs::showFile(string const & f)
56 {
57         pimpl_->file.controller().showFile(f);
58 }
59
60
61 void Dialogs::showFloat(InsetFloat * ifl)
62 {
63         pimpl_->floats.controller().showInset(ifl);
64 }
65
66
67 void Dialogs::showForks()
68 {
69         pimpl_->forks.controller().show();
70 }
71
72
73 void Dialogs::showGraphics(InsetGraphics * ig)
74 {
75         pimpl_->graphics.controller().showInset(ig);
76 }
77
78
79 void Dialogs::showInclude(InsetInclude * ii)
80 {
81         pimpl_->include.controller().showInset(ii);
82 }
83
84
85 void Dialogs::showLogFile()
86 {
87         pimpl_->logfile.controller().show();
88 }
89
90
91 void Dialogs::showMathPanel()
92 {
93         pimpl_->mathpanel.controller().show();
94 }
95
96
97 void Dialogs::showMinipage(InsetMinipage * im)
98 {
99         pimpl_->minipage.controller().showInset(im);
100 }
101
102
103 void Dialogs::updateMinipage(InsetMinipage * im)
104 {
105         pimpl_->minipage.controller().showInset(im);
106 }
107
108
109 void Dialogs::showParagraph()
110 {
111         pimpl_->paragraph.controller().show();
112 }
113
114
115 void Dialogs::updateParagraph()
116 {
117         pimpl_->paragraph.controller().changedParagraph();
118 }
119
120
121 void Dialogs::showPreamble()
122 {
123         pimpl_->preamble.controller().show();
124 }
125
126
127 void Dialogs::showPreferences()
128 {
129         pimpl_->preferences.controller().show();
130 }
131
132
133 void Dialogs::showPrint()
134 {
135         pimpl_->print.controller().show();
136 }
137
138
139 void Dialogs::showSearch()
140 {
141         pimpl_->search.controller().show();
142 }
143
144
145 void Dialogs::showSendto()
146 {
147         pimpl_->sendto.controller().show();
148 }
149
150
151 void Dialogs::showSpellchecker()
152 {
153         pimpl_->spellchecker.controller().show();
154 }
155
156
157 void Dialogs::showTabular(InsetTabular * it)
158 {
159         pimpl_->tabular.controller().showInset(it);
160 }
161
162
163 void Dialogs::updateTabular(InsetTabular * it)
164 {
165         pimpl_->tabular.controller().updateInset(it);
166 }
167
168
169 void Dialogs::showTabularCreate()
170 {
171         pimpl_->tabularcreate.controller().show();
172 }
173
174
175 void Dialogs::showTexinfo()
176 {
177         pimpl_->texinfo.controller().show();
178 }
179
180
181 #ifdef HAVE_LIBAIKSAURUS
182
183 void Dialogs::showThesaurus(string const & s)
184 {
185         pimpl_->thesaurus.controller().showEntry(s);
186 }
187
188 #else
189
190 void Dialogs::showThesaurus(string const &)
191 {}
192
193 #endif
194
195
196 void Dialogs::showVCLogFile()
197 {
198         pimpl_->vclogfile.controller().show();
199 }
200
201
202 void Dialogs::showWrap(InsetWrap * iw)
203 {
204         pimpl_->wrap.controller().showInset(iw);
205 }