diff options
| author | Robert Bieber <robby@bieberphoto.com> | 2010-07-10 06:43:50 +0000 |
|---|---|---|
| committer | Robert Bieber <robby@bieberphoto.com> | 2010-07-10 06:43:50 +0000 |
| commit | 14238740074945d8f61e445c5d6211e1c7a50566 (patch) | |
| tree | 51414e1d00751020d4975c14b607a603a1dc3379 /utils/themeeditor/models/parsetreenode.cpp | |
| parent | 9bb36b0c8efb27dc7c4932d1d7643d50a4b8a2f9 (diff) | |
| download | rockbox-14238740074945d8f61e445c5d6211e1c7a50566.zip rockbox-14238740074945d8f61e445c5d6211e1c7a50566.tar.gz rockbox-14238740074945d8f61e445c5d6211e1c7a50566.tar.bz2 rockbox-14238740074945d8f61e445c5d6211e1c7a50566.tar.xz | |
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
Diffstat (limited to 'utils/themeeditor/models/parsetreenode.cpp')
| -rw-r--r-- | utils/themeeditor/models/parsetreenode.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/utils/themeeditor/models/parsetreenode.cpp b/utils/themeeditor/models/parsetreenode.cpp index 3ccf6c0..973ceb5 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 <iostream> #include <cmath> @@ -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]) |