]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/Dialogs.C
Juergen's wrap dialog for Qt
[lyx.git] / src / frontends / qt2 / Dialogs.C
1 /**
2  * \file qt2/Dialogs.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 #ifdef __GNUG__
16 #pragma implementation
17 #endif
18
19 #include "Dialogs_impl.h"
20
21
22 Dialogs::Dialogs(LyXView & lv)
23         : pimpl_(new Impl(lv, *this))
24 {
25         // reduce the number of connections needed in
26         // dialogs by a simple connection here.
27         hideAll.connect(hideBufferDependent);
28 }
29
30
31 Dialogs::~Dialogs()
32 {}
33
34
35 void Dialogs::toggleTooltips()
36 {}
37
38
39 /// Are the tooltips on or off?
40 bool Dialogs::tooltipsEnabled()
41 {
42         return false;
43 }
44
45
46 Dialogs::Impl::Impl(LyXView & lv, Dialogs & d)
47         : aboutlyx(lv, d),
48           bibitem(lv, d),
49           bibtex(lv, d),
50           character(lv, d),
51           citation(lv, d),
52           error(lv, d),
53           ert(lv, d),
54           external(lv, d),
55           file(lv, d),
56           floats(lv, d),
57           graphics(lv, d),
58           include(lv, d),
59           index(lv, d),
60           logfile(lv, d),
61           minipage(lv, d),
62           paragraph(lv, d),
63           preamble(lv, d),
64           print(lv, d),
65           ref(lv, d),
66           search(lv, d),
67           spellchecker(lv, d),
68           tabularcreate(lv, d),
69           texinfo(lv, d),
70
71 #ifdef HAVE_LIBAIKSAURUS
72           thesaurus(lv, d),
73 #endif
74
75           toc(lv, d),
76           url(lv, d),
77           vclogfile(lv, d),
78           wrap(lv, d)
79 {}