X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Ffrontends%2Fqt4%2FTocWidget.h;h=608920a42ad3f7b7f03519895e6686c1930d9301;hb=59e0cb8f85f0d2f985b31532dd3308315659c662;hp=a291ef5bc74dd19833011e3f171c632877604ae5;hpb=f7f24a2709e961dee9afacf040726a7a075d4f22;p=lyx.git diff --git a/src/frontends/qt4/TocWidget.h b/src/frontends/qt4/TocWidget.h index a291ef5bc7..608920a42a 100644 --- a/src/frontends/qt4/TocWidget.h +++ b/src/frontends/qt4/TocWidget.h @@ -15,6 +15,9 @@ #include "ui_TocUi.h" +#include "Cursor.h" +#include "FuncCode.h" + #include class QModelIndex; @@ -34,10 +37,17 @@ public: /// Initialise GUI. void init(QString const & str); + /// + void doDispatch(Cursor & cur, FuncRequest const & fr); + /// + bool getStatus(Cursor & cur, FuncRequest const & fr, FuncStatus & status) + const; public Q_SLOTS: - /// Update the display of the dialog whilst it is still visible. + /// Schedule new update of the display unless already scheduled. void updateView(); + /// Update the display of the dialog whilst it is still visible. + void updateViewForce(); protected Q_SLOTS: /// @@ -56,14 +66,32 @@ protected Q_SLOTS: void on_moveDownTB_clicked(); void on_moveInTB_clicked(); void on_moveOutTB_clicked(); + void filterContents(); + + void showContextMenu(const QPoint & pos); private: /// void enableControls(bool enable = true); /// + bool canOutline() + { return current_type_ == "tableofcontents"; } + /// It is not possible to have synchronous navigation in a correct + /// and efficient way with the label and change type because Toc::item() + /// does a linear search. Even when fixed, it might even not be desirable + /// to do so if we want to support drag&drop of labels and references. + bool canNavigate() + { return current_type_ != "label" && current_type_ != "change"; } + /// + bool isSortable() + { return current_type_ != "tableofcontents"; } + /// void setTreeDepth(int depth); /// - void outline(int func_code); + void outline(FuncCode func_code); + /// finds the inset that is connected to the current item, + /// if any, otherwise return null + Inset * itemInset() const; /// QString current_type_; @@ -73,6 +101,8 @@ private: bool persistent_; /// GuiView & gui_view_; + // next delay for outliner update in ms. -1 when already scheduled. + int update_delay_; }; } // namespace frontend