]> 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 926dfaae0fbf5ced160e656c143450c67fc85828..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
@@ -85,6 +87,8 @@ public:
        //@{
        /// Do we really have to push this?
        SigC::Signal1<void, std::vector<string> const &> SetDocumentClassChoice;
+       ///
+       SigC::Signal0<void> showAboutlyx;
        /// show the key and label of a bibliography entry
        SigC::Signal1<void, InsetCommand *> showBibitem;
        /// show the bibtex dialog
@@ -98,15 +102,13 @@ public:
        ///
        SigC::Signal1<void, string const &> createCitation;
        ///
-       SigC::Signal0<void> showCopyright;
-       ///
-       SigC::Signal0<void> showCredits;
-       ///
        SigC::Signal0<void> showDocument;
        ///
        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
@@ -126,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;
@@ -141,16 +149,20 @@ public:
        SigC::Signal1<void, string const &> createRef;
        ///
        SigC::Signal0<void> showSearch;
-       /// pop up the splash
-       SigC::Signal0<void> showSplash;
-       /// destroy the splash dialog
-       void destroySplash();
+       /// 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;
        ///
@@ -167,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