lyx_mirror/src/frontends/qt4/GuiLabel.h
Richard Heck 79811671e9 Revert r35933. There are insets not based upon InsetCommand, such as
VSpace, that use InsetParamsWidget, so we cannot have code that requires
InsetCommandParams there.

Stephen Witt reported a similar crash with the info dialog.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35952 a592a061-630c-0410-9148-cb99ea01b6c8
2010-10-31 18:56:32 +00:00

46 lines
913 B
C++

// -*- C++ -*-
/**
* \file GuiLabel.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
* \author Kalle Dalheimer
*
* Full author contact details are available in file CREDITS.
*/
#ifndef GUILABEL_H
#define GUILABEL_H
#include "ui_LabelUi.h"
#include "InsetParamsWidget.h"
namespace lyx {
namespace frontend {
class GuiLabel : public InsetParamsWidget, public Ui::LabelUi
{
Q_OBJECT
public:
GuiLabel(QWidget * parent = 0);
private:
/// \name InsetParamsWidget inherited methods
//@{
InsetCode insetCode() const { return LABEL_CODE; }
FuncCode creationCode() const { return LFUN_INSET_INSERT; }
void paramsToDialog(Inset const *);
docstring dialogToParams() const;
bool checkWidgets() const;
bool initialiseParams(std::string const &);
//@}
};
} // namespace frontend
} // namespace lyx
#endif // GUILABEL_H