]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Dialogs.h
(John): translate dialog titles.
[lyx.git] / src / frontends / Dialogs.h
index 48e825da70a77a9f3e56193045f00e1cdac7fda5..972c250955d9abdf3a73bfb0179b6c13fcdaaa40 100644 (file)
@@ -8,7 +8,7 @@
  *           LyX, The Document Processor
  *
  *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2000 The LyX Team.
+ *           Copyright 1995-2001 The LyX Team.
  *
  *           This file Copyright 2000
  *           Allan Rae
 #include <sigc++/signal_system.h>
 
 #include "LString.h"
-#include "support/utility.hpp"
+#include <boost/utility.hpp>
+#include <boost/smart_ptr.hpp>
 
-class DialogBase;
+#ifdef __GNUG__
+#pragma interface
+#endif
+
+#include "DialogBase.h"
 
 // Maybe this should be a UIFunc modelled on LyXFunc
 class LyXView;
@@ -32,111 +37,158 @@ class LyXView;
 class InsetGraphics;
 class InsetBibKey;
 class InsetBibtex;
-class InsetCitation;
+class InsetError;
+class InsetExternal;
 class InsetInclude;
-class InsetIndex;
 class InsetInfo;
 class InsetTabular;
-class InsetUrl;
-
-using std::vector;
-
-#ifdef SIGC_CXX_NAMESPACES
-using SigC::Signal0;
-using SigC::Signal1;
-#endif
+class InsetCommand;
+class InsetMinipage;
+class InsetFloat;
+class InsetERT;
+class Paragraph;
 
 /** Container of all dialogs and signals a LyXView needs or uses to access them
     The list of dialog signals isn't comprehensive but should be a good guide
     for any future additions.  Remember don't go overboard -- think minimal.
  */
