]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/LyXView.h
include sys/time.h
[lyx.git] / src / frontends / LyXView.h
index 2e2e431a219e18ef03aef528ba75672845d8ac67..e3318d2bb9b911f3d1ac4b485f6e786c03146b78 100644 (file)
@@ -1,19 +1,18 @@
 // -*- C++ -*-
 /**
  * \file LyXView.h
- * Copyright 1995-2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes <larsbj@lyx.org>
- * \author John Levon <moz@compsoc.man.ac.uk>
+ * \author Lars Gullik Bjønnes
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef LYXVIEW_H
 #define LYXVIEW_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "LString.h"
 
@@ -65,10 +64,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
 
@@ -120,7 +117,7 @@ public:
 
        /// focus the command buffer (minibuffer)
        boost::signal0<void> focus_command_buffer;
+
        /// view state string changed
        boost::signal0<void> view_state_changed;
 
@@ -135,7 +132,7 @@ public:
 
        /// dispatch to current BufferView
        void dispatch(FuncRequest const & req);
+
 protected:
        /// view of a buffer. Eventually there will be several.
        boost::shared_ptr<BufferView> bufferview_;