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