X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiView.h;h=4cf5d027e92e6371d9235c78252d0ef5f095f5af;hb=1520629d7cefe09cbc9612806c8abbbd6b36048e;hp=8a0b91f1638188d7bbd268c111b84e95096f6122;hpb=fb47b716d714ba7ea63bcf0895d9be9c2347e9d9;p=lyx.git diff --git a/src/frontends/qt4/GuiView.h b/src/frontends/qt4/GuiView.h index 8a0b91f163..4cf5d027e9 100644 --- a/src/frontends/qt4/GuiView.h +++ b/src/frontends/qt4/GuiView.h @@ -7,7 +7,7 @@ * \author Lars Gullik Bjornes * \author John Levon * \author Abdelrazak Younes - * \author Peter Kümmel + * \author Peter Kümmel * * Full author contact details are available in file CREDITS. */ @@ -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,8 @@ public: void setBuffer(Buffer * b); ///< \c Buffer to set. /// bool closeBuffer(); + /// hides the workarea and makes sure it is clean + bool hideWorkArea(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,8 +106,9 @@ 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 &); ///@} /// @@ -138,6 +141,13 @@ public: void removeWorkArea(GuiWorkArea * work_area); /// return the current WorkArea (the one that has the focus). GuiWorkArea const * currentWorkArea() const; + /// return the current WorkArea (the one that has the focus). + GuiWorkArea * currentWorkArea(); + + /// return the current document WorkArea (it may not have the focus). + GuiWorkArea const * currentMainWorkArea() const; + /// return the current document WorkArea (it may not have the focus). + GuiWorkArea * currentMainWorkArea(); Q_SIGNALS: void closing(int); @@ -150,6 +160,8 @@ public Q_SLOTS: private Q_SLOTS: /// void updateWindowTitle(GuiWorkArea * wa); + /// + void resetWindowTitleAndIconText(); /// void on_currentWorkAreaChanged(GuiWorkArea *); @@ -248,7 +260,7 @@ private: /// void saveLayout() const; /// - void restoreLayout(); + bool restoreLayout(); /// GuiToolbar * toolbar(std::string const & name); /// @@ -284,9 +296,26 @@ private: /// bool saveBuffer(Buffer & b); /// - bool closeBuffer(Buffer & buf, bool tolastopened = false); + bool closeWorkArea(GuiWorkArea * wa, bool close_buffer, + bool tolastopened = false, bool mark_active = false); + /// 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 tolastopened = 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 + }; /// - void releaseBuffer(Buffer & buf); + void gotoNextOrPreviousBuffer(NextOrPrevious np); /// Inset * getOpenInset(std::string const & name) const; @@ -294,7 +323,7 @@ private: /// Is the dialog currently visible? bool isDialogVisible(std::string const & name) const; /// - Dialog * find_or_build(std::string const & name); + Dialog * findOrBuild(std::string const & name, bool hide_it); /// Dialog * build(std::string const & name);