]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiRef.h
Compil fix.
[lyx.git] / src / frontends / qt4 / GuiRef.h
index 50947fc16b84fa6b03229911b73c6cf391cfb30f..ed355a590f12c32a17bc11965626494b1b1ccf59 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();
@@ -41,16 +42,23 @@ private Q_SLOTS:
        void reset_dialog();
 
 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,6 +74,16 @@ 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_;