platform/core/uifw/dali-toolkit.git
8 years agoChanged button to use ImageView instead of ImageActor and enabled custom fragment... 40/51740/13
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

8 years ago(ImageRenderer)Stop the duplicated image loading when using custom shader 52/51652/4
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

8 years ago(ImageView) Restore erroneously removed APIs & Fix SetImage behaviour 26/51826/7
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

8 years agoMerge "DALi Version 1.1.10" into devel/master
Adeel Kazmi [Fri, 13 Nov 2015 16:41:02 +0000 (08:41 -0800)]
Merge "DALi Version 1.1.10" into devel/master

8 years agoDALi Version 1.1.10 71/51771/1 dali_1.1.10
Adeel Kazmi [Fri, 13 Nov 2015 16:33:48 +0000 (16:33 +0000)]
DALi Version 1.1.10

Change-Id: Iff295a71e6743f45d367e087d96bfa577cbc51e1

8 years agoRemove NinePatchMaskEffect 43/51643/4
Chu Hoang [Wed, 11 Nov 2015 15:53:00 +0000 (15:53 +0000)]
Remove NinePatchMaskEffect

Change-Id: Ib3f5c029ea7f80a559edcbc631db968cd1656bed

8 years agoUpdated Programming guide. 07/51707/4
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

8 years agoMerge "Remove instances of finding a property before RegisterProperty" into devel...
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

8 years agoMerge "Added generic signal binding for toolkit controls in JavaScript" into devel...
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

8 years agoRemove instances of finding a property before RegisterProperty 05/51705/1
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

8 years agoAdded generic signal binding for toolkit controls in JavaScript 50/51650/2
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

8 years agoMerge "Remove unnamed namespace from DissolveEffect (Klocwork Error)" into devel...
Kimmo Hoikka [Wed, 11 Nov 2015 18:03:38 +0000 (10:03 -0800)]
Merge "Remove unnamed namespace from DissolveEffect (Klocwork Error)" into devel/master

8 years agoMerge "Fix overshoot issue - not to make an overshoot actor twice" 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

8 years agoRemove unnamed namespace from DissolveEffect (Klocwork Error) 41/51641/2
Adeel Kazmi [Wed, 11 Nov 2015 15:35:47 +0000 (15:35 +0000)]
Remove unnamed namespace from DissolveEffect (Klocwork Error)

Change-Id: I750f4130f948728b748504441e570b35a23d6880

8 years agoMerge "Fix various Klocwork errors" into devel/master
Kimmo Hoikka [Wed, 11 Nov 2015 13:46:52 +0000 (05:46 -0800)]
Merge "Fix various Klocwork errors" into devel/master

8 years agoFix various Klocwork errors 35/51635/2
Adeel Kazmi [Wed, 11 Nov 2015 12:32:07 +0000 (12:32 +0000)]
Fix various Klocwork errors

Change-Id: I34c5e2b4471d9c22fe3596b7c5417371573d84eb

8 years agoTextureRect uniform not registered when multiple ImageViews created with the same... 27/51627/2
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

8 years agoFix overshoot issue - not to make an overshoot actor twice 51/49951/2
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

8 years agoFix for checkbox tick not animating on gradually 70/51570/2
Tom Robinson [Tue, 10 Nov 2015 17:01:54 +0000 (17:01 +0000)]
Fix for checkbox tick not animating on gradually

Change-Id: I3c9fa6f9508b6f7331d826b6d401a14fb8647239

8 years ago(Automated Tests) Changes required after removal of time getters from PlatformAbstraction 30/51430/3
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

8 years agoMerge "Automatic image atlasing" into devel/master
Kimmo Hoikka [Mon, 9 Nov 2015 16:37:02 +0000 (08:37 -0800)]
Merge "Automatic image atlasing" into devel/master

8 years agoAutomatic image atlasing 31/49931/33
Xiangyin Ma [Wed, 21 Oct 2015 15:52:35 +0000 (16:52 +0100)]
Automatic image atlasing

Change-Id: Iccff3a5aad466a696211b95f29d1411009cbf102

8 years agoFixed KeyboardFocusManager::ClearFocus is called twice on focus loss 39/50939/5
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

8 years agoMerge "Fixed bug when delete first row in the tableView" into devel/master
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

8 years agoMerge "(Automated Tests) Update test suite after changes to PlatformAbstraction"...
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

8 years agoDALi Version 1.1.9 08/51308/1 dali_1.1.9
Tom Robinson [Fri, 6 Nov 2015 10:37:05 +0000 (10:37 +0000)]
DALi Version 1.1.9

