]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiRef.h
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / GuiRef.h
index 50947fc16b84fa6b03229911b73c6cf391cfb30f..b931f70280ed62dc409efcc46178a52e4bc42d86 100644 (file)
 #define GUIREF_H
 
 #include "GuiDialog.h"
-#include "ControlRef.h"
 #include "ui_RefUi.h"
 
+#include "insets/InsetCommandParams.h"
+
 #include <vector>
 
 class QListWidgetItem;
@@ -23,12 +24,12 @@ class QListWidgetItem;
 namespace lyx {
 namespace frontend {
 
-class GuiRefDialog : public GuiDialog, public Ui::RefUi
+class GuiRef : public GuiDialog, public Ui::RefUi
 {
        Q_OBJECT
 
 public:
-       GuiRefDialog(LyXView & lv);
+       GuiRef(GuiView & lv);
 
 private Q_SLOTS:
        void changed_adaptor();
@@ -36,21 +37,30 @@ private Q_SLOTS:
        void refHighlighted(QListWidgetItem *);
        void selectionChanged();
        void refSelected(QListWidgetItem *);
-       void sortToggled(bool);
+       void sortToggled();
+       void caseSensitiveToggled();
        void updateClicked();
-       void reset_dialog();
+       void resetDialog();
+       void dialogRejected();
 
 private:
+       ///
+       bool isBufferDependent() const { return true; }
+       /** disconnect from the inset when the Apply button is pressed.
+        Allows easy insertion of multiple references. */
+       bool disconnectOnApply() const { return true; }
+       ///
+       void gotoRef(std::string const &);
+       ///
+       void gotoBookmark();
        ///
        void closeEvent(QCloseEvent * e);
-       /// parent controller
-       ControlRef & controller() const;
        ///
        bool isValid();
        /// apply changes
        void applyView();
        /// update dialog
-       void update_contents();
+       void updateContents();
 
        /// is name allowed for this ?
        bool nameAllowed();
@@ -66,15 +76,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_;
 };