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.
tdemultimedia/noatun/modules/winskin/waWidget.h

33 lines
670 B

#ifndef _WAWIDGET_H
#define _WAWIDGET_H
#include <tqwidget.h>
#include "waSkinModel.h"
class WaWidget : public TQWidget {
TQ_OBJECT
public:
WaWidget(int mapping);
virtual ~WaWidget();
TQSize sizeHint();
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