lyx_mirror/src/frontends/qt2/checkedwidgets.h
Angus Leeming 8b2a93c2bc The External dialog for Qt, + a validator for LyXLength + Widget checking.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8197 a592a061-630c-0410-9148-cb99ea01b6c8
2003-12-05 02:49:22 +00:00

39 lines
676 B
C++

// -*- C++ -*-
/**
* \file qt2/checkedwidgets.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Angus Leeming
*
* Full author contact details are available in file CREDITS.
*/
#ifndef CHECKEDWIDGETS_H
#define CHECKEDWIDGETS_H
#include "BCView.h"
class QLabel;
class QLineEdit;
void addCheckedLineEdit(BCView & bcview,
QLineEdit * input, QLabel * label = 0);
class CheckedLineEdit : public CheckedWidget {
public:
CheckedLineEdit(QLineEdit * input, QLabel * label = 0);
private:
///
virtual bool check() const;
///
QLineEdit * input_;
QLabel * label_;
};
#endif // CHECKEDWIDGETS_H