]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiView.h
Fix the tab ordering of GuiDocument components.
[lyx.git] / src / frontends / qt4 / GuiView.h
index b77c3ad131577bcad5f8926a0ef3d142bf175915..667ce607881ecb7f6b7fb3c084e237c30c3ebfa3 100644 (file)
@@ -64,15 +64,24 @@ class GuiView : public QMainWindow, public GuiBufferViewDelegate,
        public GuiBufferDelegate
 {
        Q_OBJECT
+
 public:
        /// create a main window of the given dimensions
        GuiView(int id);
 
        ~GuiView();
 
+       /// closes the view such that the view knows that is closed
+       /// programmatically and not by the user clicking the x.
+       bool closeScheduled();
+
        int id() const { return id_; }
 
+       ///
        void setBusy(bool);
+       /// are we busy ?
+       bool busy() const;
+
 
        /// \name Generic accessor functions
        //@{
@@ -96,9 +105,7 @@ public:
        /// display a message in the view
        /// could be called from any thread
        void message(docstring const &);
-       /// must be called from GUI thread
-       void updateMessage(QString const & str);
-
+       
        bool getStatus(FuncRequest const & cmd, FuncStatus & flag);
        /// dispatch command.
        /// \return true if the \c FuncRequest has been dispatched.
@@ -174,6 +181,8 @@ public:
        /// \return the \c Workarea associated to \p  Buffer
        /// \retval 0 if no \c WorkArea is found.
        GuiWorkArea * workArea(Buffer & buffer);
+       /// \return the \c Workarea at index \c index
+       GuiWorkArea * workArea(int index);
 
        /// Add a \c WorkArea 
        /// \return the \c Workarea associated to \p  Buffer
@@ -218,13 +227,20 @@ private Q_SLOTS:
        void normalSizedIcons();
        void bigSizedIcons();
 
-       /// For completion of autosave or exporrt threads.
-       void threadFinished();
+       /// For completion of autosave or export threads.
+       void processingThreadStarted();
+       void processingThreadFinished(bool show_errors);
+       void processingThreadFinished();
+       void autoSaveThreadFinished();
 
        /// must be called in GUI thread
        void doShowDialog(QString const & qname, QString const & qdata,
        Inset * inset);
 
+       /// must be called from GUI thread
+       void updateStatusBarMessage(QString const & str);
+       void clearMessageText();
+
 private:
        /// Open given child document in current buffer directory.
        void openChildDocument(std::string const & filename);
@@ -316,8 +332,10 @@ public:
        void disconnectDialog(std::string const & name);
 
 private:
-       ///
+       /// Saves the layout and geometry of the window
        void saveLayout() const;
+       /// Saves the settings of toolbars and all dialogs
+       void saveUISettings() const;
        ///
        bool restoreLayout();
        ///
@@ -354,6 +372,9 @@ private:
        bool renameBuffer(Buffer & b, docstring const & newname);
        ///
        bool saveBuffer(Buffer & b);
+       /// save and rename buffer to fn. If fn is empty, the buffer
+       /// is just saved as the filename it already has.
+       bool saveBuffer(Buffer & b, support::FileName const & fn);
        /// closes a workarea, if close_buffer is true the buffer will
        /// also be released, otherwise the buffer will be hidden.
        bool closeWorkArea(GuiWorkArea * wa, bool close_buffer);
@@ -371,8 +392,8 @@ private:
        /// 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);
+       /// is the buffer shown in some other view ?
+       bool inOtherView(Buffer & buf);
        ///
        enum NextOrPrevious {
                NEXTBUFFER,
@@ -388,9 +409,11 @@ private:
        ///
        Dialog * build(std::string const & name);
        ///
-       void reloadBuffer();
+       bool reloadBuffer(Buffer & buffer);
+       ///
+       void dispatchVC(FuncRequest const & cmd, DispatchResult & dr);
        ///
-       void dispatchVC(FuncRequest const & cmd);
+       void dispatchToBufferView(FuncRequest const & cmd, DispatchResult & dr);
        ///
        void showMessage();
 
@@ -399,6 +422,12 @@ private:
 
        /// flag to avoid two concurrent close events.
        bool closing_;
+       /// if the view is busy the cursor shouldn't blink for instance.
+       /// This counts the number of times more often we called
+       /// setBusy(true) compared to setBusy(false), so we can nest
+       /// functions that call setBusy;
+       int busy_;
+
 };
 
 } // namespace frontend