]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiView.h
Complete the removal of the embedding stuff. Maybe. It's hard to be sure we got every...
[lyx.git] / src / frontends / qt4 / GuiView.h
index a1c05f6ecdebbf89f8c35a899ab2cb73d145f601..8bd547dbdd3a7bcebc9a4605b5c2bb7ef45e82b3 100644 (file)
@@ -15,6 +15,7 @@
 #ifndef GUI_VIEW_H
 #define GUI_VIEW_H
 
+#include "frontends/Delegates.h"
 #include "frontends/LyXView.h"
 
 #include "support/strfwd.h"
@@ -30,6 +31,7 @@ class QShowEvent;
 
 namespace lyx {
 
+class Cursor;
 class ToolbarInfo;
 
 namespace frontend {
@@ -38,6 +40,7 @@ class Dialog;
 class GuiLayoutBox;
 class GuiToolbar;
 class GuiWorkArea;
+class TabWorkArea;
 
 /**
  * GuiView - Qt4 implementation of LyXView
@@ -60,7 +63,6 @@ public:
 
        ///
        int id() const { return id_; }
-       void close();
        void setFocus();
        void setBusy(bool);
        /// returns true if this view has the focus.
@@ -86,6 +88,17 @@ public:
        Buffer const * buffer() const;
        /// set a buffer to the current workarea.
        void setBuffer(Buffer * b); ///< \c Buffer to set.
+       ///
+       bool closeBuffer();
+       /// load a document into the current workarea.
+       Buffer * loadDocument(support::FileName const &  name, ///< File to load.
+               bool tolastfiles = true);  ///< append to the "Open recent" menu?
+       ///
+       void openDocument(std::string const & filename);
+       ///
+       void importDocument(std::string const &);
+       ///
+       void newDocument(std::string const & filename, bool fromTemplate);
 
        /// GuiBufferDelegate.
        ///@{
@@ -96,8 +109,6 @@ public:
        
        /// called on timeout
        void autoSave();
-       ///
-       void updateEmbeddedFiles();
 
        /// \return the current buffer view.
        BufferView * view();
@@ -138,6 +149,8 @@ private Q_SLOTS:
 
        ///
        void on_currentWorkAreaChanged(GuiWorkArea *);
+       ///
+       void on_lastWorkAreaRemoved();
 
        /// slots to change the icon size
        void smallSizedIcons();
@@ -146,7 +159,7 @@ private Q_SLOTS:
 
 private:
        ///
-       void addTabWorkArea();
+       TabWorkArea * addTabWorkArea();
 
        /// connect to signals in the given BufferView
        void connectBufferView(BufferView & bv);
@@ -231,7 +244,40 @@ public:
        ///
        void disconnectDialog(std::string const & name);
 
+       ///
+       void updateCompletion(Cursor & cur, bool start, bool keep);
+
 private:
+       ///
+       void lfunUiToggle(FuncRequest const & cmd);
+
+       ///
+       void insertLyXFile(docstring const & fname);
+       ///
+       void insertPlaintextFile(docstring const & fname,
+               bool asParagraph);
+
+       /// Save a buffer as a new file. 
+       /**
+       Write a buffer to a new file name and rename the buffer
+    according to the new file name.
+
+    This function is e.g. used by menu callbacks and
+    LFUN_BUFFER_WRITE_AS.
+
+    If 'newname' is empty, the user is asked via a
+    dialog for the buffer's new name and location.
+
+    If 'newname' is non-empty and has an absolute path, that is used.
+    Otherwise the base directory of the buffer is used as the base
+    for any relative path in 'newname'.
+       */
+       bool renameBuffer(Buffer & b, docstring const & newname);
+       ///
+       bool saveBuffer(Buffer & b);
+       ///
+       bool closeBuffer(Buffer & buf);
+
        ///
        Inset * getOpenInset(std::string const & name) const;