]> git.lyx.org Git - features.git/blob - src/frontends/qt2/Dialogs.C
remove preamble dialog from the qt frontend
[features.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           document(lv, d),
53           error(lv, d),
54           ert(lv, d),
55           external(lv, d),
56           file(lv, d),
57           floats(lv, d),
58           graphics(lv, d),
59           include(lv, d),
60           index(lv, d),
61           logfile(lv, d),
62           minipage(lv, d),
63           paragraph(lv, d),
64           prefs(lv, d),
65           print(lv, d),
66           ref(lv, d),
67           search(lv, d),
68           sendto(lv, d),
69           spellchecker(lv, d),
70           tabularcreate(lv, d),
71           tabular(lv, d),
72           texinfo(lv, d),
73
74 #ifdef HAVE_LIBAIKSAURUS
75           thesaurus(lv, d),
76 #endif
77
78           toc(lv, d),
79           url(lv, d),
80           vclogfile(lv, d),
81           wrap(lv, d)
82 {}