]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/LyXView.h
Remove unused UI file.
[lyx.git] / src / frontends / LyXView.h
index 3c69aef12957a99e69c1df97d044887478c92dd9..6813d759bd6f6bc7b2158241cb9ee7f8e9436c39 100644 (file)
@@ -44,15 +44,8 @@ namespace frontend {
 class LyXView
 {
 public:
-       ///
-       LyXView() {}
        ///
        virtual ~LyXView() {}
-       ///
-       virtual int id() const = 0;
-
-       /// show busy cursor
-       virtual void setBusy(bool) = 0;
 
        //@{ generic accessor functions
 
@@ -62,21 +55,6 @@ public:
        /// \return the current document buffer view.
        virtual BufferView * documentBufferView() = 0;
        virtual BufferView const * documentBufferView() const = 0;
-
-       /// set a buffer to the current workarea.
-       virtual void setBuffer(Buffer * b) = 0; ///< \c Buffer to set.
-       ///
-       virtual bool hasFocus() const = 0;
-
-       /// load a document into the current workarea.
-       virtual Buffer * loadDocument(
-               support::FileName const &  name, ///< File to load.
-               bool tolastfiles = true  ///< append to the "Open recent" menu?
-               ) = 0;
-       ///
-       virtual void newDocument(std::string const & filename,
-               bool fromTemplate) = 0;
-
        //@}
 
        /// display a message in the view
@@ -97,11 +75,6 @@ public:
        /// even though the cursor moved. The update flags of \c cur might
        /// be changed.
        virtual void updateCompletion(Cursor & cur, bool start, bool keep) = 0;
-
-private:
-       /// noncopyable
-       LyXView(LyXView const &);
-       void operator=(LyXView const &);
 };
 
 } // namespace frontend