X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiBibitem.h;h=b0c34e79b7e9709bc47dbb499bfc4af876311f2f;hb=425d092204118ea6c24c28e85fdf03fcf2bb51a4;hp=9c7bac917909305dfad9b157edf32fd25e8e837a;hpb=a1cec91afaca91968b46e695533c10ad2a3f73d3;p=lyx.git diff --git a/src/frontends/qt4/GuiBibitem.h b/src/frontends/qt4/GuiBibitem.h index 9c7bac9179..b0c34e79b7 100644 --- a/src/frontends/qt4/GuiBibitem.h +++ b/src/frontends/qt4/GuiBibitem.h @@ -4,63 +4,56 @@ * 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 "GuiDialog.h" #include "ui_BibitemUi.h" -#include -#include - +#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_; -}; - - -class ControlCommand; - -class GuiBibitem - : public QController > -{ public: - friend class GuiBibitemDialog; + /// Constructor + GuiBibitem(GuiView & lv); - GuiBibitem(Dialog &); +private Q_SLOTS: + void change_adaptor(); -protected: - virtual bool isValid(); private: + /// + 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 } // namespace lyx -#endif // QBIBITEM_H +#endif // GUIBIBITEM_H