]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Dialogs.h
merge controllers/Makefile.am and controllers/tests/Makefile.am
[lyx.git] / src / frontends / Dialogs.h
index 73e90d5c1908fa9b3b530accf8eea214d1037489..f179ec56d71e0b3fddc5dc7689e3c52a9bc8fd4b 100644 (file)
@@ -3,63 +3,47 @@
  * \file Dialogs.h
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
+ *
  * \author Allan Rae
+ * \author Angus Leeming
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef DIALOGS_H
 #define DIALOGS_H
 
+#include <boost/signal.hpp>
+#include <boost/utility.hpp>
 
-#include "LString.h"
+#include <map>
 
-#include <boost/utility.hpp>
-#include <boost/scoped_ptr.hpp>
-#include <boost/signals/signal0.hpp>
-#include <boost/signals/signal1.hpp>
+namespace lyx {
 
-class Dialog;
-class InsetBase;
+class Inset;
 class LyXView;
 
-class InsetInfo;
-class Paragraph;
-class InsetTabular;
+namespace frontend { class Dialog; }
 
-/** 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.
+/** Container of all dialogs.
  */
-class Dialogs : boost::noncopyable
-{
+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
-        *  have been re-mapped.
+       /** Check the status of all visible dialogs and disable or reenable
+        *  them as appropriate.
         *
-        *  Note that static boost signals break some compilers, so we return a
-        *  reference to some hidden magic ;-)
+        *  Disabling is needed for example when a dialog is open and the
+        *  cursor moves to a position where the corresponding inset is not
+        *  allowed.
         */
-       static boost::signal0<void> & redrawGUI();
-
-       /// Toggle tooltips on/off in all dialogs.
-       static void toggleTooltips();
+       void checkStatus();
 
        /// Are the tooltips on or off?
        static bool tooltipsEnabled();
 
-       /// Signals slated to go
-       //@{
-       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
@@ -70,101 +54,71 @@ public:
         */
        void updateBufferDependent(bool) const ;
 
-       /**@name Dialog Access Signals.
-          Put into some sort of alphabetical order */
-       //@{
-       ///
-       void showAboutlyx();
-       ///
-       void showCharacter();
-       /// connected to the character dialog also
-       void setUserFreeFont();
-       ///
-       void showDocument();
-       /// show the contents of a file.
-       void showFile(string const &);
-       /// show all forked child processes
-       void showForks();
-       /// 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 showParagraph();
-       ///
-       void updateParagraph();
-       ///
-       void showPreamble();
-       ///
-       void showPreferences();
-       ///
-       void showPrint();
-       ///
-       void showSearch();
-       ///
-       void showSendto();
-       /// bring up the spellchecker
-       void showSpellchecker();
-       ///
-       void showTabular(InsetTabular *);
-       ///
-       void updateTabular(InsetTabular *);
-       ///
-       void showTabularCreate();
-       /// show the TexInfo
-       void showTexinfo();
-       /// show the thesaurus dialog
-       void showThesaurus(string const &);
-       /// show the version control log
-       void showVCLogFile();
-       //@}
-
-       /** name == "bibtex", "citation" etc
-           data is generated by the Inset::write method, to be read by the
-           Inset::read method in the frontends.
-           inset is stored. On a subsequent Apply from the frontends, the
-           stored inset will be modified. If no inset is stored, then a
-           new one will be created at the current cursor position.
-        */
-       void show(string const & name, string const & data, InsetBase * inset);
-       /** name == "citation", "bibtex" etc.
-           Update the contents of the dialog.
-        */
-       void update(string const & name, string const & data);
-       ///
-       void Dialogs::hide(string const & name);
-       ///
-       void disconnect(string const & name);
-       ///
-       InsetBase * getOpenInset(string const & name) const;
+       /** \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, Inset * 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.
+       */
+       void hide(std::string const & name, Inset * inset);
+       ///
+       void disconnect(std::string const & name);
+       ///
+       Inset * getOpenInset(std::string const & name) const;
 private:
        ///
        void redraw() const;
        ///
-       bool isValidName(string const & name) const;
+       bool isValidName(std::string const & name) const;
        ///
-       Dialog * find(string const & name);
+       frontend::Dialog * find_or_build(std::string const & name);
        ///
-       Dialog * build(string const & name);
+       typedef boost::shared_ptr<frontend::Dialog> DialogPtr;
+       ///
+       DialogPtr build(std::string const & name);
 
        ///
        LyXView & lyxview_;
        ///
-       std::map<string, InsetBase *> open_insets_;
+       std::map<std::string, Inset *> open_insets_;
 
        ///
-       typedef boost::shared_ptr<Dialog> DialogPtr;
-       ///
-       std::map<string, DialogPtr> dialogs_;
+       std::map<std::string, DialogPtr> dialogs_;
+
+       /// flag against a race condition due to multiclicks in Qt frontend, see bug #1119
+       bool in_show_;
 
-       /// the stuff below is slated to go...
-       void init_pimpl();
-       ///
-       class Impl;
        ///
-       Impl * pimpl_;
+       boost::signals::connection connection_;
 };
 
+} // namespace lyx
+
 #endif