X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiToc.h;h=5e759895a5168fb90d83e868e8d564c34547d161;hb=ee7dd4a11ea21851e7e32164c66b37d3bc8ac31d;hp=9621f3e8207efc8afd7663ef1e439f4ce9c2b6be;hpb=e8f16a9bcb37a1da6a99cbf76a6956747c88c4d4;p=lyx.git diff --git a/src/frontends/qt4/GuiToc.h b/src/frontends/qt4/GuiToc.h index 9621f3e820..5e759895a5 100644 --- a/src/frontends/qt4/GuiToc.h +++ b/src/frontends/qt4/GuiToc.h @@ -46,68 +46,29 @@ public: /// bool initialiseParams(std::string const & data); - /// void updateView(); - /// Test if outlining operation is possible - bool canOutline(int type) const; - - QStandardItemModel * tocModel(int type); - /// - QModelIndex currentIndex(int type) const; - /// - void goTo(int type, QModelIndex const & index); - /// - int getType(); - /// - int getTocDepth(int type); - -Q_SIGNALS: - /// Signal that the internal toc_models_ has been reset. - void modelReset(); - -private: - /// - TocWidget * widget_; - /// - std::vector toc_models_; - /// - void clearTocModels(); + void enableView(bool enable); + bool wantInitialFocus() const { return false; } + void closeEvent(QCloseEvent * event); + bool isClosing() const { return is_closing_; } public: - /// - TocList const & tocs() const; - - /// Return the list of types available - QStringList const & typeNames() const { return type_names_; } - - /// Return the first TocItem before the cursor - TocIterator currentTocItem(int type) const; - - /// Apply the selected outlining operation - void outlineUp(); - /// - void outlineDown(); - /// - void outlineIn(); - /// - void outlineOut(); - /// - void updateBackend(); - - /// Return the guiname from a given cmdName of the TOC param - docstring guiName(std::string const & type) const; - /// clean-up on hide. void clearParams() {} /// void dispatchParams(); /// bool isBufferDependent() const { return true; } + /// + void doDispatch(Cursor & cur, FuncRequest const & fr); + /// + bool getStatus(Cursor & cur, FuncRequest const & fr, FuncStatus & fs) const; +private: /// - QStringList types_; + TocWidget * widget_; /// - QStringList type_names_; + bool is_closing_; }; } // namespace frontend