]> git.lyx.org Git - features.git/blob - src/frontends/kde/Dialogs.C
606720a2181aee61a4dc8326ae975eefc73d1488
[features.git] / src / frontends / kde / Dialogs.C
1 /**
2  * \file Dialogs.C
3  * Copyright 2001 the LyX Team
4  * Read the file COPYING
5  *
6  * \author Jürgen Vigna
7  * \author John Levon
8  */
9
10 #include <config.h>
11 #include FORMS_H_LOCATION
12
13 #include "Dialogs.h"
14
15 #include "ControlBibitem.h"
16 #include "ControlCitation.h"
17 #include "kdeBC.h"
18
19 #include "FormBibitem.h"
20 #include "FormBibtex.h"
21 #include "FormCitation.h"
22 #include "citationdlg.h"
23 #include "FormCopyright.h"
24 #include "FormCredits.h"
25 #include "FormDocument.h"
26 #include "FormError.h"
27 #include "FormGraphics.h"
28 #include "FormInclude.h"
29 #include "FormIndex.h"
30 #include "FormLog.h"
31 #include "FormParagraph.h"
32 #include "FormPreamble.h"
33 #include "FormPreferences.h"
34 #include "FormPrint.h"
35 #include "FormRef.h"
36 #include "FormSplash.h"
37 #include "FormTabular.h"
38 #include "FormTabularCreate.h"
39 #include "FormToc.h"
40 #include "FormUrl.h"
41 #include "FormVCLog.h"
42
43 #ifdef __GNUG__
44 #pragma implementation
45 #endif
46
47 /* We don't implement this, but it's needed whilst we
48  * still rely on xforms
49  */
50 Signal0<void> Dialogs::redrawGUI;
51
52 Dialogs::Dialogs(LyXView * lv)
53 {
54         splash_.reset(new FormSplash(lv, this));
55
56         add(new GUIBibitem<FormBibitem, xformsBC>(*lv, *this));
57         add(new GUICitation<FormCitation, xformsBC>(*lv, *this));
58
59         add(new FormBibtex(lv, this));
60         add(new FormCharacter(lv, this));
61         add(new FormCopyright(lv, this));
62         add(new FormCredits(lv, this));
63         add(new FormDocument(lv, this));
64         add(new FormError(lv, this));
65         add(new FormGraphics(lv, this));
66         add(new FormInclude(lv, this));
67         add(new FormIndex(lv, this));
68         add(new FormLog(lv, this));
69         add(new FormParagraph(lv, this));
70         add(new FormPreamble(lv, this));
71         add(new FormPreferences(lv, this));
72         add(new FormPrint(lv, this));
73         add(new FormRef(lv, this));
74         add(new FormSearch(lv, this));
75         add(new FormTabular(lv, this));
76         add(new FormTabularCreate(lv, this));
77         add(new FormToc(lv, this));
78         add(new FormUrl(lv, this));
79         add(new FormVCLog(lv, this));
80
81         // reduce the number of connections needed in
82         // dialogs by a simple connection here.
83         hideAll.connect(hideBufferDependent.slot());
84 }