You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
437 B
28 lines
437 B
14 years ago
|
/*
|
||
|
* UBCircleFrame.h
|
||
|
*
|
||
|
* Created on: Nov 18, 2008
|
||
|
* Author: luc
|
||
|
*/
|
||
|
|
||
|
#ifndef UBCIRCLEFRAME_H_
|
||
|
#define UBCIRCLEFRAME_H_
|
||
|
|
||
|
#include <QtGui>
|
||
|
|
||
|
class UBCircleFrame : public QFrame
|
||
|
{
|
||
|
public:
|
||
|
UBCircleFrame(QWidget* parent);
|
||
|
virtual ~UBCircleFrame();
|
||
|
|
||
|
qreal currentPenWidth;
|
||
|
qreal maxPenWidth;
|
||
|
|
||
|
protected:
|
||
|
|
||
|
virtual void paintEvent (QPaintEvent * event);
|
||
|
};
|
||
|
|
||
|
#endif /* UBCIRCLEFRAME_H_ */
|