]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/Dialogs.C
0b6074f98529285a6fff3a67cf470b036f84c3a6
[lyx.git] / src / frontends / qt2 / Dialogs.C
1 /**
2  * \file qt2/Dialogs.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Angus Leeming
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #include <config.h>
12
13 #include "Dialogs_impl.h"
14
15
16 void Dialogs::init_pimpl()
17 {
18         pimpl_ = new Impl(lyxview_, *this);
19 }
20
21
22 Dialogs::~Dialogs()
23 {
24         delete pimpl_;
25 }
26
27
28 Dialogs::Impl::Impl(LyXView & lv, Dialogs & d)
29         : aboutlyx(lv, d),
30           changes(lv, d),
31           character(lv, d),
32           document(lv, d),
33           file(lv, d),
34           floats(lv, d),
35           graphics(lv, d),
36           logfile(lv, d),
37           minipage(lv, d),
38           paragraph(lv, d),
39           prefs(lv, d),
40           print(lv, d),
41           search(lv, d),
42           sendto(lv, d),
43           spellchecker(lv, d),
44           tabularcreate(lv, d),
45           tabular(lv, d),
46           texinfo(lv, d),
47
48 #ifdef HAVE_LIBAIKSAURUS
49           thesaurus(lv, d),
50 #endif
51
52           vclogfile(lv, d),
53           wrap(lv, d)
54 {}