]> git.lyx.org Git - features.git/blob - src/frontends/gnome/Dialogs2.C
The uncontroversial part of Michael Schmitt's minipage cleanup (removal of the gnome...
[features.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
95 void Dialogs::showParagraph()
96 {
97         pimpl_->paragraph.controller().show();
98 }
99
100
101 void Dialogs::updateParagraph()
102 {
103         pimpl_->paragraph.controller().changedParagraph();
104 }
105
106
107 void Dialogs::showPreamble()
108 {
109         pimpl_->preamble.controller().show();
110 }
111
112
113 void Dialogs::showPreferences()
114 {
115         pimpl_->preferences.controller().show();
116 }
117
118
119 void Dialogs::showPrint()
120 {
121         pimpl_->print.controller().show();
122 }
123
124
125 void Dialogs::showSearch()
126 {
127         pimpl_->search.controller().show();
128 }
129
130
131 void Dialogs::showSendto()
132 {
133         pimpl_->sendto.controller().show();
134 }
135
136
137 void Dialogs::showSpellchecker()
138 {
139         pimpl_->spellchecker.controller().show();
140 }
141
142
143 void Dialogs::showTabular(InsetTabular * it)
144 {
145         pimpl_->tabular.controller().showInset(it);
146 }
147
148
149 void Dialogs::updateTabular(InsetTabular * it)
150 {
151         pimpl_->tabular.controller().updateInset(it);
152 }
153
154
155 void Dialogs::showTabularCreate()
156 {
157         pimpl_->tabularcreate.controller().show();
158 }
159
160
161 void Dialogs::showTexinfo()
162 {
163         pimpl_->texinfo.controller().show();
164 }
165
166
167 #ifdef HAVE_LIBAIKSAURUS
168
169 void Dialogs::showThesaurus(string const & s)
170 {
171         pimpl_->thesaurus.controller().showEntry(s);
172 }
173
174 #else
175
176 void Dialogs::showThesaurus(string const &)
177 {}
178
179 #endif
180
181
182 void Dialogs::showVCLogFile()
183 {
184         pimpl_->vclogfile.controller().show();
185 }
186
187
188 void Dialogs::showWrap(InsetWrap * iw)
189 {
190         pimpl_->wrap.controller().showInset(iw);
191 }