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.
33 lines
680 B
33 lines
680 B
#ifndef _WAWIDGET_H
|
|
#define _WAWIDGET_H
|
|
|
|
#include <tqwidget.h>
|
|
#include "waSkinModel.h"
|
|
|
|
class WaWidget : public TQWidget {
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
public:
|
|
WaWidget(int mapping);
|
|
virtual ~WaWidget();
|
|
|
|
TQSize tqsizeHint();
|
|
|
|
void paintPixmap(int wa_mapping);
|
|
void paintPixmap(int wa_mapping, int number);
|
|
|
|
void paintPixmap(int wa_mapping, int x, int y);
|
|
void paintPixmap(int wa_mapping, int number, int x, int y);
|
|
|
|
void paintBackground() { WaSkinModel::instance()->paintBackgroundTo(mapping, TQT_TQPAINTDEVICE(this), 0, 0); }
|
|
|
|
protected:
|
|
void mousePressEvent(TQMouseEvent *);
|
|
int mapping;
|
|
|
|
private slots:
|
|
void skinChanged();
|
|
};
|
|
|
|
#endif
|