]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/Dialogs2.C
Strip trailing whitespace.
[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::showBibitem(InsetCommand * ic)
26 {
27         pimpl_->bibitem.controller().showInset(ic);
28 }
29
30
31 void Dialogs::showBibtex(InsetCommand * ic)
32 {
33         pimpl_->bibtex.controller().showInset(ic);
34 }
35
36
37 void Dialogs::showMergeChanges()
38 {
39         pimpl_->changes.controller().show();
40 }
41
42
43 void Dialogs::showCharacter()
44 {
45         pimpl_->character.controller().show();
46 }
47
48
49 void Dialogs::setUserFreeFont()
50 {
51         pimpl_->character.controller().apply();
52 }
53
54
55 void Dialogs::showCitation(InsetCommand * ic)
56 {
57         pimpl_->citation.controller().showInset(ic);
58 }
59
60
61 void Dialogs::createCitation(string const & s)
62 {
63         pimpl_->citation.controller().createInset(s);
64 }
65
66
67 void Dialogs::showDocument()
68 {
69         pimpl_->document.controller().show();
70 }
71
72
73 void Dialogs::showError(InsetError * ie)
74 {
75         pimpl_->error.controller().showInset(ie);
76 }
77
78
79 void Dialogs::showERT(InsetERT * ie)
80 {
81         pimpl_->ert.controller().showInset(ie);
82 }
83
84
85 void Dialogs::updateERT(InsetERT * ie)
86 {
87         pimpl_->ert.controller().showInset(ie);
88 }
89
90
91 void Dialogs::showExternal(InsetExternal * ie)
92 {
93         pimpl_->external.controller().showInset(ie);
94 }
95
96
97 void Dialogs::showFile(string const & f)
98 {
99         pimpl_->file.controller().showFile(f);
100 }
101
102
103 void Dialogs::showFloat(InsetFloat * ifl)
104 {
105         pimpl_->floats.controller().showInset(ifl);
106 }
107
108
109 void Dialogs::showForks()
110 {
111         pimpl_->forks.controller().show();
112 }
113
114
115 void Dialogs::showGraphics(InsetGraphics * ig)
116 {
117         pimpl_->graphics.controller().showInset(ig);
118 }
119
120
121 void Dialogs::showInclude(InsetInclude * ii)
122 {
123         pimpl_->include.controller().showInset(ii);
124 }
125
126
127 void Dialogs::showIndex(InsetCommand * ic)
128 {
129         pimpl_->index.controller().showInset(ic);
130 }
131
132
133 void Dialogs::createIndex()
134 {
135         pimpl_->index.controller().createInset("index");
136 }
137
138
139 void Dialogs::showLogFile()
140 {
141         pimpl_->logfile.controller().show();
142 }
143
144
145 void Dialogs::showMathPanel()
146 {
147         pimpl_->mathpanel.controller().show();
148 }
149
150
151 void Dialogs::showMinipage(InsetMinipage * im)
152 {
153         pimpl_->minipage.controller().showInset(im);
154 }
155
156
157 void Dialogs::updateMinipage(InsetMinipage * im)
158 {
159         pimpl_->minipage.controller().showInset(im);
160 }
161
162
163 void Dialogs::showParagraph()
164 {
165         pimpl_->paragraph.controller().show();
166 }
167
168
169 void Dialogs::updateParagraph()
170 {
171         pimpl_->paragraph.controller().changedParagraph();
172 }
173
174
175 void Dialogs::showPreamble()
176 {
177         pimpl_->preamble.controller().show();
178 }
179
180
181 void Dialogs::showPreferences()
182 {
183         pimpl_->preferences.controller().show();
184 }
185
186
187 void Dialogs::showPrint()
188 {
189         pimpl_->print.controller().show();
190 }
191
192
193 void Dialogs::showRef(InsetCommand * ic)
194 {
195         pimpl_->ref.controller().showInset(ic);
196 }
197
198
199 void Dialogs::createRef(string const & s)
200 {
201         pimpl_->ref.controller().createInset(s);
202 }
203
204
205 void Dialogs::showSearch()
206 {
207         pimpl_->search.controller().show();
208 }
209
210
211 void Dialogs::showSendto()
212 {
213         pimpl_->sendto.controller().show();
214 }
215
216
217 void Dialogs::showSpellchecker()
218 {
219         pimpl_->spellchecker.controller().show();
220 }
221
222
223 void Dialogs::showTabular(InsetTabular * it)
224 {
225         pimpl_->tabular.controller().showInset(it);
226 }
227
228
229 void Dialogs::updateTabular(InsetTabular * it)
230 {
231         pimpl_->tabular.controller().updateInset(it);
232 }
233
234
235 void Dialogs::showTabularCreate()
236 {
237         pimpl_->tabularcreate.controller().show();
238 }
239
240
241 void Dialogs::showTexinfo()
242 {
243         pimpl_->texinfo.controller().show();
244 }
245
246
247 #ifdef HAVE_LIBAIKSAURUS
248
249 void Dialogs::showThesaurus(string const & s)
250 {
251         pimpl_->thesaurus.controller().showEntry(s);
252 }
253
254 #else
255
256 void Dialogs::showThesaurus(string const &)
257 {}
258
259 #endif
260
261
262 void Dialogs::showTOC(InsetCommand * ic)
263 {
264         pimpl_->toc.controller().showInset(ic);
265 }
266
267
268 void Dialogs::createTOC(string const & s)
269 {
270         pimpl_->toc.controller().createInset(s);
271 }
272
273
274 void Dialogs::showUrl(InsetCommand * ic)
275 {
276         pimpl_->url.controller().showInset(ic);
277 }
278
279
280 void Dialogs::createUrl(string const & s)
281 {
282         pimpl_->url.controller().createInset(s);
283 }
284
285
286 void Dialogs::showVCLogFile()
287 {
288         pimpl_->vclogfile.controller().show();
289 }
290
291
292 void Dialogs::showWrap(InsetWrap * iw)
293 {
294         pimpl_->wrap.controller().showInset(iw);
295 }