]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Dialogs.h
Minipage is no more (long live the box inset)
[lyx.git] / src / frontends / Dialogs.h
index ca96da9be68ed7842d0dbb084371d6d2fcdbe60e..a7688055a28faa24c3ffdda7de4f2199446a9494 100644 (file)
@@ -5,38 +5,19 @@
  * Licence details can be found in the file COPYING.
  * \author Allan Rae
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef DIALOGS_H
 #define DIALOGS_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-#include "LString.h"
-
 #include <boost/utility.hpp>
-#include <boost/scoped_ptr.hpp>
 #include <boost/signals/signal0.hpp>
 #include <boost/signals/signal1.hpp>
 
+class Dialog;
+class InsetBase;
 class LyXView;
-class InsetBibKey;
-class InsetBibtex;
-class InsetCommand;
-class InsetError;
-class InsetERT;
-class InsetExternal;
-class InsetFloat;
-class InsetWrap;
-class InsetGraphics;
-class InsetInclude;
-class InsetInfo;
-class InsetMinipage;
-class Paragraph;
-class InsetTabular;
 
 /** 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
@@ -47,7 +28,7 @@ class Dialogs : boost::noncopyable
 public:
        ///
        Dialogs(LyXView &);
-       /// Define an empty d-tor out-of-line to keep boost::scoped_ptr happy.
+       ///
        ~Dialogs();
 
        /** Redraw all visible dialogs because, for example, the GUI colours
@@ -64,121 +45,110 @@ public:
        /// Are the tooltips on or off?
        static bool tooltipsEnabled();
 
-       /**@name Global Hide and Update Signals */
+       /// Signals slated to go
        //@{
-       /// Hide all visible dialogs
-       boost::signal0<void> hideAll;
+       boost::signal0<void> hideAllSignal;
+       boost::signal0<void> hideBufferDependentSignal;
+       boost::signal1<void, bool> updateBufferDependentSignal;
+       //@}
 
+       /// Hide all visible dialogs
+       void hideAll() const;
        /// Hide any dialogs that require a buffer for them to operate
-       boost::signal0<void> hideBufferDependent;
-
+       void hideBufferDependent() const;
        /** Update visible, buffer-dependent dialogs
            If the bool is true then a buffer change has occurred
            else its still the same buffer.
         */
-       boost::signal1<void, bool> updateBufferDependent;
-       //@}
+       void updateBufferDependent(bool) const ;
 
        /**@name Dialog Access Signals.
           Put into some sort of alphabetical order */
        //@{
        ///
-       void showAboutlyx();
-       /// show the key and label of a bibliography entry
-       void showBibitem(InsetCommand * ic);
-       /// show the bibtex dialog
-       void showBibtex(InsetCommand * ic);
-       ///
-       void showCharacter();
-       /// connected to the character dialog also
-       void setUserFreeFont();
-       ///
-       void showCitation(InsetCommand *);
-       ///
-       void createCitation(string const &);
-       ///
        void showDocument();
-       ///
-       void showError(InsetError *);
-       ///
-       void showERT(InsetERT *);
-       ///
-       void updateERT(InsetERT *);
-       /// show the external inset dialog
-       void showExternal(InsetExternal *);
-       /// show the contents of a file.
-       void showFile(string const &);
-       ///
-       void showFloat(InsetFloat *);
-       ///
-       void showWrap(InsetWrap *);
        /// show all forked child processes
        void showForks();
        ///
-       void showGraphics(InsetGraphics *);
-       /// show the details of a LyX file include inset
-       void showInclude(InsetInclude *);
-       ///
-       void showIndex(InsetCommand *);
-       ///
-       void createIndex();
-       /// show the LaTeX log or build file
-       void showLogFile();
-       /// display the top-level maths panel
-       void showMathPanel();
-       /// show the merge changes dialog
-       void showMergeChanges();
-       ///
-       void showMinipage(InsetMinipage *);
-       ///
-       void updateMinipage(InsetMinipage *);
-       ///
-       void showParagraph();
-       ///
-       void updateParagraph();
-       ///
        void showPreamble();
        ///
        void showPreferences();
        ///
        void showPrint();
        ///
-       void showRef(InsetCommand *);
-       ///
-       void createRef(string const &);
-       ///
        void showSearch();
        ///
        void showSendto();
        /// bring up the spellchecker
        void showSpellchecker();
+       //@}
+
+       /** \param name == "about" etc; an identifier used to
+           launch a particular dialog.
+           \param data is a string encoding of the data used to populate
+           the dialog. Several of these dialogs do not need any data,
+           so it defaults to string().
+       */
+       void show(std::string const & name, std::string const & data = std::string());
+
+       /** \param name == "bibtex", "citation" etc; an identifier used to
+           launch a particular dialog.
+           \param data is a string representation of the Inset contents.
+           It is often little more than the output from Inset::write.
+           It is passed to, and parsed by, the frontend dialog.
+           \param inset is _not_ passed to the frontend dialog.
+           It is stored internally and used by the kernel to ascertain
+           what to do with the FuncRequest dispatched from the frontend
+           dialog on 'Apply'; should it be used to create a new inset at
+           the current cursor position or modify an existing, 'open' inset?
+       */
+       void show(std::string const & name, std::string const & data, InsetBase * inset);
+
+       /** \param name == "citation", "bibtex" etc; an identifier used
+           to update the contents of a particular dialog with \param data .
+           See the comments to 'show', above.
+       */
+       void update(std::string const & name, std::string const & data);
+
+       /// is the dialog currently visible?
+       bool visible(std::string const & name) const;
+
+       /** All Dialogs of the given \param name will be closed if they are
+           connected to the given \param inset.
+       */
+       static void hide(std::string const & name, InsetBase * inset);
        ///
-       void showTabular(InsetTabular *);
+       void disconnect(std::string const & name);
        ///
-       void updateTabular(InsetTabular *);
+       InsetBase * getOpenInset(std::string const & name) const;
+private:
        ///
-       void showTabularCreate();
-       /// show the TexInfo
-       void showTexinfo();
-       /// show the thesaurus dialog
-       void showThesaurus(string const &);
+       void hideSlot(std::string const & name, InsetBase * inset);
        ///
-       void showTOC(InsetCommand *);
+       void redraw() const;
        ///
-       void createTOC(string const &);
+       bool isValidName(std::string const & name) const;
        ///
-       void showUrl(InsetCommand *);
+       Dialog * find_or_build(std::string const & name);
        ///
-       void createUrl(string const &);
-       /// show the version control log
-       void showVCLogFile();
-       //@}
+       Dialog * build(std::string const & name);
 
-private:
-       /// Use the Pimpl idiom to hide the internals.
+       ///
+       LyXView & lyxview_;
+       ///
+       std::map<std::string, InsetBase *> open_insets_;
+
+       ///
+       typedef boost::shared_ptr<Dialog> DialogPtr;
+       ///
+       std::map<std::string, DialogPtr> dialogs_;
+
+       /// the stuff below is slated to go...
+       void init_pimpl();
+       ///
        class Impl;
-       /// The pointer never changes although *pimpl_'s contents may.
-       boost::scoped_ptr<Impl> const pimpl_;
+       ///
+       Impl * pimpl_;
 };
 
 #endif