X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FTocWidget.h;h=d2ca8b83758cc19636b0b048ad6f7b336ab412b2;hb=425d092204118ea6c24c28e85fdf03fcf2bb51a4;hp=a24a2f18527f8f381c5b935c7278b4a9d6e451be;hpb=6b2d20c8a66184bb18f64568f1a7cf94fea1ef30;p=lyx.git diff --git a/src/frontends/qt4/TocWidget.h b/src/frontends/qt4/TocWidget.h index a24a2f1852..d2ca8b8375 100644 --- a/src/frontends/qt4/TocWidget.h +++ b/src/frontends/qt4/TocWidget.h @@ -13,65 +13,78 @@ #ifndef TOC_WIDGET_H #define TOC_WIDGET_H -#include "GuiDialog.h" -#include "GuiToc.h" #include "ui_TocUi.h" +#include "Cursor.h" + +#include + +class QModelIndex; +class QString; namespace lyx { namespace frontend { -class GuiToc; +class GuiView; class TocWidget : public QWidget, public Ui::TocUi { Q_OBJECT public: - TocWidget(GuiToc & form, QWidget * parent = 0); + /// + TocWidget(GuiView & gui_view, QWidget * parent = 0); + + /// 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. void updateView(); - /// Update Gui of the display. - void updateGui(int selected_type); - protected Q_SLOTS: - /// - void setTocModel(size_t type); /// void select(QModelIndex const & index); /// - void selectionChanged(const QModelIndex & current, - const QModelIndex & previous); + void goTo(QModelIndex const &); + void on_tocTV_activated(QModelIndex const &); + void on_tocTV_pressed(QModelIndex const &); void on_updateTB_clicked(); + void on_sortCB_stateChanged(int state); + void on_persistentCB_stateChanged(int state); void on_depthSL_valueChanged(int depth); void on_typeCO_currentIndexChanged(int value); void on_moveUpTB_clicked(); void on_moveDownTB_clicked(); void on_moveInTB_clicked(); void on_moveOutTB_clicked(); - void setTreeDepth() { setTreeDepth(depth_); }; -protected: + void showContextMenu(const QPoint & pos); + +private: /// void enableControls(bool enable = true); /// - int getIndexDepth(QModelIndex const & index, int depth = -1); - /// void setTreeDepth(int depth); - -private: - /// Reconnects the selection model change signal when TOC changed. - void reconnectSelectionModel(); - /// Disconnects the selection model. - //This is a workaround for a problem of signals blocking. - void disconnectSelectionModel(); + /// + void outline(int func_code); + /// finds the inset that is connected to the current item, + /// if any, otherwise return null + Inset * itemInset() const; + /// + QString current_type_; /// depth of list shown int depth_; + /// persistence of uncollapsed nodes in toc view + bool persistent_; /// - GuiToc & form_; + GuiView & gui_view_; }; } // namespace frontend