]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiBibitem.h
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / GuiBibitem.h
index 7f6859f4e9bd0eb600a9386180f072e9b05af99d..b0c34e79b7e9709bc47dbb499bfc4af876311f2f 100644 (file)
@@ -4,6 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
+ * \author Angus Leeming
  * \author John Levon
  *
  * Full author contact details are available in file CREDITS.
 #ifndef GUIBIBITEM_H
 #define GUIBIBITEM_H
 
-#include "GuiDialogView.h"
-#include "ControlCommand.h"
+#include "GuiDialog.h"
 #include "ui_BibitemUi.h"
 
-#include <QDialog>
-
+#include "insets/InsetCommandParams.h"
 
 namespace lyx {
 namespace frontend {
 
-class GuiBibitem;
-
-class GuiBibitemDialog : public QDialog, public Ui::BibitemUi {
+class GuiBibitem : public GuiDialog, public Ui::BibitemUi
+{
        Q_OBJECT
-public:
 
-       GuiBibitemDialog(GuiBibitem * form);
-protected Q_SLOTS:
-       virtual void change_adaptor();
-protected:
-       virtual void closeEvent(QCloseEvent * e);
-private:
-       GuiBibitem * form_;
-};
+public:
+       /// Constructor
+       GuiBibitem(GuiView & lv);
 
+private Q_SLOTS:
+       void change_adaptor();
 
-class GuiBibitem : public GuiView<GuiBibitemDialog>
-{
-public:
-       ///
-       GuiBibitem(Dialog &);
-       /// parent controller
-       ControlCommand & controller()
-       { return static_cast<ControlCommand &>(this->getController()); }
-       /// parent controller
-       ControlCommand const & controller() const
-       { return static_cast<ControlCommand const &>(this->getController()); }
-protected:
-       virtual bool isValid();
 private:
-       friend class GuiBibitemDialog;
+       ///
+       bool isValid();
        /// Apply changes
-       virtual void apply();
+       void applyView();
        /// update
-       virtual void update_contents();
-       /// build the dialog
-       virtual void build_dialog();
+       void updateContents();
+       ///
+       bool initialiseParams(std::string const & data);
+       /// clean-up on hide.
+       void clearParams() { params_.clear(); }
+       /// clean-up on hide.
+       void dispatchParams();
+       ///
+       bool isBufferDependent() const { return true; }
+
+private:
+       ///
+       InsetCommandParams params_;
 };
 
 } // namespace frontend