]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/TocWidget.h
Compil fix.
[lyx.git] / src / frontends / qt4 / TocWidget.h
index 3334f175af7d3db48486c3cad2fd4254d040a411..fbf32a6a8373335a265be319f75232b28fa93268 100644 (file)
 #ifndef TOC_WIDGET_H
 #define TOC_WIDGET_H
 
+#include "GuiDialog.h"
+#include "GuiToc.h"
 #include "ui_TocUi.h"
 
-#include <QWidget>
+class QString;
 
 namespace lyx {
 namespace frontend {
 
-class GuiToc;
+class TocModels;
 
-class TocWidget : public QWidget, public Ui::TocUi {
+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 update();
+       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);
@@ -49,7 +55,7 @@ protected Q_SLOTS:
        void on_moveInTB_clicked();
        void on_moveOutTB_clicked();
 
-protected:
+private:
        ///
        void enableControls(bool enable = true);
        ///
@@ -57,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();
-
-       GuiToc * form_;
-
        /// depth of list shown
        int depth_;
+       ///
+       TocModels & models_;
 };
 
 } // namespace frontend