2006-03-05 17:24:44 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
2008-02-14 18:06:47 +00:00
|
|
|
* \file GuiLabel.h
|
2006-03-05 17:24:44 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2008-02-14 18:06:47 +00:00
|
|
|
#ifndef GUILABEL_H
|
|
|
|
#define GUILABEL_H
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2008-02-14 18:06:47 +00:00
|
|
|
#include "ui_LabelUi.h"
|
2007-04-25 08:42:22 +00:00
|
|
|
|
2010-10-27 17:25:55 +00:00
|
|
|
#include "InsetParamsWidget.h"
|
2008-04-20 09:24:14 +00:00
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
2010-10-27 17:25:55 +00:00
|
|
|
class GuiLabel : public InsetParamsWidget, public Ui::LabelUi
|
2007-09-05 20:33:29 +00:00
|
|
|
{
|
2007-04-25 08:42:22 +00:00
|
|
|
Q_OBJECT
|
2007-09-05 20:33:29 +00:00
|
|
|
|
2007-04-25 08:42:22 +00:00
|
|
|
public:
|
2010-10-27 17:25:55 +00:00
|
|
|
GuiLabel(QWidget * parent = 0);
|
2008-04-20 09:24:14 +00:00
|
|
|
|
|
|
|
private:
|
2010-10-27 17:25:55 +00:00
|
|
|
/// \name InsetParamsWidget inherited methods
|
|
|
|
//@{
|
|
|
|
InsetCode insetCode() const { return LABEL_CODE; }
|
|
|
|
FuncCode creationCode() const { return LFUN_INSET_INSERT; }
|
|
|
|
void paramsToDialog(Inset const *);
|
|
|
|
docstring dialogToParams() const;
|
2015-03-30 12:44:11 +00:00
|
|
|
bool checkWidgets(bool readonly = false) const;
|
2010-10-31 18:56:32 +00:00
|
|
|
bool initialiseParams(std::string const &);
|
2010-10-27 17:25:55 +00:00
|
|
|
//@}
|
2006-03-05 17:24:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
|
|
|
|
2008-04-20 08:19:26 +00:00
|
|
|
#endif // GUILABEL_H
|