]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/TocWidget.h
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / TocWidget.h
index cfac929c9471c4349a93eabebfe2fd7321a9f32d..d2ca8b83758cc19636b0b048ad6f7b336ab412b2 100644 (file)
@@ -15,6 +15,8 @@
 
 #include "ui_TocUi.h"
 
+#include "Cursor.h"
+
 #include <QWidget>
 
 class QModelIndex;
@@ -34,6 +36,11 @@ 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.
@@ -46,7 +53,7 @@ protected Q_SLOTS:
        void goTo(QModelIndex const &);
 
        void on_tocTV_activated(QModelIndex const &);
-       void on_tocTV_clicked(QModelIndex const &);
+       void on_tocTV_pressed(QModelIndex const &);
        void on_updateTB_clicked();
        void on_sortCB_stateChanged(int state);
        void on_persistentCB_stateChanged(int state);
@@ -57,6 +64,8 @@ protected Q_SLOTS:
        void on_moveInTB_clicked();
        void on_moveOutTB_clicked();
 
+       void showContextMenu(const QPoint & pos);
+
 private:
        ///
        void enableControls(bool enable = true);
@@ -64,6 +73,9 @@ private:
        void setTreeDepth(int depth);
        ///
        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_;