]> git.lyx.org Git - features.git/blobdiff - src/frontends/LyXView.h
Replace LString.h with support/std_string.h,
[features.git] / src / frontends / LyXView.h
index 450df75be67c0442c92d8c616345d453d6dd7b5c..4c9ee9051a960611e28a880868a7b8baa27cfdcf 100644 (file)
@@ -7,19 +7,14 @@
  * \author Lars Gullik Bjønnes
  * \author John Levon
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef LYXVIEW_H
 #define LYXVIEW_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-#include "LString.h"
-
-#include "support/types.h"
+#include "support/std_string.h"
 
 #include <boost/utility.hpp>
 #include <boost/scoped_ptr.hpp>
@@ -67,10 +62,8 @@ public:
         */
        void init();
 
-       /// start modal operation
-       virtual void prohibitInput() const = 0;
-       /// end modal operation
-       virtual void allowInput() const = 0;
+       /// show busy cursor
+       virtual void busy(bool) const = 0;
 
        //@{ generic accessor functions
 
@@ -129,6 +122,9 @@ public:
        /// display a message in the view
        virtual void message(string const &) = 0;
 
+       /// clear any temporary message and replace with current status
+       virtual void clearMessage() = 0;
+
        /// updates the title of the window
        void updateWindowTitle();