]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiRef.h
Fix the tab ordering of GuiDocument components.
[lyx.git] / src / frontends / qt4 / GuiRef.h
index e6ff95857a13451379d2661dd8ba4e1141c989d4..e240d0e939e36f6935835d6ab27cc34f22869f01 100644 (file)
 #ifndef GUIREF_H
 #define GUIREF_H
 
-#include "GuiCommand.h"
+#include "GuiDialog.h"
 #include "ui_RefUi.h"
 
+#include "insets/InsetCommandParams.h"
+
 #include <vector>
 
-class QListWidgetItem;
+class QTreeWidgetItem;
 
 namespace lyx {
 namespace frontend {
 
-class GuiRef : public GuiCommand, public Ui::RefUi
+class GuiRef : public GuiDialog, public Ui::RefUi
 {
        Q_OBJECT
 
@@ -32,12 +34,16 @@ public:
 private Q_SLOTS:
        void changed_adaptor();
        void gotoClicked();
-       void refHighlighted(QListWidgetItem *);
+       void filterLabels();
+       void refHighlighted(QTreeWidgetItem *);
        void selectionChanged();
-       void refSelected(QListWidgetItem *);
-       void sortToggled(bool);
+       void refSelected(QTreeWidgetItem *);
+       void sortToggled();
+       void caseSensitiveToggled();
+       void groupToggled();
        void updateClicked();
-       void reset_dialog();
+       void resetDialog();
+       void dialogRejected();
 
 private:
        ///
@@ -72,15 +78,25 @@ private:
        void redoRefs();
        /// update references
        void updateRefs();
+       ///
+       bool initialiseParams(std::string const & data);
+       /// clean-up on hide.
+       void clearParams() { params_.clear(); }
+       /// clean-up on hide.
+       void dispatchParams();
+
+private:
+       ///
+       InsetCommandParams params_;
 
-       /// sort or not persistent state
-       bool sort_;
        /// went to a reference ?
        bool at_ref_;
        /// the last reference entered or examined
        QString last_reference_;
        /// store the buffer settings
        int restored_buffer_;
+       /// store the last active buffer
+       int active_buffer_;
        /// the references
        std::vector<docstring> refs_;
 };