Tom Robinson [Wed, 18 Nov 2015 10:33:03 +0000 (10:33 +0000)]
Control not always rendering background image depending on add order
Change-Id: Ie16a55fd59278d65f8665994972cb90708a4891e
Paul Wisbey [Tue, 17 Nov 2015 17:36:54 +0000 (09:36 -0800)]
Merge "Adding TextField Popup behaviour to (Programming) Guide" into devel/master
Kimmo Hoikka [Tue, 17 Nov 2015 17:07:25 +0000 (09:07 -0800)]
Merge "Changed button to use ImageView instead of ImageActor and enabled custom fragment shaders for n-path renderer" into devel/master
Kimmo Hoikka [Tue, 17 Nov 2015 17:07:14 +0000 (09:07 -0800)]
Merge "(ImageRenderer)Stop the duplicated image loading when using custom shader" into devel/master
Agnelo Vaz [Mon, 16 Nov 2015 12:26:33 +0000 (12:26 +0000)]
Adding TextField Popup behaviour to (Programming) Guide
Change-Id: I370988ae201d0b3ecabb62061bf9fb57b8f78930
Signed-off-by: Agnelo Vaz <agnelo.vaz@samsung.com>
Agnelo Vaz [Tue, 10 Nov 2015 17:31:20 +0000 (17:31 +0000)]
TextSelection Popup to be aware of requirement to Paste and whitespace selectable
* This shows the [PASTE][CLIPBOARD] buttons when a tap occurs in edit mode (if something to paste)
* To see [select][select all] longpress or double tap text
* Whitespace can be selected by double tap or longpress
* TextAtlasRenderer returns a renderable actor even when all text is whitespace
Change-Id: I1ac5cd1f76e554b1c9d59ef8b8f64fe741aa6855
Signed-off-by: Agnelo Vaz <agnelo.vaz@samsung.com>
Chu Hoang [Fri, 13 Nov 2015 09:58:09 +0000 (09:58 +0000)]
Changed button to use ImageView instead of ImageActor and enabled custom fragment shaders for n-path renderer
Change-Id: I3edcb09f229e2b00fc14cae0a0215cf396a0ae58
Xiangyin Ma [Wed, 11 Nov 2015 18:54:38 +0000 (18:54 +0000)]
(ImageRenderer)Stop the duplicated image loading when using custom shader
Change-Id: I972730e63d40ac0305d4299fcdedbe66bf312aff
Adeel Kazmi [Mon, 16 Nov 2015 10:55:34 +0000 (10:55 +0000)]
(ImageView) Restore erroneously removed APIs & Fix SetImage behaviour
SetImage Issues fixed:
- SetImage should NOT show an error image if empty/NULL. It should show nothing as per API description.
- Changing between types (Image type to URL, property-map to Image etc.) did not work properly.
- Ensure a RelayoutRequest is done when SetImage is called so that our size is renegotiated.
Change-Id: I066130a697b7791f791b5b9b63733ec482ceaed6
Adeel Kazmi [Fri, 13 Nov 2015 16:41:02 +0000 (08:41 -0800)]
Merge "DALi Version 1.1.10" into devel/master
Adeel Kazmi [Fri, 13 Nov 2015 16:33:48 +0000 (16:33 +0000)]
DALi Version 1.1.10
Change-Id: Iff295a71e6743f45d367e087d96bfa577cbc51e1
Chu Hoang [Wed, 11 Nov 2015 15:53:00 +0000 (15:53 +0000)]
Remove NinePatchMaskEffect
Change-Id: Ib3f5c029ea7f80a559edcbc631db968cd1656bed
Chu Hoang [Thu, 12 Nov 2015 13:19:00 +0000 (13:19 +0000)]
Updated Programming guide.
Updated Control background with a section about renderers.
Updated ImageActor section.
Added ImageView section.
Updated ShaderEffects section.
Change-Id: Ib3df5abf69e789311d58b95a115caddc3b6ab63c
Kimmo Hoikka [Thu, 12 Nov 2015 18:24:33 +0000 (10:24 -0800)]
Merge "Remove instances of finding a property before RegisterProperty" into devel/master
Adeel Kazmi [Thu, 12 Nov 2015 17:18:38 +0000 (09:18 -0800)]
Merge "Added generic signal binding for toolkit controls in JavaScript" into devel/master
Adeel Kazmi [Thu, 12 Nov 2015 11:20:46 +0000 (11:20 +0000)]
Remove instances of finding a property before RegisterProperty
This is because RegisterProperty checks whether the property has been registered before, and just calls
SetProperty it it has been.
Change-Id: I20a415edd05afd6d0b8f05171ea11c94e4f5cc57
Richard Huang [Wed, 11 Nov 2015 17:30:50 +0000 (17:30 +0000)]
Added generic signal binding for toolkit controls in JavaScript
This should cover generic use cases where the signal callback only needs to
be aware of who emits the signal and do not need to return any parameter.
This will work for most of control signals without specific binding.
For example, for button, you can do:
var button = new dali.Control("PushButton");
button.name = "myButton";
button.connect("pressed", app.onButtonPressed);
button.connect("released", app.onButtonReleased);
app.onButtonPressed = function( button ) {
console.log(button.name + " Pressed!!!");
}
app.onButtonReleased = function( button ) {
console.log(button.name + " Released!!!");
}
button.disconnect("pressed", app.onButtonPressed);
button.disconnect("released", app.onButtonReleased);
Change-Id: I3144ca274cc07e68d81ba78cc606e5367ea5419b
Kimmo Hoikka [Wed, 11 Nov 2015 18:03:38 +0000 (10:03 -0800)]
Merge "Remove unnamed namespace from DissolveEffect (Klocwork Error)" into devel/master
Adeel Kazmi [Wed, 11 Nov 2015 17:24:18 +0000 (09:24 -0800)]
Merge "Fix overshoot issue - not to make an overshoot actor twice" into devel/master
Adeel Kazmi [Wed, 11 Nov 2015 15:35:47 +0000 (15:35 +0000)]
Remove unnamed namespace from DissolveEffect (Klocwork Error)
Change-Id: I750f4130f948728b748504441e570b35a23d6880
Kimmo Hoikka [Wed, 11 Nov 2015 13:46:52 +0000 (05:46 -0800)]
Merge "Fix various Klocwork errors" into devel/master
Adeel Kazmi [Wed, 11 Nov 2015 12:32:07 +0000 (12:32 +0000)]
Fix various Klocwork errors
Change-Id: I34c5e2b4471d9c22fe3596b7c5417371573d84eb
Richard Huang [Wed, 11 Nov 2015 10:50:34 +0000 (10:50 +0000)]
TextureRect uniform not registered when multiple ImageViews created with the same url before on stage
Change-Id: If42a80e0510965d1040cf229ad07d751fe3d8490
Heeyong Song [Wed, 21 Oct 2015 08:32:52 +0000 (17:32 +0900)]
Fix overshoot issue - not to make an overshoot actor twice
Change-Id: Ia4228a1842ff499566f2d2f02dfcce5297804979
Tom Robinson [Tue, 10 Nov 2015 17:01:54 +0000 (17:01 +0000)]
Fix for checkbox tick not animating on gradually
Change-Id: I3c9fa6f9508b6f7331d826b6d401a14fb8647239
Adeel Kazmi [Mon, 9 Nov 2015 12:34:53 +0000 (12:34 +0000)]
(Automated Tests) Changes required after removal of time getters from PlatformAbstraction
Change-Id: I13aad80d074e71edfafb4e184c8ef1ab4c423a06
Kimmo Hoikka [Mon, 9 Nov 2015 16:37:02 +0000 (08:37 -0800)]
Merge "Automatic image atlasing" into devel/master
Xiangyin Ma [Wed, 21 Oct 2015 15:52:35 +0000 (16:52 +0100)]
Automatic image atlasing
Change-Id: Iccff3a5aad466a696211b95f29d1411009cbf102
Tom Robinson [Tue, 3 Nov 2015 16:29:26 +0000 (16:29 +0000)]
Fixed KeyboardFocusManager::ClearFocus is called twice on focus loss
Change-Id: I65e456dcea2011a4bdfe4db2afe8cc072107e50e
Kimmo Hoikka [Fri, 6 Nov 2015 14:27:50 +0000 (06:27 -0800)]
Merge "Fixed bug when delete first row in the tableView" into devel/master
Kimmo Hoikka [Fri, 6 Nov 2015 13:58:54 +0000 (05:58 -0800)]
Merge "(Automated Tests) Update test suite after changes to PlatformAbstraction" into devel/master
Tom Robinson [Fri, 6 Nov 2015 10:37:05 +0000 (10:37 +0000)]
DALi Version 1.1.9
Change-Id: I210baf579edf9d0c067debef5b48f5e4dc11eb46
Adeel Kazmi [Thu, 5 Nov 2015 16:58:53 +0000 (16:58 +0000)]
(Automated Tests) Update test suite after changes to PlatformAbstraction
Change-Id: I39d9eb81195f9326e15a4bcee48b4609cc249186
Richard Huang [Thu, 5 Nov 2015 11:11:30 +0000 (11:11 +0000)]
Allow to extract string value from a property with type of property map in JavaScript
Change-Id: I6a59cb84c9c105a0692d1492a7e34f80946b988e
Chu Hoang [Tue, 3 Nov 2015 13:56:12 +0000 (13:56 +0000)]
Fixed RendererFactory::ResetRenderer not working correctly when actor is already on stage.
Change-Id: Idbb0afabd09213f04b9cf95a4d7a83cc66d45ddd
RendererFactory::ResetRenderer( Toolkit::ControlRenderer&, Actor&, const Property::Map& ) did not add the renderer to the actor if the actor was already on stage but without a previous control renderer attached.
Richard Huang [Wed, 4 Nov 2015 11:30:38 +0000 (11:30 +0000)]
Support to extract values from property map within property map in JavaScript binding
Change-Id: I70832fdff8b72bea73e200e88ff751d87b756234
Kimmo Hoikka [Wed, 4 Nov 2015 11:18:37 +0000 (03:18 -0800)]
Merge "Changed all property & signal names to lowerCamelCase" into devel/master
Adeel Kazmi [Mon, 2 Nov 2015 18:15:39 +0000 (18:15 +0000)]
Changed all property & signal names to lowerCamelCase
e.g. anchor-point-x --> anchorPointX
Change-Id: Ieac0ff1c4f2fee7f3121cd8bed03e60a554e4781
Tom Robinson [Fri, 23 Oct 2015 13:26:57 +0000 (14:26 +0100)]
Fixed ItemView flicking to top now shows overshoot indicator
Change-Id: I4d4e2b2ae51db8b74d76d729842011846cd84114
suhyung Eom [Mon, 2 Nov 2015 06:42:11 +0000 (15:42 +0900)]
Fixed bug when delete first row in the tableView
Signed-off-by: suhyung Eom <suhyung.eom@samsung.com>
Change-Id: Icab6a391119c35d2e7a56c3ce397927b4b84d2f5
Kimmo Hoikka [Fri, 30 Oct 2015 11:56:12 +0000 (11:56 +0000)]
Remove SetTextureAffectsTransparency as it is not needed
Change-Id: Idff1a07f187ab36df69ec541d5ff7c2aa6b1d420
Adeel Kazmi [Thu, 29 Oct 2015 11:38:26 +0000 (04:38 -0700)]
Merge "Fix Kloc issues." into devel/master
Victor Cebollada [Thu, 29 Oct 2015 10:58:17 +0000 (10:58 +0000)]
Fix Kloc issues.
Change-Id: I339d9a45ebe0db37d885bd658ade44035586a9e5
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
Nick Holland [Thu, 29 Oct 2015 10:31:52 +0000 (10:31 +0000)]
DALi Version 1.1.8
Change-Id: I197fd63afc6b5ccdf0c666a4bbafc4264e61effc
Richard Huang [Mon, 12 Oct 2015 10:58:35 +0000 (11:58 +0100)]
JavaScript binding for new mesh APIs
Change-Id: Iec5fc37065d17b52aa3878b464df5681b9b6d775
Kimmo Hoikka [Tue, 27 Oct 2015 14:29:07 +0000 (07:29 -0700)]
Merge "Refactored ControlRenderer so that derived classes are responsible for the creation of the renderer." into devel/master
Kimmo Hoikka [Tue, 27 Oct 2015 14:24:58 +0000 (07:24 -0700)]
Merge "Reimplemented CubeTransitionEffect to use renderers and removed usage of ImageActor." into devel/master
Paul Wisbey [Tue, 27 Oct 2015 13:35:21 +0000 (06:35 -0700)]
Merge "Enable setting of ScrollView properties within TextSelectionToolbar via json" into devel/master
Paul Wisbey [Tue, 27 Oct 2015 13:25:19 +0000 (06:25 -0700)]
Merge "Fix IMF manager issues." into devel/master
Chu Hoang [Thu, 15 Oct 2015 10:48:26 +0000 (11:48 +0100)]
Refactored ControlRenderer so that derived classes are responsible for the creation of the renderer.
This allows ImageRenderer to fully manage the life cycle of the renderer, fixing the bug where changing an image in an ImageView whilsts it is on the stage also changes the cached renderer and therefore any other actor that used that cached renderer.
Change-Id: I2e8ba678445751c95c961f43da5be9a3f3cf1c58
Agnelo Vaz [Fri, 23 Oct 2015 21:07:12 +0000 (22:07 +0100)]
Enable setting of ScrollView properties within TextSelectionToolbar via json
Change-Id: Ica91d0fa28532fe70582945fde8182008786e176
Signed-off-by: Agnelo Vaz <agnelo.vaz@samsung.com>
Chu Hoang [Tue, 27 Oct 2015 09:54:04 +0000 (09:54 +0000)]
Fixed typo in BorderRenderer causing the overwriting of the cache's color shader with border shader.
Change-Id: I0f2b38a70d9e6a9c38579f9b7c4226ab31a51175
Victor Cebollada [Thu, 22 Oct 2015 14:52:39 +0000 (15:52 +0100)]
Fix IMF manager issues.
The text underline while pre-edit text differs from other solutions/toolkits i.e EFL or Android.
One use case that looks different is:
1) Type a word
2) Tap somewhere inside the word
3) Add more text. At this point the underline is visible in Dali but not in EFL or Android.
In addition if the text added in the step 3) is deleted, the underline remains in one character, which is wrong.
Another use case:
1) Type a word
2) Tap at the end of the last word of the text
3) Add more text. At this point the whole last word should be underlined as pre-edit. Sometimes it happens, sometimes it doesn't.
Change-Id: Ib0c76157260776296dfec34680bd200c1b3268f1
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
Adeel Kazmi [Mon, 26 Oct 2015 15:53:28 +0000 (08:53 -0700)]
Merge "Fixed typo in BorderRenderer causing the overwriting of the cache's quad geometry with border geometry." into devel/master
Chu Hoang [Mon, 19 Oct 2015 08:54:52 +0000 (09:54 +0100)]
Reimplemented CubeTransitionEffect to use renderers and removed usage of ImageActor.
Change-Id: If242a45c76a21046feea94af5ce3bac2290b3c2c
Adeel Kazmi [Mon, 26 Oct 2015 10:44:26 +0000 (03:44 -0700)]
Merge "Fixed typo in ImageView::GetNaturalSize()." into devel/master
Chu Hoang [Mon, 26 Oct 2015 10:17:35 +0000 (10:17 +0000)]
Fixed typo in BorderRenderer causing the overwriting of the cache's quad geometry with border geometry.
Change-Id: I4acb48dfc074727b5ec1d8a0b9f4b68854730e8f
Adeel Kazmi [Fri, 23 Oct 2015 15:09:20 +0000 (08:09 -0700)]
Merge "ItemView: Fade off overshoot indicator when moving in opposite direction" into devel/master
Chu Hoang [Fri, 23 Oct 2015 15:03:12 +0000 (16:03 +0100)]
Fixed typo in ImageView::GetNaturalSize().
Change-Id: I28621277e343e7159cf2ed023957965d830d586a
Adeel Kazmi [Fri, 23 Oct 2015 14:19:19 +0000 (07:19 -0700)]
Merge "DALi Version 1.1.7" into devel/master
Kimmo Hoikka [Fri, 23 Oct 2015 13:04:58 +0000 (06:04 -0700)]
Merge "Changed ShadowView to use new custom effects and ImageView." into devel/master
Kimmo Hoikka [Fri, 23 Oct 2015 12:29:44 +0000 (05:29 -0700)]
Merge "Fix text and control depth indices to have sane values" into devel/master
Tom Robinson [Fri, 23 Oct 2015 11:01:40 +0000 (12:01 +0100)]
ItemView: Fade off overshoot indicator when moving in opposite direction
Change-Id: I09b1bde847c5859577e58734b1b68ff2af9e0abb
Lee Morgan [Fri, 23 Oct 2015 10:00:39 +0000 (11:00 +0100)]
DALi Version 1.1.7
Change-Id: I37d9baf1f13629528d20010aa201c55b1dca1e8c
Kimmo Hoikka [Thu, 22 Oct 2015 10:25:48 +0000 (11:25 +0100)]
Fix text and control depth indices to have sane values
no need to add the tree depth as that is already added by the algorithm
Change-Id: I3de4479328a78a3d42d0bdd58d2c411d77d18029
Chu Hoang [Wed, 21 Oct 2015 15:42:40 +0000 (16:42 +0100)]
Added missing calls the base class Control::OnStageConnection etc in derived classes.
Change-Id: Ib17ca40519c8ccb9034b7327b79c955619f0d07b
Paul Wisbey [Wed, 21 Oct 2015 13:26:47 +0000 (14:26 +0100)]
Preserve the ScrollBar alpha value from the stylesheet
The alpha value from stylesheet was lost when the indicator was shown
(it was hard-coded to 1.0f)
Change-Id: I67a063ff5f9dad3393ad494c44b75138fb55901f
Chu Hoang [Fri, 16 Oct 2015 15:06:01 +0000 (16:06 +0100)]
Changed ShadowView to use new custom effects and ImageView.
Change-Id: I250947e36e22596d0cfda6ef7dbff1d00b5af477
Paul Wisbey [Tue, 20 Oct 2015 12:56:55 +0000 (05:56 -0700)]
Merge "Fix cursor position for ligatures and group of glyphs." into devel/master
Richard Huang [Tue, 20 Oct 2015 10:38:31 +0000 (11:38 +0100)]
Fixed issue that ItemView overshoot appears before it reaches the end of the list
Change-Id: I8d8a6093e7494f091d7aa1254b0ff2d48d9f5ae2
Victor Cebollada [Tue, 20 Oct 2015 08:18:35 +0000 (09:18 +0100)]
Fix cursor position for ligatures and group of glyphs.
* Fix an issue with the Devanagari script.
Change-Id: I463d2171add2829f14039d8b2ac5bd68bafe151e
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
Adeel Kazmi [Mon, 19 Oct 2015 16:58:28 +0000 (09:58 -0700)]
Merge "Changed Motion Blur and MotionStretch Effect to use new custom shaders." into devel/master
Adeel Kazmi [Mon, 19 Oct 2015 14:52:49 +0000 (07:52 -0700)]
Merge "Append clipboard text after current pre-edit text" into devel/master
Paul Wisbey [Mon, 19 Oct 2015 13:36:06 +0000 (14:36 +0100)]
Append clipboard text after current pre-edit text
Issue description:
1) Configure keyboard to show clipboard item
2) Type some text without pressing space
3) Use the keyboard clipboard short-cut to paste test whilst pre-text is shown
4) Then when the next character is typed, the pre-edit text reappears
Solution is to stop prediction before pasting (appending instead of replacing)
Change-Id: Ibd661e2f4d377c8333711e97c3c7a751caf8c15f
Tom Robinson [Mon, 19 Oct 2015 08:36:07 +0000 (09:36 +0100)]
ScrollView moves in opposite direction sometimes when panning
Change-Id: I0d68ce135cae455d04156aaa806584b8c22e4919
Victor Cebollada [Tue, 13 Oct 2015 10:16:20 +0000 (11:16 +0100)]
Reposition the grab/selection handles position.
Change-Id: Ifbdf3f6687920dbc13bc29bfd41ccd04c76af272
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
Chu Hoang [Thu, 15 Oct 2015 15:56:20 +0000 (16:56 +0100)]
Changed Motion Blur and MotionStretch Effect to use new custom shaders.
Change-Id: I0b03b593b7b203841f6df51fd4b02e25e6ea0233
Victor Cebollada [Mon, 12 Oct 2015 11:17:47 +0000 (12:17 +0100)]
Reposition Text Control's popup.
Change-Id: I0bc67d49a9b341033e7f9800a627c4ee0724bf52
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
Paul Wisbey [Thu, 15 Oct 2015 16:07:51 +0000 (09:07 -0700)]
Merge "Text Shadow Implementation via copied renderer." into devel/master
Kimmo Hoikka [Thu, 15 Oct 2015 15:07:20 +0000 (08:07 -0700)]
Merge "Changed NPatchRenderer and ImageRenderer to use an "broken image" if they try to renderer an invalid image." into devel/master
Richard Underhill [Thu, 15 Oct 2015 13:25:00 +0000 (14:25 +0100)]
Text Shadow Implementation via copied renderer.
Change-Id: I1549e0b0c788b252ad176210f503c76397112e51
Signed-off-by: Richard Underhill <r.underhill@partner.samsung.com>
Paul Wisbey [Thu, 15 Oct 2015 11:41:09 +0000 (12:41 +0100)]
Provide TextChanged() signal after PASTE
Change-Id: Id17a4fdd58426aa016ae0ead597ed35a9c6d5b09
Kimmo Hoikka [Wed, 14 Oct 2015 15:57:33 +0000 (16:57 +0100)]
Remove some dead and non-thread safe internal uniforms
Change-Id: I41058f8813f04a83f1b22cc38c71106a9b12b77a
Kimmo Hoikka [Wed, 14 Oct 2015 15:25:00 +0000 (08:25 -0700)]
Merge "Changed Distance Field effect effect to use new custom shaders." into devel/master
Paul Wisbey [Wed, 14 Oct 2015 13:52:10 +0000 (06:52 -0700)]
Merge "Comment correction for Disambiguated function" into devel/master
Chu Hoang [Wed, 14 Oct 2015 10:53:40 +0000 (11:53 +0100)]
Changed Distance Field effect effect to use new custom shaders.
Change-Id: Ia8cc4142b68a51880d142ba4dbf7b01f61e271c4
Chu Hoang [Fri, 25 Sep 2015 10:17:43 +0000 (11:17 +0100)]
Changed NPatchRenderer and ImageRenderer to use an "broken image" if they try to renderer an invalid image.
Change-Id: I9cc4146dd2d7c8e775a63c774937d3bd1ab47b7d
Agnelo Vaz [Wed, 14 Oct 2015 09:42:09 +0000 (10:42 +0100)]
Comment correction for Disambiguated function
Change-Id: I1b37d4ab53e048a501be1aeeb00723241bce4938
Signed-off-by: Agnelo Vaz <agnelo.vaz@samsung.com>
Kimmo Hoikka [Wed, 14 Oct 2015 09:37:01 +0000 (02:37 -0700)]
Merge "DGEUF-110: Limit ScrollView to scroll maximum 1 page on flick" into devel/master
Tom Robinson [Tue, 13 Oct 2015 09:50:49 +0000 (10:50 +0100)]
DGEUF-110: Limit ScrollView to scroll maximum 1 page on flick
Change-Id: I92b4c665c7c771b5ddb0667ebdf024bd640ae81b
Ferran Sole [Tue, 6 Oct 2015 15:50:53 +0000 (16:50 +0100)]
Changes following "Remove Sampler scene object"
Change-Id: I7934f6d0c516687c252f49509812f2a87becff3a
Kimmo Hoikka [Tue, 13 Oct 2015 14:03:57 +0000 (07:03 -0700)]
Merge "Implemented n-patch rendering for NPatchRenderer." into devel/master
Chu Hoang [Tue, 22 Sep 2015 13:21:17 +0000 (14:21 +0100)]
Implemented n-patch rendering for NPatchRenderer.
Change-Id: Ic7304dc47483cc228dce9e715be9bc0bb46a081e
Kimmo Hoikka [Tue, 13 Oct 2015 10:55:16 +0000 (03:55 -0700)]
Merge "Remove dead constraint function from GaussianBlurView" into devel/master
Kimmo Hoikka [Tue, 13 Oct 2015 09:51:54 +0000 (10:51 +0100)]
Remove dead constraint function from GaussianBlurView
Change-Id: I1c71f35a99d3263de0348b605f88cd56f6a5deea
Jonghyun Ho [Tue, 22 Sep 2015 04:40:54 +0000 (13:40 +0900)]
Update scroll end effect GUI
Change-Id: I8d11ff97bed46ffc3c8fa2bada37adeffe9f6c5e
Kimmo Hoikka [Mon, 12 Oct 2015 17:27:02 +0000 (10:27 -0700)]
Merge "Refactor to remove ControlRenderer::mCachedRenderer member." into devel/master
Kimmo Hoikka [Mon, 12 Oct 2015 14:54:43 +0000 (07:54 -0700)]
Merge "Move common images folder to the style folder" into devel/master
Chu Hoang [Fri, 9 Oct 2015 09:05:44 +0000 (10:05 +0100)]
Refactor to remove ControlRenderer::mCachedRenderer member.
Change-Id: I4ba5ccc62b5de25a76f21401b3914efa06a41649
Tom Robinson [Fri, 9 Oct 2015 09:48:47 +0000 (10:48 +0100)]
DALi Version 1.1.6
Change-Id: Idedbf00fc557c74c1624eb90cdab36c4db57af04