summaryrefslogtreecommitdiff
path: root/demo/dali-demo.cpp
diff options
context:
space:
mode:
authorAdeel Kazmi <adeel.kazmi@samsung.com>2014-05-28 12:00:01 +0100
committerAdeel Kazmi <adeel.kazmi@samsung.com>2014-05-28 12:08:07 +0100
commit446388d57133b5fc38579b837d31992277412f96 (patch)
tree68dc8b2f793f9ab4fdd0c48de35ed0c8fed8bfe7 /demo/dali-demo.cpp
parent6152780114d28bb38e0e1e2fa7238943995b0404 (diff)
downloaddali-demo-446388d57133b5fc38579b837d31992277412f96.tar.gz
dali-demo-446388d57133b5fc38579b837d31992277412f96.tar.bz2
dali-demo-446388d57133b5fc38579b837d31992277412f96.zip
Added ScrollView demo & removed hello-world from demo launcher
Diffstat (limited to 'demo/dali-demo.cpp')
-rw-r--r--demo/dali-demo.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/demo/dali-demo.cpp b/demo/dali-demo.cpp
index 1ce4085c..9194f65a 100644
--- a/demo/dali-demo.cpp
+++ b/demo/dali-demo.cpp
@@ -24,6 +24,7 @@ int main(int argc, char **argv)
DaliTableView demo(app);
+ demo.AddExample(Example("bubble-effect.example", "Bubbles"));
demo.AddExample(Example("blocks.example", "Blocks"));
demo.AddExample(Example("cluster.example", "Cluster control"));
demo.AddExample(Example("cube-transition-effect.example", "Cube Transition"));
@@ -33,8 +34,8 @@ int main(int argc, char **argv)
demo.AddExample(Example("motion-blur.example", "Motion Blur"));
demo.AddExample(Example("motion-stretch.example", "Motion Stretch"));
demo.AddExample(Example("page-turn-view.example", "Page Turn View"));
+ demo.AddExample(Example("scroll-view.example", "Scroll View"));
demo.AddExample(Example("shadow-bone-lighting.example", "Lights and shadows"));
- demo.AddExample(Example("hello-world.example", "Hello World"));
app.MainLoop();
return 0;