1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#ifndef REGIONWIDGET_H
#define REGIONWIDGET_H
#include <tqframe.h>
/**
* show a widget with a field rectangle, and a mini-region inside
*
* text boxes allow the region to be resized and moved, along with
* click-n-drag
**/
class RegionWidget : public TQFrame
{
Q_OBJECT
TQ_OBJECT
public:
RegionWidget(TQWidget *tqparent);
RegionWidget(const TQSize &viewsize, TQWidget *tqparent);
RegionWidget(int x, int y, int w, int h, const TQSize &viewsize,
TQWidget *tqparent);
RegionWidget(const TQRect ®ion, const TQSize &viewsize, TQWidget *tqparent);
~RegionWidget();
TQRect region() const;
public slots:
void setX(int x);
void setY(int y);
void setWidth(int w);
void setHeight(int h);
void setRegion(const TQRect ®ion);
void setViewSize(const TQSize &size);
signals:
void changed();
void changed(int x, int y, int w, int h);
void changed(const TQRect ®ion);
protected:
virtual void moved(int x, int y);
virtual void resized(int w, int h);
};
#endif
|