]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/Dialogs.C
Some string(widget->text()) fixes. Weirdness
[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           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           preamble(lv, d),
65           prefs(lv, d),
66           print(lv, d),
67           ref(lv, d),
68           search(lv, d),
69           sendto(lv, d),
70           spellchecker(lv, d),
71           tabularcreate(lv, d),
72           tabular(lv, d),
73           texinfo(lv, d),
74
75 #ifdef HAVE_LIBAIKSAURUS
76           thesaurus(lv, d),
77 #endif
78
79           toc(lv, d),
80           url(lv, d),
81           vclogfile(lv, d),
82           wrap(lv, d)
83 {}