]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiBibitem.h
Fix the tab ordering of GuiDocument components.
[lyx.git] / src / frontends / qt4 / GuiBibitem.h
index 9c7bac917909305dfad9b157edf32fd25e8e837a..a64ba72e88cb29f169015b33414dbff113798a03 100644 (file)
@@ -4,63 +4,42 @@
  * 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 QBIBITEM_CONTROLLER_H
-#define QBIBITEM_CONTROLLER_H
-
-#include "GuiDialogView.h"
+#ifndef GUIBIBITEM_H
+#define GUIBIBITEM_H
 
+#include "InsetParamsWidget.h"
 #include "ui_BibitemUi.h"
 
-#include <QDialog>
-#include <QCloseEvent>
-
 
 namespace lyx {
 namespace frontend {
 
-class GuiBibitem;
-
-class GuiBibitemDialog : public QDialog, public Ui::BibitemUi {
+class GuiBibitem : public InsetParamsWidget, 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_;
-};
-
 
-class ControlCommand;
-
-class GuiBibitem
-       : public QController<ControlCommand, GuiView<GuiBibitemDialog> >
-{
 public:
-       friend class GuiBibitemDialog;
-
-       GuiBibitem(Dialog &);
+       /// Constructor
+       GuiBibitem(QWidget * parent = 0);
 
-protected:
-       virtual bool isValid();
 private:
-       /// Apply changes
-       virtual void apply();
-       /// update
-       virtual void update_contents();
-       /// build the dialog
-       virtual void build_dialog();
+       /// \name DialogView inherited methods
+       //@{
+       InsetCode insetCode() const { return BIBITEM_CODE; }
+       FuncCode creationCode() const { return LFUN_INSET_INSERT; }
+       void paramsToDialog(Inset const *);
+       docstring dialogToParams() const;
+       bool checkWidgets() const;
+       //@}
 };
 
 } // namespace frontend
 } // namespace lyx
 
-#endif // QBIBITEM_H
+#endif // GUIBIBITEM_H