Commit c7e19c0123196e055968964a863a3d4c26a14555
1 parent
4a3a4c1b
Updates following rendererType changes
Change-Id: I980d7723528705caa2d903c9b36c24c4b744a55e
Showing
6 changed files
with
7 additions
and
7 deletions
examples/gradients/gradients-example.cpp
| ... | ... | @@ -79,7 +79,7 @@ public: |
| 79 | 79 | |
| 80 | 80 | // ---- Gradient for background |
| 81 | 81 | |
| 82 | - mGradientMap.Insert("rendererType", "gradientRenderer"); | |
| 82 | + mGradientMap.Insert("rendererType", "gradient"); | |
| 83 | 83 | Property::Array stopOffsets; |
| 84 | 84 | stopOffsets.PushBack( 0.0f ); |
| 85 | 85 | stopOffsets.PushBack( 0.3f ); | ... | ... |
examples/image-scaling-and-filtering/image-scaling-and-filtering-example.cpp
| ... | ... | @@ -177,7 +177,7 @@ public: |
| 177 | 177 | |
| 178 | 178 | // Background image: |
| 179 | 179 | Dali::Property::Map backgroundImage; |
| 180 | - backgroundImage.Insert( "rendererType", "imageRenderer" ); | |
| 180 | + backgroundImage.Insert( "rendererType", "image" ); | |
| 181 | 181 | backgroundImage.Insert( "imageUrl", BACKGROUND_IMAGE ); |
| 182 | 182 | backgroundImage.Insert( "imageDesiredWidth", stage.GetSize().width ); |
| 183 | 183 | backgroundImage.Insert( "imageDesiredHeight", stage.GetSize().height ); | ... | ... |
examples/item-view/item-view-example.cpp
| ... | ... | @@ -863,7 +863,7 @@ public: // From ItemFactory |
| 863 | 863 | borderActor.SetColorMode( USE_PARENT_COLOR ); |
| 864 | 864 | |
| 865 | 865 | Property::Map borderProperty; |
| 866 | - borderProperty.Insert( "rendererType", "borderRenderer" ); | |
| 866 | + borderProperty.Insert( "rendererType", "border" ); | |
| 867 | 867 | borderProperty.Insert( "borderColor", Color::WHITE ); |
| 868 | 868 | borderProperty.Insert( "borderSize", ITEM_BORDER_SIZE ); |
| 869 | 869 | borderProperty.Insert( "antiAliasing", true ); |
| ... | ... | @@ -887,7 +887,7 @@ public: // From ItemFactory |
| 887 | 887 | checkbox.SetZ( 0.1f ); |
| 888 | 888 | |
| 889 | 889 | Property::Map solidColorProperty; |
| 890 | - solidColorProperty.Insert( "rendererType", "colorRenderer" ); | |
| 890 | + solidColorProperty.Insert( "rendererType", "color" ); | |
| 891 | 891 | solidColorProperty.Insert( "blendColor", Vector4(0.f, 0.f, 0.f, 0.6f) ); |
| 892 | 892 | checkbox.SetProperty( ImageView::Property::IMAGE, solidColorProperty ); |
| 893 | 893 | ... | ... |
examples/text-message-field/text-message-field-example.cpp
| ... | ... | @@ -89,7 +89,7 @@ public: |
| 89 | 89 | Control photoBoxA = Control::New(); |
| 90 | 90 | |
| 91 | 91 | Dali::Property::Map border; |
| 92 | - border.Insert( "rendererType", "borderRenderer" ); | |
| 92 | + border.Insert( "rendererType", "border" ); | |
| 93 | 93 | border.Insert( "borderColor", Color::WHITE ); |
| 94 | 94 | border.Insert( "borderSize", 1.f ); |
| 95 | 95 | photoBoxA.SetProperty( Control::Property::BACKGROUND, border ); | ... | ... |
resources/style/demo-theme.json.in
resources/style/mobile/demo-theme.json.in