]> git.lyx.org Git - lyx.git/blob - src/frontends/Dialogs.h
c9210e97d71af00e5c1ac07729cb80cf43fee59c
[lyx.git] / src / frontends / Dialogs.h
1 // -*- C++ -*-
2 /* Dialogs.h
3  * Container of all dialogs and signals a LyXView needs or uses to access them.
4  * Author: Allan Rae <rae@lyx.org>
5  * This file is part of
6  * ======================================================
7  *
8  *           LyX, The Document Processor
9  *
10  *           Copyright 1995 Matthias Ettrich
11  *           Copyright 1995-2001 The LyX Team.
12  *
13  *           This file Copyright 2000
14  *           Allan Rae
15  * ======================================================
16  */
17
18 #ifndef DIALOGS_H
19 #define DIALOGS_H
20
21 #include <vector>
22 #include <sigc++/signal_system.h>
23
24 #include "LString.h"
25 #include <boost/utility.hpp>
26 #include <boost/smart_ptr.hpp>
27
28 #ifdef __GNUG__
29 #pragma interface
30 #endif
31
32 #include "DialogBase.h"
33
34 // Maybe this should be a UIFunc modelled on LyXFunc
35 class LyXView;
36
37 class InsetGraphics;
38 class InsetBibKey;
39 class InsetBibtex;
40 class InsetError;
41 class InsetExternal;
42 class InsetInclude;
43 class InsetInfo;
44 class InsetTabular;
45 class InsetCommand;
46 class InsetMinipage;
47 class Paragraph;
48
49 /** Container of all dialogs and signals a LyXView needs or uses to access them
50     The list of dialog signals isn't comprehensive but should be a good guide
51     for any future additions.  Remember don't go overboard -- think minimal.
52  */
53 class Dialogs : boost::noncopyable
54 {
55 public:
56         ///
57         typedef boost::shared_ptr<DialogBase> db_ptr;
58         /**@name Constructor */
59         //@{
60         ///
61         Dialogs(LyXView *);
62         //@}
63
64         /** Redraw all visible dialogs because, for example, the GUI colours
65             have been re-mapped. */
66         static SigC::Signal0<void> redrawGUI;
67
68         /**@name Global Hide and Update Signals */
69         //@{
70         /// Hide all visible dialogs
71         SigC::Signal0<void> hideAll;
72         
73         /// Hide any dialogs that require a buffer for them to operate
74         SigC::Signal0<void> hideBufferDependent;
75         
76         /** Update visible, buffer-dependent dialogs
77             If the bool is true then a buffer change has occurred
78             else its still the same buffer.
79          */
80         SigC::Signal1<void, bool> updateBufferDependent;
81         //@}
82
83         /**@name Dialog Access Signals.
84            Put into some sort of alphabetical order */
85         //@{
86         /// Do we really have to push this?
87         SigC::Signal1<void, std::vector<string> const &> SetDocumentClassChoice;
88         ///
89         SigC::Signal0<void> showAboutlyx;
90         /// show the key and label of a bibliography entry
91         SigC::Signal1<void, InsetCommand *> showBibitem;
92         /// show the bibtex dialog
93         SigC::Signal1<void, InsetCommand *> showBibtex;
94         ///
95         SigC::Signal0<void> showCharacter;
96         /// connected to the character dialog also
97         SigC::Signal0<void> setUserFreeFont;
98         ///
99         SigC::Signal1<void, InsetCommand *> showCitation;
100         ///
101         SigC::Signal1<void, string const &> createCitation;
102         ///
103         SigC::Signal0<void> showDocument;
104         ///
105         SigC::Signal1<void, InsetError *> showError;
106         /// show the external inset dialog
107         SigC::Signal1<void, InsetExternal *> showExternal; 
108         ///
109         SigC::Signal1<void, InsetGraphics *> showGraphics;
110         /// show the details of a LyX file include inset
111         SigC::Signal1<void, InsetInclude *> showInclude;
112         ///
113         SigC::Signal1<void, InsetCommand *> showIndex;
114         ///
115         SigC::Signal1<void, string const &> createIndex;
116         ///
117         SigC::Signal1<void, InsetInfo *> showInfo;
118         /// show the LaTeX log or build file
119         SigC::Signal0<void> showLogFile;
120         /// display the top-level maths panel
121         SigC::Signal0<void> showMathPanel;
122         ///
123         SigC::Signal1<void, InsetMinipage *> showMinipage;
124         ///
125         SigC::Signal1<void, InsetMinipage *> updateMinipage;
126         ///
127         SigC::Signal0<void> showParagraph;
128         ///
129         SigC::Signal0<void> updateParagraph;
130         ///
131         SigC::Signal0<void> showPreamble;
132         ///
133         SigC::Signal0<void> showPreferences;
134         ///
135         SigC::Signal0<void> showPrint;
136         ///
137         SigC::Signal1<void, InsetCommand *> showRef;
138         ///
139         SigC::Signal1<void, string const &> createRef;
140         ///
141         SigC::Signal0<void> showSearch;
142         /// bring up the spellchecker
143         SigC::Signal0<void> showSpellchecker;
144         /// bring up the spellchecker tab in preferences
145         SigC::Signal0<void> showSpellcheckerPreferences;
146         /// pop up the splash
147         SigC::Signal0<void> showSplash;
148         /// destroy the splash dialog
149         void destroySplash();
150         ///
151         SigC::Signal1<void, InsetTabular *> showTabular;
152         ///
153         SigC::Signal1<void, InsetTabular *> updateTabular;
154         ///
155         SigC::Signal0<void> showTabularCreate;
156         /// show the thesaurus dialog
157         SigC::Signal1<void, string const &> showThesaurus; 
158         ///
159         SigC::Signal1<void, InsetCommand *> showTOC;
160         ///
161         SigC::Signal1<void, string const &> createTOC;
162         ///
163         SigC::Signal1<void, InsetCommand *> showUrl;
164         ///
165         SigC::Signal1<void, string const &> createUrl;
166         /// show the version control log
167         SigC::Signal0<void> showVCLogFile;
168         //@}
169 private:
170         /// Add a dialog to the vector of dialogs.
171         void add(DialogBase *);
172         /// the dialogs being managed
173         std::vector<db_ptr> dialogs_;
174         /// the splash dialog
175         boost::scoped_ptr<DialogBase> splash_;
176 };
177
178 #endif