]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Dialogs.h
We don't currently use fork anywhere (or if we do it's by mistake!), so
[lyx.git] / src / frontends / Dialogs.h
index 39578b22d0a35d95e3882f5c940e7164c8ac5ab3..514aa69145653bafe3aedf23e830b68189b6b443 100644 (file)
@@ -44,6 +44,8 @@ class InsetInfo;
 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
@@ -105,6 +107,8 @@ public:
        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;
        ///
        SigC::Signal1<void, InsetGraphics *> showGraphics;
        /// show the details of a LyX file include inset
@@ -124,6 +128,12 @@ public:
        ///
        SigC::Signal1<void, InsetMinipage *> updateMinipage;
        ///
+       SigC::Signal1<void, InsetERT *> showERT;
+       ///
+       SigC::Signal1<void, InsetERT *> updateERT;
+       ///
+       SigC::Signal1<void, InsetFloat *> showFloat;
+       ///
        SigC::Signal0<void> showParagraph;
        ///
        SigC::Signal0<void> updateParagraph;
@@ -143,16 +153,16 @@ public:
        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, InsetCommand *> showTOC;
        ///
@@ -169,8 +179,6 @@ private:
        void add(DialogBase *);
        /// the dialogs being managed
        std::vector<db_ptr> dialogs_;
-       /// the splash dialog
-       boost::scoped_ptr<DialogBase> splash_;
 };
 
 #endif