]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/Dialogs.C
Port the About LyX dialog to the Dialog scheme.
[lyx.git] / src / frontends / xforms / Dialogs.C
1 /**
2  * \file xforms/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         : changes(lv, d),
30           character(lv, d),
31           document(lv, d),
32           file(lv, d),
33           forks(lv, d),
34           logfile(lv, d),
35           mathpanel(lv, d),
36           paragraph(lv, d),
37           preamble(lv, d),
38           preferences(lv, d),
39           print(lv, d),
40           search(lv, d),
41           sendto(lv, d),
42           spellchecker(lv, d),
43           texinfo(lv, d),
44
45 #ifdef HAVE_LIBAIKSAURUS
46           thesaurus(lv, d),
47 #endif
48
49           vclogfile(lv, d)
50 {}