]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/TocWidget.h
Compil fix.
[lyx.git] / src / frontends / qt4 / TocWidget.h
index 830c0b1d4eeaa34acfd9c234d50778346e57be36..fbf32a6a8373335a265be319f75232b28fa93268 100644 (file)
 #define TOC_WIDGET_H
 
 #include "GuiDialog.h"
-#include "ControlToc.h"
+#include "GuiToc.h"
 #include "ui_TocUi.h"
 
+class QString;
 
 namespace lyx {
 namespace frontend {
 
-class GuiToc;
+class TocModels;
 
 class TocWidget : public QWidget, public Ui::TocUi
 {
        Q_OBJECT
 public:
-       TocWidget(GuiToc & form, QWidget * parent = 0);
+       TocWidget(TocModels & models, QWidget * parent = 0);
 
+       /// Initialise GUI.
+       void init(QString const & str);
+
+public Q_SLOTS:
        /// Update the display of the dialog whilst it is still visible.
        void updateView();
 
 protected Q_SLOTS:
-       /// Update Gui of the display.
-       void updateGui();
        ///
        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_clicked(QModelIndex const &);
        void on_updateTB_clicked();
        void on_depthSL_valueChanged(int depth);
        void on_typeCO_currentIndexChanged(int value);
@@ -51,7 +55,7 @@ protected Q_SLOTS:
        void on_moveInTB_clicked();
        void on_moveOutTB_clicked();
 
-protected:
+private:
        ///
        void enableControls(bool enable = true);
        ///
@@ -59,17 +63,10 @@ protected:
        ///
        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();
-
        /// depth of list shown
        int depth_;
        ///
-       GuiToc & form_;
+       TocModels & models_;
 };
 
 } // namespace frontend