mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
47 lines
997 B
C++
47 lines
997 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file GuiNomenclature.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
|
|
* \author O. U. Baran
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef GUINOMENCLATURE_H
|
|
#define GUINOMENCLATURE_H
|
|
|
|
#include "ui_NomenclUi.h"
|
|
|
|
#include "InsetParamsWidget.h"
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
class GuiNomenclature : public InsetParamsWidget, public Ui::NomenclUi
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GuiNomenclature(QWidget * parent = 0);
|
|
|
|
private:
|
|
/// \name InsetParamsWidget inherited methods
|
|
//@{
|
|
InsetCode insetCode() const { return NOMENCL_CODE; }
|
|
FuncCode creationCode() const { return LFUN_INSET_INSERT; }
|
|
void paramsToDialog(Inset const *);
|
|
docstring dialogToParams() const;
|
|
bool checkWidgets(bool readonly) const;
|
|
bool initialiseParams(std::string const &);
|
|
//@}
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // GUINOMENCLATURE_H
|