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.
55 lines
1.2 KiB
55 lines
1.2 KiB
/*
|
|
* Mouspedometa
|
|
* Based on the original Xodometer VMS/Motif sources.
|
|
*
|
|
* Written by Armen Nakashian
|
|
* Compaq Computer Corporation
|
|
* Houston TX
|
|
* 22 May 1998
|
|
*
|
|
* If you make improvements or enhancements to Mouspedometa, please send
|
|
* them back to the author at any of the following addresses:
|
|
*
|
|
* armen@nakashian.com
|
|
*
|
|
* Thanks to Mark Granoff for writing the original Xodometer, and
|
|
* the whole KDE team for making such a nice environment to write
|
|
* programs in.
|
|
*
|
|
*
|
|
* This software is provided as is with no warranty of any kind,
|
|
* expressed or implied. Neither Digital Equipment Corporation nor
|
|
* Armen Nakashian will be held accountable for your use of this
|
|
* software.
|
|
*/
|
|
|
|
#ifndef KIMGNUM_H
|
|
#define KIMGNUM_H
|
|
|
|
#include <tqframe.h>
|
|
#include <tqpixmap.h>
|
|
|
|
class KImageNumber : public TQFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
TQ_PROPERTY( double m_value READ value WRITE setValue )
|
|
public:
|
|
KImageNumber(const TQString& font, TQWidget* parent=0, const char* name=0);
|
|
|
|
virtual ~KImageNumber();
|
|
|
|
void paintEvent(TQPaintEvent*);
|
|
virtual TQSize sizeHint() const;
|
|
double value() const;
|
|
|
|
public slots:
|
|
void setValue(double v);
|
|
|
|
protected:
|
|
double m_value;
|
|
TQPixmap* fontPix;
|
|
};
|
|
|
|
#endif
|