Change-Id: I210baf579edf9d0c067debef5b48f5e4dc11eb46

8 years ago(Automated Tests) Update test suite after changes to PlatformAbstraction 46/51246/1
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

8 years agoAllow to extract string value from a property with type of property map in JavaScript 25/51225/2
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

8 years agoFixed RendererFactory::ResetRenderer not working correctly when actor is already... 29/50929/6
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.

8 years agoSupport to extract values from property map within property map in JavaScript binding 12/51012/2
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

8 years agoMerge "Changed all property & signal names to lowerCamelCase" into devel/master
Kimmo Hoikka [Wed, 4 Nov 2015 11:18:37 +0000 (03:18 -0800)]
Merge "Changed all property & signal names to lowerCamelCase" into devel/master

8 years agoChanged all property & signal names to lowerCamelCase 35/50835/7
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

8 years agoFixed ItemView flicking to top now shows overshoot indicator 07/50107/2
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

8 years agoFixed bug when delete first row in the tableView 78/50778/1
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

8 years agoRemove SetTextureAffectsTransparency as it is not needed 40/50740/3
Kimmo Hoikka [Fri, 30 Oct 2015 11:56:12 +0000 (11:56 +0000)]
Remove SetTextureAffectsTransparency as it is not needed

Change-Id: Idff1a07f187ab36df69ec541d5ff7c2aa6b1d420

8 years agoMerge "Fix Kloc issues." into devel/master
Adeel Kazmi [Thu, 29 Oct 2015 11:38:26 +0000 (04:38 -0700)]
Merge "Fix Kloc issues." into devel/master

8 years agoFix Kloc issues. 22/50522/1
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>
8 years agoDALi Version 1.1.8 09/50509/1 dali_1.1.8
Nick Holland [Thu, 29 Oct 2015 10:31:52 +0000 (10:31 +0000)]
DALi Version 1.1.8

Change-Id: I197fd63afc6b5ccdf0c666a4bbafc4264e61effc

8 years agoJavaScript binding for new mesh APIs 00/49300/13
Richard Huang [Mon, 12 Oct 2015 10:58:35 +0000 (11:58 +0100)]
JavaScript binding for new mesh APIs

Change-Id: Iec5fc37065d17b52aa3878b464df5681b9b6d775

8 years agoMerge "Refactored ControlRenderer so that derived classes are responsible for the...
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

8 years agoMerge "Reimplemented CubeTransitionEffect to use renderers and removed usage of Image...
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

8 years agoMerge "Enable setting of ScrollView properties within TextSelectionToolbar via json...
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

8 years agoMerge "Fix IMF manager issues." into devel/master
Paul Wisbey [Tue, 27 Oct 2015 13:25:19 +0000 (06:25 -0700)]
Merge "Fix IMF manager issues." into devel/master

8 years agoRefactored ControlRenderer so that derived classes are responsible for the creation... 05/49605/10
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

8 years agoEnable setting of ScrollView properties within TextSelectionToolbar via json 22/50122/6
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>
8 years agoFixed typo in BorderRenderer causing the overwriting of the cache's color shader... 67/50267/1
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

8 years agoFix IMF manager issues. 20/50120/8
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>
8 years agoMerge "Fixed typo in BorderRenderer causing the overwriting of the cache's quad geome...
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

8 years agoReimplemented CubeTransitionEffect to use renderers and removed usage of ImageActor. 44/50044/5
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

8 years agoMerge "Fixed typo in ImageView::GetNaturalSize()." into devel/master
Adeel Kazmi [Mon, 26 Oct 2015 10:44:26 +0000 (03:44 -0700)]
Merge "Fixed typo in ImageView::GetNaturalSize()." into devel/master

8 years agoFixed typo in BorderRenderer causing the overwriting of the cache's quad geometry... 66/50166/1
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

8 years agoMerge "ItemView: Fade off overshoot indicator when moving in opposite direction"...
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

8 years agoFixed typo in ImageView::GetNaturalSize(). 14/50114/1
Chu Hoang [Fri, 23 Oct 2015 15:03:12 +0000 (16:03 +0100)]
Fixed typo in ImageView::GetNaturalSize().

Change-Id: I28621277e343e7159cf2ed023957965d830d586a

8 years agoMerge "DALi Version 1.1.7" into devel/master
Adeel Kazmi [Fri, 23 Oct 2015 14:19:19 +0000 (07:19 -0700)]
Merge "DALi Version 1.1.7" into devel/master

