]> 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 b4e548fbbaa5551c09322e3b42a77b55fcac97c6..8bd547dbdd3a7bcebc9a4605b5c2bb7ef45e82b3 100644 (file)
 #ifndef GUI_VIEW_H
 #define GUI_VIEW_H
 
+#include "frontends/Delegates.h"
 #include "frontends/LyXView.h"
 
-#include <string>
-
+#include "support/strfwd.h"
 
 #include <QMainWindow>
 
@@ -31,6 +31,7 @@ class QShowEvent;
 
 namespace lyx {
 
+class Cursor;
 class ToolbarInfo;
 
 namespace frontend {
@@ -39,6 +40,7 @@ class Dialog;
 class GuiLayoutBox;
 class GuiToolbar;
 class GuiWorkArea;
+class TabWorkArea;
 
 /**
  * GuiView - Qt4 implementation of LyXView
@@ -49,7 +51,8 @@ class GuiWorkArea;
  * is deleted. This might be useful for closing other dialogs
  * depending on a given GuiView.
  */
-class GuiView : public QMainWindow, public LyXView
+class GuiView : public QMainWindow, public LyXView, public GuiBufferViewDelegate,
+       public GuiBufferDelegate
 {
        Q_OBJECT
 public:
@@ -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.
@@ -76,7 +78,7 @@ public:
        void updateToolbars();
        QMenu * createPopupMenu();
        FuncStatus getStatus(FuncRequest const & cmd);
-       void dispatch(FuncRequest const & cmd);
+       bool dispatch(FuncRequest const & cmd);
 
        ///
        void setLayoutDialog(GuiLayoutBox *);
@@ -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);
@@ -230,10 +243,44 @@ public:
        void hideDialog(std::string const & name, Inset * inset);
        ///
        void disconnectDialog(std::string const & name);
+
        ///
-       Inset * getOpenInset(std::string const & name) const;
+       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;
+
        /// Is the dialog currently visible?
        bool isDialogVisible(std::string const & name) const;
        ///