]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiView.h
Compil fix.
[lyx.git] / src / frontends / qt4 / GuiView.h
index 6c4ce6e7d2646e8706a4d4605568476309b32fe0..c0530c78faaeaa0a06977dc549558525f9ba6a5e 100644 (file)
@@ -31,7 +31,7 @@ class QShowEvent;
 
 namespace lyx {
 
-class ToolbarInfo;
+class Cursor;
 
 namespace frontend {
 
@@ -39,6 +39,9 @@ class Dialog;
 class GuiLayoutBox;
 class GuiToolbar;
 class GuiWorkArea;
+class TabWorkArea;
+class TocModels;
+class ToolbarInfo;
 
 /**
  * GuiView - Qt4 implementation of LyXView
@@ -61,7 +64,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 updateLayoutList();
        void updateToolbars();
        QMenu * createPopupMenu();
-       FuncStatus getStatus(FuncRequest const & cmd);
+       bool getStatus(FuncRequest const & cmd, FuncStatus & flag);
        bool dispatch(FuncRequest const & cmd);
 
        ///
@@ -87,18 +89,30 @@ 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.
        ///@{
        void resetAutosaveTimers();
        void errors(std::string const &);
-       void structureChanged() { updateToc(); }
+       void structureChanged();
        ///@}
+
+       ///
+       TocModels & tocModels();
        
        /// called on timeout
        void autoSave();
-       ///
-       void updateEmbeddedFiles();
 
        /// \return the current buffer view.
        BufferView * view();
@@ -139,6 +153,8 @@ private Q_SLOTS:
 
        ///
        void on_currentWorkAreaChanged(GuiWorkArea *);
+       ///
+       void on_lastWorkAreaRemoved();
 
        /// slots to change the icon size
        void smallSizedIcons();
@@ -147,7 +163,7 @@ private Q_SLOTS:
 
 private:
        ///
-       void addTabWorkArea();
+       TabWorkArea * addTabWorkArea();
 
        /// connect to signals in the given BufferView
        void connectBufferView(BufferView & bv);
@@ -158,8 +174,6 @@ private:
        /// disconnect from signals in the given buffer
        void disconnectBuffer();
        ///
-       void updateToc();
-       ///
        void dragEnterEvent(QDragEnterEvent * ev);
        ///
        void dropEvent(QDropEvent * ev);
@@ -184,24 +198,19 @@ public:
        ///
        void resetDialogs();
 
-       /** Check the status of all visible dialogs and disable or reenable
+       /// Hide all visible dialogs
+       void hideAll() const;
+
+       /// Update all visible dialogs.
+       /** 
+        *  Check the status of all visible dialogs and disable or reenable
         *  them as appropriate.
         *
         *  Disabling is needed for example when a dialog is open and the
         *  cursor moves to a position where the corresponding inset is not
         *  allowed.
         */
-       void checkStatus();
-
-       /// Hide all visible dialogs
-       void hideAll() const;
-       /// Hide any dialogs that require a buffer for them to operate
-       void hideBufferDependent() const;
-       /** Update visible, buffer-dependent dialogs
-           If the bool is true then a buffer change has occurred
-           else it is still the same buffer.
-        */
-       void updateBufferDependent(bool) const;
+       void updateDialogs();
 
        /** \param name == "bibtex", "citation" etc; an identifier used to
            launch a particular dialog.
@@ -220,7 +229,7 @@ public:
                std::string const & data, Inset * inset = 0);
 
        /** \param name == "citation", "bibtex" etc; an identifier used
-           to update the contents of a particular dialog with \param data.
+           to reset the contents of a particular dialog with \param data.
            See the comments to 'show', above.
        */
        void updateDialog(std::string const & name, std::string const & data);
@@ -232,7 +241,46 @@ public:
        ///
        void disconnectDialog(std::string const & name);
 
+       ///
+       void updateCompletion(Cursor & cur, bool start, bool keep);
+
 private:
+       ///
+       GuiToolbar * toolbar(std::string const & name);
+       ///
+       void constructToolbars();
+       ///
+       void initToolbars();
+       ///
+       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, bool tolastopened = false);
+
        ///
        Inset * getOpenInset(std::string const & name) const;