]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Dialogs.h
* src/frontends/qt4/GuiSelection.C
[lyx.git] / src / frontends / Dialogs.h
index d5aa8af54deaabb496bf08015d6a2ca629cef6c4..f91ea7efd9945ced09ea28183a9c962517a8a2a9 100644 (file)
@@ -3,7 +3,9 @@
  * \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.
  */
 #ifndef DIALOGS_H
 #define DIALOGS_H
 
+#include <boost/signal.hpp>
 #include <boost/utility.hpp>
-#include <boost/signals/signal0.hpp>
 
-class Dialog;
+#include <map>
+
+namespace lyx {
+
 class InsetBase;
 class LyXView;
 
+namespace frontend { class Dialog; }
+
 /** Container of all dialogs.
  */
-class Dialogs : boost::noncopyable
-{
+class Dialogs : boost::noncopyable {
 public:
        ///
        Dialogs(LyXView &);
 
-       /** 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();
@@ -96,9 +100,9 @@ private:
        ///
        bool isValidName(std::string const & name) const;
        ///
-       Dialog * find_or_build(std::string const & name);
+       frontend::Dialog * find_or_build(std::string const & name);
        ///
-       typedef boost::shared_ptr<Dialog> DialogPtr;
+       typedef boost::shared_ptr<frontend::Dialog> DialogPtr;
        ///
        DialogPtr build(std::string const & name);
 
@@ -109,6 +113,11 @@ private:
 
        ///
        std::map<std::string, DialogPtr> dialogs_;
+
+       /// flag against a race condition due to multiclicks in Qt frontend, see bug #1119
+       bool in_show_;
 };
 
+} // namespace lyx
+
 #endif