]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiView.h
If we are in a closeEvent, we don't want to close all buffers, because these may...
[lyx.git] / src / frontends / qt4 / GuiView.h
index c3f5d5b53ded92713c688a459796fff7a40e5c47..e2a1d49bb6e7ba89e70e887466318efb33e6da39 100644 (file)
@@ -36,7 +36,7 @@ class Cursor;
 namespace frontend {
 
 class Dialog;
-class GuiLayoutBox;
+class LayoutBox;
 class GuiToolbar;
 class GuiWorkArea;
 class TabWorkArea;
@@ -82,7 +82,7 @@ public:
        bool dispatch(FuncRequest const & cmd);
 
        ///
-       void setLayoutDialog(GuiLayoutBox *);
+       LayoutBox * getLayoutDialog() const;
 
        /// \return the buffer currently shown in this window
        Buffer * buffer();
@@ -91,6 +91,10 @@ public:
        void setBuffer(Buffer * b); ///< \c Buffer to set.
        ///
        bool closeBuffer();
+       /// hides the workarea and makes sure it is clean
+       bool hideWorkArea(GuiWorkArea * wa);
+       /// closes the workarea
+       bool closeWorkArea(GuiWorkArea * wa);
        /// 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?
@@ -104,7 +108,7 @@ public:
        /// GuiBufferDelegate.
        ///@{
        void resetAutosaveTimers();
-       void errors(std::string const &);
+       void errors(std::string const &, bool from_master = false);
        void structureChanged();
        void updateTocItem(std::string const &, DocIterator const &);
        ///@}
@@ -294,7 +298,25 @@ private:
        ///
        bool saveBuffer(Buffer & b);
        ///
-       bool closeBuffer(Buffer & buf, bool tolastopened = false);
+       bool closeWorkArea(GuiWorkArea * wa, bool close_buffer,
+               bool in_close_event = false, bool mark_active = false);
+       /// closes the tabworkarea and all tabs.
+       bool closeTabWorkArea(TabWorkArea * twa, bool in_close_event = false,
+               GuiWorkArea * main_work_area = 0);
+       /// gives the user the possibility to save his work 
+       /// or to discard the changes. If hiding is true, the
+       /// document will be reloaded.
+       bool saveBufferIfNeeded(Buffer & buf, bool hiding);
+       ///
+       bool closeBufferAll(bool in_close_event = false);
+       ///
+       bool closeWorkAreaAll(bool in_close_event = false);
+       /// is the buffer in this workarea also shown in another tab ?
+       /// This tab can either be in the same view or in another one.
+       bool inMultiTabs(GuiWorkArea * wa);
+       /// is the buffer in this workarea also shown in another view ?
+       bool inMultiViews(GuiWorkArea * wa);
+       ///
        enum NextOrPrevious {
                NEXTBUFFER,
                PREVBUFFER