lyx_mirror/src/frontends/qt4/GuiBibitem.h
Abdelrazak Younes 85c782bde8 Migrate GuiBibitem to InsetParamsWidget.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33547 a592a061-630c-0410-9148-cb99ea01b6c8
2010-02-23 21:24:24 +00:00

46 lines
894 B
C++

// -*- C++ -*-
/**
* \file GuiBibitem.h
* 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 "InsetParamsWidget.h"
#include "ui_BibitemUi.h"
namespace lyx {
namespace frontend {
class GuiBibitem : public InsetParamsWidget, public Ui::BibitemUi
{
Q_OBJECT
public:
/// Constructor
GuiBibitem(QWidget * parent = 0);
private:
/// \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 // GUIBIBITEM_H