8 years agoMerge "Changed ShadowView to use new custom effects and ImageView." 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

8 years agoMerge "Fix text and control depth indices to have sane values" 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

8 years agoItemView: Fade off overshoot indicator when moving in opposite direction 52/50052/1
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

8 years agoDALi Version 1.1.7 35/50035/1 dali_1.1.7
Lee Morgan [Fri, 23 Oct 2015 10:00:39 +0000 (11:00 +0100)]
DALi Version 1.1.7

Change-Id: I37d9baf1f13629528d20010aa201c55b1dca1e8c

8 years agoFix text and control depth indices to have sane values 94/49994/1
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

8 years agoAdded missing calls the base class Control::OnStageConnection etc in derived classes. 30/49930/1
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

8 years agoPreserve the ScrollBar alpha value from the stylesheet 21/49921/3
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

8 years agoChanged ShadowView to use new custom effects and ImageView. 59/49659/4
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

8 years agoMerge "Fix cursor position for ligatures and group of glyphs." into devel/master
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

8 years agoFixed issue that ItemView overshoot appears before it reaches the end of the list 03/49803/1
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

8 years agoFix cursor position for ligatures and group of glyphs. 94/49794/1
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>
8 years agoMerge "Changed Motion Blur and MotionStretch Effect to use new custom shaders." into...
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

8 years agoMerge "Append clipboard text after current pre-edit text" 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

8 years agoAppend clipboard text after current pre-edit text 34/49734/3
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

8 years agoScrollView moves in opposite direction sometimes when panning 02/49702/3
Tom Robinson [Mon, 19 Oct 2015 08:36:07 +0000 (09:36 +0100)]
ScrollView moves in opposite direction sometimes when panning

Change-Id: I0d68ce135cae455d04156aaa806584b8c22e4919

8 years agoReposition the grab/selection handles position. 18/49618/4
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>
8 years agoChanged Motion Blur and MotionStretch Effect to use new custom shaders. 20/49620/3
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

8 years agoReposition Text Control's popup. 22/49322/4
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>
8 years agoMerge "Text Shadow Implementation via copied renderer." into devel/master
Paul Wisbey [Thu, 15 Oct 2015 16:07:51 +0000 (09:07 -0700)]
Merge "Text Shadow Implementation via copied renderer." into devel/master

8 years agoMerge "Changed NPatchRenderer and ImageRenderer to use an "broken image" if they...
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

8 years agoText Shadow Implementation via copied renderer. 65/49465/8
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>
8 years agoProvide TextChanged() signal after PASTE 09/49609/1
Paul Wisbey [Thu, 15 Oct 2015 11:41:09 +0000 (12:41 +0100)]
Provide TextChanged() signal after PASTE

Change-Id: Id17a4fdd58426aa016ae0ead597ed35a9c6d5b09

8 years agoRemove some dead and non-thread safe internal uniforms 46/49546/1
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

8 years agoMerge "Changed Distance Field effect effect to use new custom shaders." into devel...
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

8 years agoMerge "Comment correction for Disambiguated function" 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

8 years agoChanged Distance Field effect effect to use new custom shaders. 28/49528/4
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

8 years agoChanged NPatchRenderer and ImageRenderer to use an "broken image" if they try to... 28/48728/11
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

8 years agoComment correction for Disambiguated function 25/49525/1
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>
8 years agoMerge "DGEUF-110: Limit ScrollView to scroll maximum 1 page on flick" into devel...
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

8 years agoDGEUF-110: Limit ScrollView to scroll maximum 1 page on flick 48/49448/5
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

8 years agoChanges following "Remove Sampler scene object" 19/49119/6
Ferran Sole [Tue, 6 Oct 2015 15:50:53 +0000 (16:50 +0100)]
Changes following "Remove Sampler scene object"

Change-Id: I7934f6d0c516687c252f49509812f2a87becff3a

8 years agoMerge "Implemented n-patch rendering for NPatchRenderer." into devel/master
Kimmo Hoikka [Tue, 13 Oct 2015 14:03:57 +0000 (07:03 -0700)]
Merge "Implemented n-patch rendering for NPatchRenderer." into devel/master

8 years agoImplemented n-patch rendering for NPatchRenderer. 38/48538/12
Chu Hoang [Tue, 22 Sep 2015 13:21:17 +0000 (14:21 +0100)]
Implemented n-patch rendering for NPatchRenderer.

Change-Id: Ic7304dc47483cc228dce9e715be9bc0bb46a081e

