]> git.lyx.org Git - lyx.git/blob - src/frontends/Dialogs.h
ws change
[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 InsetFloat;
48 class InsetERT;
49 class Paragraph;
50
51 /** Container of all dialogs and signals a LyXView needs or uses to access them
52     The list of dialog signals isn't comprehensive but should be a good guide
53     for any future additions.  Remember don't go overboard -- think minimal.
54  */
55 class Dialogs : boost::noncopyable
56 {
57 public:
58         ///
59         typedef boost::shared_ptr<DialogBase> db_ptr;
60         /**@name Constructor */
61         //@{
62         ///
63         Dialogs(LyXView *);
64         //@}
65
66         /** Redraw all visible dialogs because, for example, the GUI colours
67             have been re-mapped. */
68         static SigC::Signal0<void> redrawGUI;
69
70         /// Toggle tooltips on/off in all dialogs.
71         static SigC::Signal0<void> toggleTooltips;
72
73         /// Are the tooltips on or off?
74         static bool tooltipsEnabled();
75
76         /**@name Global Hide and Update Signals */
77         //@{
78         /// Hide all visible dialogs
79         SigC::Signal0<void> hideAll;
80
81         /// Hide any dialogs that require a buffer for them to operate
82         SigC::Signal0<void> hideBufferDependent;
83
84         /** Update visible, buffer-dependent dialogs
85             If the bool is true then a buffer change has occurred
86             else its still the same buffer.
87          */
88         SigC::Signal1<void, bool> updateBufferDependent;
89         //@}
90
91         /**@name Dialog Access Signals.
92            Put into some sort of alphabetical order */
93         //@{
94         /// Do we really have to push this?
95         SigC::Signal1<void, std::vector<string> const &> SetDocumentClassChoice;
96         ///
97         SigC::Signal0<void> showAboutlyx;
98         /// show the key and label of a bibliography entry
99         SigC::Signal1<void, InsetCommand *> showBibitem;
100         /// show the bibtex dialog
101         SigC::Signal1<void, InsetCommand *> showBibtex;
102         ///
103         SigC::Signal0<void> showCharacter;
104         /// connected to the character dialog also
105         SigC::Signal0<void> setUserFreeFont;
106         ///
107         SigC::Signal1<void, InsetCommand *> showCitation;
108         ///
109         SigC::Signal1<void, string const &> createCitation;
110         ///
111         SigC::Signal0<void> showDocument;
112         ///
113         SigC::Signal1<void, InsetError *> showError;
114         /// show the external inset dialog
115         SigC::Signal1<void, InsetExternal *> showExternal;
116         /// show the contents of a file.
117         SigC::Signal1<void, string const &> showFile;
118         /// show all forked child processes
119         SigC::Signal0<void> showForks;
120         ///
121         SigC::Signal1<void, InsetGraphics *> showGraphics;
122         /// show the details of a LyX file include inset
123         SigC::Signal1<void, InsetInclude *> showInclude;
124         ///
125         SigC::Signal1<void, InsetCommand *> showIndex;
126         ///
127         SigC::Signal1<void, string const &> createIndex;
128         ///
129         SigC::Signal1<void, InsetInfo *> showInfo;
130         /// show the LaTeX log or build file
131         SigC::Signal0<void> showLogFile;
132         /// display the top-level maths panel
133         SigC::Signal0<void> showMathPanel;
134         ///
135         SigC::Signal1<void, InsetMinipage *> showMinipage;
136         ///
137         SigC::Signal1<void, InsetMinipage *> updateMinipage;
138         ///
139         SigC::Signal1<void, InsetERT *> showERT;
140         ///
141         SigC::Signal1<void, InsetERT *> updateERT;
142         ///
143         SigC::Signal1<void, InsetFloat *> showFloat;
144         ///
145         SigC::Signal0<void> showParagraph;
146         ///
147         SigC::Signal0<void> updateParagraph;
148         ///
149         SigC::Signal0<void> showPreamble;
150         ///
151         SigC::Signal0<void> showPreferences;
152         ///
153         SigC::Signal0<void> showPrint;
154         ///
155         SigC::Signal1<void, InsetCommand *> showRef;
156         ///
157         SigC::Signal1<void, string const &> createRef;
158         ///
159         SigC::Signal0<void> showSearch;
160         ///
161         SigC::Signal0<void> showSendto;
162         /// bring up the spellchecker
163         SigC::Signal0<void> showSpellchecker;
164         /// bring up the spellchecker tab in preferences
165         SigC::Signal0<void> showSpellcheckerPreferences;
166         ///
167         SigC::Signal1<void, InsetTabular *> showTabular;
168         ///
169         SigC::Signal1<void, InsetTabular *> updateTabular;
170         ///
171         SigC::Signal0<void> showTabularCreate;
172         /// show the TexInfo
173         SigC::Signal0<void> showTexinfo;
174         /// show the thesaurus dialog
175         SigC::Signal1<void, string const &> showThesaurus;
176         ///
177         SigC::Signal1<void, InsetCommand *> showTOC;
178         ///
179         SigC::Signal1<void, string const &> createTOC;
180         ///
181         SigC::Signal1<void, InsetCommand *> showUrl;
182         ///
183         SigC::Signal1<void, string const &> createUrl;
184         /// show the version control log
185         SigC::Signal0<void> showVCLogFile;
186         //@}
187 private:
188         /// Add a dialog to the vector of dialogs.
189         void add(DialogBase *);
190         /// the dialogs being managed
191         std::vector<db_ptr> dialogs_;
192 };
193
194 #endif