]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiRef.h
Make a string translatable
[lyx.git] / src / frontends / qt4 / GuiRef.h
index f1bb9f9e3c56c6c3ab7a282b16b0f93a0aa45f8a..46d9a6d076607a71d96aa4f9b8ac138221e14945 100644 (file)
 #define GUIREF_H
 
 #include "GuiDialog.h"
-#include "Dialog.h"
 #include "ui_RefUi.h"
+#include "FancyLineEdit.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
 
 public:
        GuiRef(GuiView & lv);
+       /// Dialog inherited methods
+       //@{
+       void enableView(bool enable);
+       //@}
 
 private Q_SLOTS:
        void changed_adaptor();
        void gotoClicked();
-       void refHighlighted(QListWidgetItem *);
+       void filterLabels();
+       void resetFilter();
+       void refHighlighted(QTreeWidgetItem *);
        void selectionChanged();
-       void refSelected(QListWidgetItem *);
-       void sortToggled(bool);
+       void refTextChanged(QString const &);
+       void refSelected(QTreeWidgetItem *);
+       void sortToggled();
+       void groupToggled();
        void updateClicked();
-       void reset_dialog();
+       void resetDialog();
+       void dialogRejected();
 
 private:
        ///
@@ -59,6 +69,8 @@ private:
        void applyView();
        /// update dialog
        void updateContents();
+       ///
+       void enableBoxes();
 
        /// is name allowed for this ?
        bool nameAllowed();
@@ -74,15 +86,28 @@ 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_;
+
+       /// contains the search box
+       FancyLineEdit * filter_;
 
-       /// 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_;
 };