8 years agoMerge "Remove dead constraint function from GaussianBlurView" into devel/master
Kimmo Hoikka [Tue, 13 Oct 2015 10:55:16 +0000 (03:55 -0700)]
Merge "Remove dead constraint function from GaussianBlurView" into devel/master

8 years agoRemove dead constraint function from GaussianBlurView 49/49449/1
Kimmo Hoikka [Tue, 13 Oct 2015 09:51:54 +0000 (10:51 +0100)]
Remove dead constraint function from GaussianBlurView

Change-Id: I1c71f35a99d3263de0348b605f88cd56f6a5deea

8 years agoUpdate scroll end effect GUI 42/48542/12
Jonghyun Ho [Tue, 22 Sep 2015 04:40:54 +0000 (13:40 +0900)]
Update scroll end effect GUI

Change-Id: I8d11ff97bed46ffc3c8fa2bada37adeffe9f6c5e

8 years agoMerge "Refactor to remove ControlRenderer::mCachedRenderer member." into devel/master
Kimmo Hoikka [Mon, 12 Oct 2015 17:27:02 +0000 (10:27 -0700)]
Merge "Refactor to remove ControlRenderer::mCachedRenderer member." into devel/master

8 years agoMerge "Move common images folder to the style folder" 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

8 years agoRefactor to remove ControlRenderer::mCachedRenderer member. 26/49226/4
Chu Hoang [Fri, 9 Oct 2015 09:05:44 +0000 (10:05 +0100)]
Refactor to remove ControlRenderer::mCachedRenderer member.

Change-Id: I4ba5ccc62b5de25a76f21401b3914efa06a41649

8 years agoDALi Version 1.1.6 31/49231/1 dali_1.1.6
Tom Robinson [Fri, 9 Oct 2015 09:48:47 +0000 (10:48 +0100)]
DALi Version 1.1.6

Change-Id: Idedbf00fc557c74c1624eb90cdab36c4db57af04

8 years agoMove common images folder to the style folder 21/49221/1
Agnelo Vaz [Thu, 8 Oct 2015 16:18:20 +0000 (17:18 +0100)]
Move common images folder to the style folder

* Keep images all under the style folder to encourage correct placement of images and not just all in common

Change-Id: Id16410b6c88de4c8b1b642113906a85cd74a7a23
Signed-off-by: Agnelo Vaz <agnelo.vaz@samsung.com>
8 years agoDifferent image sets depending on style selected 66/49166/4
Agnelo Vaz [Wed, 7 Oct 2015 10:39:41 +0000 (11:39 +0100)]
Different image sets depending on style selected

* Style folders now contain an image directory
* Images specific to that style (resolution) should be placed in that folder
* Toolkit has an image-common folder for images that span all styles
* Only TextField Images moved to style image folders in this patch

Change-Id: I43d792c4f42dafb4b39e409425e51d404d261838
Signed-off-by: Agnelo Vaz <agnelo.vaz@samsung.com>
8 years agoMerge changes I48753b8f,If7ef493d into devel/master
Kimmo Hoikka [Thu, 8 Oct 2015 09:57:19 +0000 (02:57 -0700)]
Merge changes I48753b8f,If7ef493d into devel/master

* changes:
  Added a RendererCache and utilise it for ImageRenderer.
  Added ImageView::OnStageConnect to pass the onstage event to the renderer.

8 years agoAdded a RendererCache and utilise it for ImageRenderer. 40/49040/8
Chu Hoang [Mon, 5 Oct 2015 14:10:36 +0000 (15:10 +0100)]
Added a RendererCache and utilise it for ImageRenderer.

Tidied up ControlRenderer::DoInitialize methods.
Added ControlRerenderer::SetCachedRendererKey method to set a key and enable base ControlRenderer to cache core renderers from this key.
Added  RendererFactoryCache::Get/Save/RemoveRenderer methods.

Change-Id: I48753b8fe18293ca53477e149f00018c50122bb0

8 years agoMerge "Change default grab/selection handles." into devel/master
Kimmo Hoikka [Wed, 7 Oct 2015 11:51:38 +0000 (04:51 -0700)]
Merge "Change default grab/selection handles." into devel/master

8 years agoRemove SELECTION_CHANGED state from the text controller. 20/49120/1
Victor Cebollada [Tue, 6 Oct 2015 15:49:49 +0000 (16:49 +0100)]
Remove SELECTION_CHANGED state from the text controller.

* This state is not different than the SELECTING one.

Change-Id: If6f791a021ae4511a42ba9999788568d2eff5508
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>