From 14238740074945d8f61e445c5d6211e1c7a50566 Mon Sep 17 00:00:00 2001 From: Robert Bieber Date: Sat, 10 Jul 2010 06:43:50 +0000 Subject: Theme Editor: Added RBTouchArea class. Touch areas on a theme can now be displayed, but they're not clickable yet git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27369 a1c6a512-1295-4272-9138-f99709370657 --- utils/themeeditor/models/parsetreenode.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'utils/themeeditor/models/parsetreenode.cpp') diff --git a/utils/themeeditor/models/parsetreenode.cpp b/utils/themeeditor/models/parsetreenode.cpp index 3ccf6c0063..973ceb598b 100644 --- a/utils/themeeditor/models/parsetreenode.cpp +++ b/utils/themeeditor/models/parsetreenode.cpp @@ -27,6 +27,7 @@ #include "rbimage.h" #include "rbprogressbar.h" +#include "rbtoucharea.h" #include #include @@ -803,6 +804,25 @@ bool ParseTreeNode::execTag(const RBRenderInfo& info, RBViewport* viewport) return false; + case 'T': + switch(element->tag->name[1]) + { + case '\0': + /* %T */ + if(element->params_count < 5) + return false; + int x = element->params[0].data.numeric; + int y = element->params[1].data.numeric; + int width = element->params[2].data.numeric; + int height = element->params[3].data.numeric; + QString action(element->params[4].data.text); + RBTouchArea* temp = new RBTouchArea(width, height, action, info); + temp->setPos(x, y); + return true; + } + + return false; + case 'V': switch(element->tag->name[1]) -- cgit v1.2.3