lyx_mirror/src/frontends/qt4/GuiLabel.h
Abdelrazak Younes ba76bf5eb8 header cleanup
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23048 a592a061-630c-0410-9148-cb99ea01b6c8
2008-02-17 20:47:04 +00:00

47 lines
727 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 "GuiDialog.h"
#include "ui_LabelUi.h"
namespace lyx {
namespace frontend {
class GuiLabel : public GuiCommand, public Ui::LabelUi
{
Q_OBJECT
public:
GuiLabel(GuiView & lv);
private Q_SLOTS:
void change_adaptor();
void reject();
private:
///
bool isValid();
/// Apply changes
void applyView();
/// update
void updateContents();
};
} // namespace frontend
} // namespace lyx
#endif // GUIINDEX_H