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