]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Dialogs.h
Most translations should now work.
[lyx.git] / src / frontends / Dialogs.h
index 49d414d4f551a95b896797843ae5d4e50ad2d78d..972c250955d9abdf3a73bfb0179b6c13fcdaaa40 100644 (file)
@@ -45,6 +45,7 @@ class InsetTabular;
 class InsetCommand;
 class InsetMinipage;
 class InsetFloat;
+class InsetERT;
 class Paragraph;
 
 /** Container of all dialogs and signals a LyXView needs or uses to access them
@@ -66,14 +67,20 @@ public:
            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 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.
@@ -105,7 +112,11 @@ public:
        ///
        SigC::Signal1<void, InsetError *> showError;
        /// show the external inset dialog
-       SigC::Signal1<void, InsetExternal *> showExternal; 
+       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;
        ///
        SigC::Signal1<void, InsetGraphics *> showGraphics;
        /// show the details of a LyX file include inset
@@ -118,13 +129,17 @@ public:
        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;
+       /// display the top-level maths panel
+       SigC::Signal0<void> showMathPanel;
        ///
        SigC::Signal1<void, InsetMinipage *> showMinipage;
        ///
        SigC::Signal1<void, InsetMinipage *> updateMinipage;
        ///
+       SigC::Signal1<void, InsetERT *> showERT;
+       ///
+       SigC::Signal1<void, InsetERT *> updateERT;
+       ///
        SigC::Signal1<void, InsetFloat *> showFloat;
        ///
        SigC::Signal0<void> showParagraph;
@@ -142,22 +157,22 @@ public:
        SigC::Signal1<void, string const &> createRef;
        ///
        SigC::Signal0<void> showSearch;
+       ///
+       SigC::Signal0<void> showSendto;
        /// bring up the spellchecker
        SigC::Signal0<void> showSpellchecker;
        /// bring up the spellchecker tab in preferences
        SigC::Signal0<void> showSpellcheckerPreferences;
-       /// pop up the splash
-       SigC::Signal0<void> showSplash;
-       /// destroy the splash dialog
-       void destroySplash();
        ///
        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, string const &> showThesaurus;
        ///
        SigC::Signal1<void, InsetCommand *> showTOC;
        ///
@@ -174,8 +189,6 @@ private:
        void add(DialogBase *);
        /// the dialogs being managed
        std::vector<db_ptr> dialogs_;
-       /// the splash dialog
-       boost::scoped_ptr<DialogBase> splash_;
 };
 
 #endif