]> 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 dfc18a1d1bd0a19a8802bb8b5cbd94ba1bcbb1be..a64ba72e88cb29f169015b33414dbff113798a03 100644 (file)
 #ifndef GUIBIBITEM_H
 #define GUIBIBITEM_H
 
-#include "GuiDialog.h"
+#include "InsetParamsWidget.h"
 #include "ui_BibitemUi.h"
 
-#include "insets/InsetCommandParams.h"
 
 namespace lyx {
 namespace frontend {
 
-class GuiBibitem : public GuiCommand, public Ui::BibitemUi
+class GuiBibitem : public InsetParamsWidget, public Ui::BibitemUi
 {
        Q_OBJECT
 
 public:
-       GuiBibitem(GuiView & lv);
-
-private Q_SLOTS:
-       void change_adaptor();
-
-private:
-       ///
-       void closeEvent(QCloseEvent * e);
+       /// Constructor
+       GuiBibitem(QWidget * parent = 0);
 
 private:
-       ///
-       bool isValid();
-       /// Apply changes
-       void applyView();
-       /// update
-       void updateContents();
+       /// \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