-class Dialogs : public noncopyable
+class Dialogs : boost::noncopyable
 {
 public:
-       /**@name Constructors and Deconstructors */
+       ///
+       typedef boost::shared_ptr<DialogBase> db_ptr;
+       /**@name Constructor */
        //@{
        ///
        Dialogs(LyXView *);
-       ///
-       ~Dialogs();
        //@}
-       
+
+       /** Redraw all visible dialogs because, for example, the GUI colours
+           have been re-mapped. */
+       static SigC::Signal0<void> redrawGUI;
+
+       /// Toggle tooltips on/off in all dialogs.
+       static SigC::Signal0<void> toggleTooltips;
+
+       /// Are the tooltips on or off?
+       static bool tooltipsEnabled();
+
        /**@name Global Hide and Update Signals */
        //@{
-       /// Hide all visible popups
-       Signal0<void> hideAll;
-       
-       /// Hide any popups that require a buffer for them to operate
-       Signal0<void> hideBufferDependent;
-       
-       /// Update visible, buffer-dependent popups
-       Signal0<void> updateBufferDependent;
+       /// Hide all visible dialogs
+       SigC::Signal0<void> hideAll;
+
+       /// Hide any dialogs that require a buffer for them to operate
+       SigC::Signal0<void> hideBufferDependent;
+
+       /** Update visible, buffer-dependent dialogs
+           If the bool is true then a buffer change has occurred
+           else its still the same buffer.
+        */
+       SigC::Signal1<void, bool> updateBufferDependent;
        //@}
 
-       /**@name Dialog Access Signals */
+       /**@name Dialog Access Signals.
+          Put into some sort of alphabetical order */
        //@{
-       /// Opens the Preamble Dialog.
-       Signal0<void> showPreamble;
+       /// Do we really have to push this?
+       SigC::Signal1<void, std::vector<string> const &> SetDocumentClassChoice;
        ///
-       Signal0<void> showLogFile;
+       SigC::Signal0<void> showAboutlyx;
+       /// show the key and label of a bibliography entry
+       SigC::Signal1<void, InsetCommand *> showBibitem;
+       /// show the bibtex dialog
+       SigC::Signal1<void, InsetCommand *> showBibtex;
        ///
-       Signal1<void, InsetTabular *> showTabular;
+       SigC::Signal0<void> showCharacter;
+       /// connected to the character dialog also
+       SigC::Signal0<void> setUserFreeFont;
        ///
-       Signal1<void, InsetTabular *> updateTabular;
+       SigC::Signal1<void, InsetCommand *> showCitation;
        ///
-       Signal1<void, InsetTabular *> hideTabular;
+       SigC::Signal1<void, string const &> createCitation;
        ///
-       Signal0<void> showTabularCreate;
+       SigC::Signal0<void> showDocument;
        ///
-       Signal0<void> showCharacter;
+       SigC::Signal1<void, InsetError *> showError;
+       /// show the external inset dialog
+       SigC::Signal1<void, InsetExternal *> showExternal;
+       /// show the contents of a file.
+       SigC::Signal1<void, string const &> showFile;
+       /// show all forked child processes
+       SigC::Signal0<void> showForks;
        ///
-       Signal0<void> updateCharacter;  // allow update as cursor moves
+       SigC::Signal1<void, InsetGraphics *> showGraphics;
+       /// show the details of a LyX file include inset
+       SigC::Signal1<void, InsetInclude *> showInclude;
        ///
-       Signal0<void> showParagraph;
+       SigC::Signal1<void, InsetCommand *> showIndex;
        ///
-       Signal0<void> showDocument;
-       /// Do we really have to push this?
-       Signal1<void, vector<string> const &> SetDocumentClassChoice;
+       SigC::Signal1<void, string const &> createIndex;
+       ///
+       SigC::Signal1<void, InsetInfo *> showInfo;
+       /// show the LaTeX log or build file
+       SigC::Signal0<void> showLogFile;
+       /// display the top-level maths panel
+       SigC::Signal0<void> showMathPanel;
        ///
-       Signal0<void> showPrint;
+       SigC::Signal1<void, InsetMinipage *> showMinipage;
        ///
-       Signal0<void> showCopyright;
+       SigC::Signal1<void, InsetMinipage *> updateMinipage;
        ///
-       Signal0<void> showCredits;
+       SigC::Signal1<void, InsetERT *> showERT;
        ///
-       Signal0<void> showPreferences;
+       SigC::Signal1<void, InsetERT *> updateERT;
        ///
-       Signal1<void, InsetGraphics *> showGraphics;
+       SigC::Signal1<void, InsetFloat *> showFloat;
        ///
-       Signal1<void, InsetInclude *> showInclude;
+       SigC::Signal0<void> showParagraph;
        ///
-       Signal1<void, InsetIndex *> showIndex;
+       SigC::Signal0<void> updateParagraph;
        ///
-       Signal1<void, InsetBibKey *> showBibkey;
+       SigC::Signal0<void> showPreamble;
        ///
-       Signal1<void, InsetCitation *> showCitation;
+       SigC::Signal0<void> showPreferences;
        ///
-       Signal1<void, string const &> createCitation;
+       SigC::Signal0<void> showPrint;
        ///
-       Signal1<void, InsetUrl *> showUrl;
+       SigC::Signal1<void, InsetCommand *> showRef;
        ///
-       Signal1<void, string const &> createUrl;
+       SigC::Signal1<void, string const &> createRef;
        ///
-       Signal1<void, InsetBibtex *> showBibtex;
+       SigC::Signal0<void> showSearch;
        ///
-       Signal1<void, InsetInfo *> showInfo;
+       SigC::Signal0<void> showSendto;
+       /// bring up the spellchecker
+       SigC::Signal0<void> showSpellchecker;
+       /// bring up the spellchecker tab in preferences
+       SigC::Signal0<void> showSpellcheckerPreferences;
+       ///
+       SigC::Signal1<void, InsetTabular *> showTabular;
+       ///
+       SigC::Signal1<void, InsetTabular *> updateTabular;
+       ///
+       SigC::Signal0<void> showTabularCreate;
+       /// show the TexInfo
+       SigC::Signal0<void> showTexinfo;
+       /// show the thesaurus dialog
+       SigC::Signal1<void, string const &> showThesaurus;
+       ///
+       SigC::Signal1<void, InsetCommand *> showTOC;
+       ///
+       SigC::Signal1<void, string const &> createTOC;
+       ///
+       SigC::Signal1<void, InsetCommand *> showUrl;
+       ///
+       SigC::Signal1<void, string const &> createUrl;
+       /// show the version control log
+       SigC::Signal0<void> showVCLogFile;
        //@}
 private:
-       ///
-       vector<DialogBase *> dialogs_;
+       /// Add a dialog to the vector of dialogs.
+       void add(DialogBase *);
+       /// the dialogs being managed
+       std::vector<db_ptr> dialogs_;
 };
 
 #endif
-
-
-
-
-
-
-
-