Theme Editor: Made touch area position relative to enclosing viewports
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29618 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
fa565048f6
commit
5c47872b9c
3 changed files with 5 additions and 4 deletions
|
@ -28,8 +28,8 @@
|
|||
#include <QGraphicsSceneMouseEvent>
|
||||
|
||||
RBTouchArea::RBTouchArea(int width, int height, QString action,
|
||||
const RBRenderInfo& info)
|
||||
: QGraphicsItem(info.screen()),
|
||||
const RBRenderInfo& info, QGraphicsItem* parent)
|
||||
: QGraphicsItem(parent),
|
||||
size(QRectF(0, 0, width, height)), action(action),
|
||||
device(info.device())
|
||||
{
|
||||
|
|
|
@ -31,7 +31,7 @@ class RBTouchArea : public QGraphicsItem
|
|||
{
|
||||
public:
|
||||
RBTouchArea(int width, int height, QString action,
|
||||
const RBRenderInfo& info);
|
||||
const RBRenderInfo& info, QGraphicsItem* parent = 0);
|
||||
virtual ~RBTouchArea();
|
||||
|
||||
QRectF boundingRect() const;
|
||||
|
|
|
@ -930,7 +930,8 @@ bool ParseTreeNode::execTag(const RBRenderInfo& info, RBViewport* viewport)
|
|||
int width = element->params[2].data.number;
|
||||
int height = element->params[3].data.number;
|
||||
QString action(element->params[4].data.text);
|
||||
RBTouchArea* temp = new RBTouchArea(width, height, action, info);
|
||||
RBTouchArea* temp = new RBTouchArea(width, height, action, info,
|
||||
viewport);
|
||||
temp->setPos(x, y);
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue