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