platform/core/uifw/dali-toolkit.git
7 years agoUpdate JavaScript demo and programming guide for Flexbox 45/70745/1
Richard Huang [Fri, 20 May 2016 09:42:11 +0000 (10:42 +0100)]
Update JavaScript demo and programming guide for Flexbox

Change-Id: Ic1da8a763b352e67682c8954dc0c01e87437ce92

7 years agoMerge "Make FlexContainer as public API" into devel/master
Adeel Kazmi [Thu, 19 May 2016 14:58:10 +0000 (07:58 -0700)]
Merge "Make FlexContainer as public API" into devel/master

7 years agoMake FlexContainer as public API 60/68960/5
Richard Huang [Tue, 10 May 2016 15:16:25 +0000 (16:16 +0100)]
Make FlexContainer as public API

Change-Id: Ieae39bee5056b9e45f1ed291fae7a6493fd6d7b0

7 years agoAllow automatic registration of custom property in JavaScript 07/59107/4
Richard Huang [Wed, 10 Feb 2016 15:22:00 +0000 (15:22 +0000)]
Allow automatic registration of custom property in JavaScript

Change-Id: I0e857fea58f85fd55a2e0b729bc01a3b67549d37

7 years agoSupport for child properties registration in FlexContainer 80/70180/1
Richard Huang [Wed, 18 May 2016 12:22:02 +0000 (13:22 +0100)]
Support for child properties registration in FlexContainer

Change-Id: I912146fe84748a789d4d02c44360dc875cc9a113

7 years agoText auto scrolling documentation 50/56650/11
Agnelo Vaz [Mon, 11 Jan 2016 17:26:19 +0000 (17:26 +0000)]
Text auto scrolling documentation

Updated Property documentation in header file for TextLabel
Added AutoScrolling to programming guide

Change-Id: Icf4fc662976a2c1964f0ba7b43a88268fcf84fd4
Signed-off-by: Agnelo Vaz <agnelo.vaz@samsung.com>
7 years agoGetNaturalSize() to restore ControlSize after relayouting, Scrolling Gap from float... 87/69987/2
Agnelo Vaz [Tue, 17 May 2016 13:07:00 +0000 (14:07 +0100)]
GetNaturalSize() to restore ControlSize after relayouting, Scrolling Gap from float to int

GetNaturalSize was changing the controlSize to MAX_FLOAT before relayout but only restoring the control width, now does height too.
Gap for AutoScrolling changed from float to int, don't want less than a pixel.

Change-Id: I0c1c391e5565eee8b45d4f28492129d1211d8de8

7 years agoMerge "Add CreatePropertyBuffer() back to test utils" into devel/master
Adeel Kazmi [Tue, 17 May 2016 11:21:48 +0000 (04:21 -0700)]
Merge "Add CreatePropertyBuffer() back to test utils" into devel/master

7 years agoFix issues with text scrolling & transition effects using GetVectorXY() incorrectly 76/69776/5
Adeel Kazmi [Mon, 16 May 2016 17:16:41 +0000 (18:16 +0100)]
Fix issues with text scrolling & transition effects using GetVectorXY() incorrectly

Vector3::GetVectorXY() returns a ref (or a const ref). This is problematic in the files in this
patch because they are returning a ref to a temporary variable which then goes out-of-scope later

The fix is to just create a copy of the value on the stack rather than pass a ref to the temporary
variable.

Change-Id: I2e93748943487a677d394064b70c2b6afe983dbf

7 years agoAdd CreatePropertyBuffer() back to test utils 77/69777/1
Xiangyin Ma [Mon, 16 May 2016 17:31:41 +0000 (18:31 +0100)]
Add CreatePropertyBuffer() back to test utils

Change-Id: Ifca4ac0df7c286cf637953cd99564358d44fd52a

7 years agoUpdates following vector-wrapper include changes in core. 56/69756/3
Adeel Kazmi [Mon, 16 May 2016 13:21:38 +0000 (14:21 +0100)]
Updates following vector-wrapper include changes in core.

Change-Id: I976580ee02239eb80c46e1a8d7b51f342d029361

7 years agoUse Geometry::QUAD() in toolkit 38/69338/2
Xiangyin Ma [Thu, 12 May 2016 17:03:45 +0000 (18:03 +0100)]
Use Geometry::QUAD() in toolkit

Change-Id: I942e9b1d8c7722745a176f2d2e03de247c1935c1

7 years agoMerge "Auto Scrolling Text Label" into devel/master
Adeel Kazmi [Fri, 13 May 2016 14:34:48 +0000 (07:34 -0700)]
Merge "Auto Scrolling Text Label" into devel/master

7 years agoMerge "DALi Version 1.1.34" into devel/master
Adeel Kazmi [Fri, 13 May 2016 11:14:36 +0000 (04:14 -0700)]
Merge "DALi Version 1.1.34" into devel/master

7 years agoAuto Scrolling Text Label 96/57796/43
Agnelo Vaz [Thu, 14 Jan 2016 15:44:21 +0000 (15:44 +0000)]
Auto Scrolling Text Label

Single line horizontal scrolling

Direction of scrolling dependent on direction of text, LTR or RTL

Speed of scrolling, gap before wrapping and number of loops can be set by Property system.

Change-Id: I6abba8c0d3f3838bdd143b315687b13cb680e2f7
Signed-off-by: Agnelo Vaz <agnelo.vaz@samsung.com>
7 years agoDALi Version 1.1.34 95/69495/1 dali_1.1.34
Ferran Sole [Fri, 13 May 2016 10:54:53 +0000 (11:54 +0100)]
DALi Version 1.1.34

Change-Id: I963e379bb58245841cc58b1178372c17f7b71d50

7 years agoChange 'char' type to 'signed char' 97/68897/4
Seoyeon Kim [Tue, 10 May 2016 07:43:11 +0000 (16:43 +0900)]
Change 'char' type to 'signed char'

- In some build environments, like ARM architecture, 'char' without a signedness
  qualifier can be interpreted as 'unsigned char', and it may result in
  unexpected behavior.

Change-Id: Ib362f914f853638a954dc0f39e9b6fb19f7043a0
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
7 years agoPrevention of Null pointer dereference 27/69227/2
Seoyeon Kim [Wed, 11 May 2016 06:55:33 +0000 (15:55 +0900)]
Prevention of Null pointer dereference

Change-Id: I34c2b04710734965c6e4553de90c55339bb2a05d
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
7 years agoMerge "Button's 'Actions' table documentation updated." into devel/master
Kimmo Hoikka [Thu, 12 May 2016 13:40:17 +0000 (06:40 -0700)]
Merge "Button's 'Actions' table documentation updated." into devel/master

7 years agoButton's 'Actions' table documentation updated. 71/69271/1
Victor Cebollada [Thu, 12 May 2016 10:03:55 +0000 (11:03 +0100)]
Button's 'Actions' table documentation updated.

* Attributes description and a reference to the DoAction() method added
  to the "buttonClick" action.

Change-Id: If27b489bb509fcc52190057bf30086aca6dbc5ce
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
7 years agoAdd ItemView stopScrolling action 51/68351/10
Paul Wisbey [Tue, 3 May 2016 18:15:17 +0000 (19:15 +0100)]
Add ItemView stopScrolling action

+ Added a property for choosing one of the built-in alpha functions,
for scroll-to animations

Change-Id: I536672d27d6aec1ad06a3051f4b76cb63bad7b5c

7 years agoMerge "Fixed clipboard disappearing issue on selection" into devel/master
suhyung Eom [Thu, 12 May 2016 01:02:05 +0000 (18:02 -0700)]
Merge "Fixed clipboard disappearing issue on selection" into devel/master

7 years agoTextLayout fix. 42/69042/1
Victor Cebollada [Wed, 11 May 2016 08:15:05 +0000 (09:15 +0100)]
TextLayout fix.

* Check the initial line capacity is not zero.

Change-Id: Ib8a9daceb8eab7acea9cde3c925937e3bf3c2928
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
7 years agoFixed clipboard disappearing issue on selection 69/68969/1
suhyung Eom [Tue, 10 May 2016 23:14:14 +0000 (08:14 +0900)]
Fixed clipboard disappearing issue on selection

Signed-off-by: suhyung Eom <suhyung.eom@samsung.com>
Change-Id: I10a4d3cde28b196eb306d08c0d4a7c85976cc1c4

7 years agoText::Controller - Fix a crash when the point size property is changed in a text... 18/68918/2
Victor Cebollada [Tue, 10 May 2016 10:29:54 +0000 (11:29 +0100)]
Text::Controller - Fix a crash when the point size property is changed in a text-label.

Change-Id: Iba4c34f6e1450e03e361bd70b8e2543f1e53dc7d
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
7 years agoFix Render API for node addon 87/68787/1
Richard Huang [Mon, 9 May 2016 16:24:54 +0000 (17:24 +0100)]
Fix Render API for node addon

Change-Id: If7be284cdeecf61c7578d5b06282bbf00e8e96f7

7 years agoMerge "JavaScript example for Flexbox" into devel/master
Kimmo Hoikka [Mon, 9 May 2016 13:43:00 +0000 (06:43 -0700)]
Merge "JavaScript example for Flexbox" into devel/master

7 years agoJavaScript example for Flexbox 76/68676/3
Richard Huang [Mon, 9 May 2016 09:05:39 +0000 (10:05 +0100)]
JavaScript example for Flexbox

Change-Id: Icc08e4f646ef016a24c08bcd726c5cdcd8ff95a0

7 years agoAdd programming guide for FlexContainer 93/68593/2
Richard Huang [Fri, 6 May 2016 16:47:49 +0000 (17:47 +0100)]
Add programming guide for FlexContainer

Change-Id: Ifa2d6374dbe03208cadcca0a46403cead003dde1

7 years agoMerge "DALi Version 1.1.33" into devel/master
Adeel Kazmi [Fri, 6 May 2016 14:52:06 +0000 (07:52 -0700)]
Merge "DALi Version 1.1.33" into devel/master

7 years agoDALi Version 1.1.33 77/68577/1 dali_1.1.33
David Steele [Fri, 6 May 2016 14:47:30 +0000 (15:47 +0100)]
DALi Version 1.1.33

Change-Id: I5e425d7281bb5c2a2abcf05736b493aa6b96bbe4

7 years ago(Automated Tests) Platform Abstraction now handles multiple resource requests 52/68552/1
Adeel Kazmi [Thu, 5 May 2016 19:23:15 +0000 (20:23 +0100)]
(Automated Tests) Platform Abstraction now handles multiple resource requests

Change-Id: I04beb35818241ce0a3f0a2f343ecbc26ef781b2c

7 years agoUpdated programming guide to discuss AnimateTo/By and rotations 52/68352/4
David Steele [Tue, 3 May 2016 18:21:55 +0000 (19:21 +0100)]
Updated programming guide to discuss AnimateTo/By and rotations

AnimateTo performs a slerp, so can't perform a full revolution;
AnimateBy does a linear interpolation of the passed in value, so
initializing it with an AxisAngle property value can perform more
than one revoltion.

Change-Id: I233840024556fe3844d321dd2577ef181e6d8e19
Signed-off-by: David Steele <david.steele@samsung.com>
7 years agoMerge "Svace issues." into devel/master
Adeel Kazmi [Thu, 5 May 2016 14:34:21 +0000 (07:34 -0700)]
Merge "Svace issues." into devel/master

7 years agoRemove flexPadding and flexBorder as DALi does not support box model 11/68511/1
Richard Huang [Thu, 5 May 2016 10:32:07 +0000 (11:32 +0100)]
Remove flexPadding and flexBorder as DALi does not support box model

Change-Id: If4f7e9c241f288e1cf4cd23fcb88393ce7dd86bb

7 years agoSvace issues. 95/68495/1
Victor Cebollada [Thu, 5 May 2016 07:38:17 +0000 (08:38 +0100)]
Svace issues.

* Fixes some text related svace issues.

Change-Id: I88f91a0d43981a99f070c800e446066e6deb8874
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
7 years agoButton documentation changed for Action buttonClick 83/68483/1
Agnelo Vaz [Wed, 4 May 2016 15:34:22 +0000 (16:34 +0100)]
Button documentation changed for Action buttonClick

Now a description instead of an internal function name

Change-Id: I1961e58c47080a30ed2e2a8e2be77d4331b1be0a

7 years agoBlending enum clean-up 06/67006/13
Paul Wisbey [Fri, 22 Apr 2016 10:15:52 +0000 (11:15 +0100)]
Blending enum clean-up

We were previously using a mixture of BLEND and BLENDING in enums.
The order of the BLEND_FACTOR enums & string names was also inconsistent.

As a rule of thumb always use Blend & BLEND for namespaces & enums/constants
(not Blending or BLENDING)

Change-Id: I464f9471dd6fdd4f865a2c1362a7c874fc3c315c

7 years agoTextModel - Remove the visual to logical conversion tables. 12/67812/5
Victor Cebollada [Mon, 25 Apr 2016 09:58:37 +0000 (10:58 +0100)]
TextModel - Remove the visual to logical conversion tables.

* After the latest patches the bidirectional line info is kept.
  This info is used now to get the logical index from the visual index.
  The logical cursor position is calculated for a given logical cursor position.
  Both conversion tables (character and cursor position) have been removed.

Change-Id: Ifc79816c0044d2c2546adbbb30f4e7dc6ceb956c
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
7 years agoUse pre-multiplied alpha format in GradientRenderer 16/68016/2
Xiangyin Ma [Fri, 29 Apr 2016 16:33:44 +0000 (17:33 +0100)]
Use pre-multiplied alpha format in GradientRenderer

Change-Id: Ic363699481c40dcb51c3ba9507be6f7458eb6d8c

7 years agoMerge "Fixed bug in SetIndexBuffer for v8 plugin" into devel/master
Kimmo Hoikka [Fri, 29 Apr 2016 15:03:10 +0000 (08:03 -0700)]
Merge "Fixed bug in SetIndexBuffer for v8 plugin" into devel/master

7 years agoMerge "Changes following "Remove API to set if a geometry requires writing to the...
Kimmo Hoikka [Fri, 29 Apr 2016 15:01:41 +0000 (08:01 -0700)]
Merge "Changes following "Remove API to set if a geometry requires writing to the depth buffer"" into devel/master

7 years agoChanges following "Remove API to set if a geometry requires writing to the depth... 33/67533/5
Ferran Sole [Wed, 27 Apr 2016 07:20:48 +0000 (08:20 +0100)]
Changes following "Remove API to set if a geometry requires writing to the depth buffer"

Change-Id: I5b7e52b898c28ba39a9e8813fd6ed3bff1afbd3b

7 years agoDALi Version 1.1.32 26/67926/1 dali_1.1.32
Agnelo Vaz [Fri, 29 Apr 2016 08:10:27 +0000 (09:10 +0100)]
DALi Version 1.1.32

Change-Id: I438a3126a55c9c5831b720bbc36587595ec03721

7 years agoMerge "(ImageView) Partially Restore Tizen 2.4 GetImage() functionality" into devel...
David Steele [Thu, 28 Apr 2016 17:41:15 +0000 (10:41 -0700)]
Merge "(ImageView) Partially Restore Tizen 2.4 GetImage() functionality" into devel/master

7 years agoFixed bug in SetIndexBuffer for v8 plugin 58/67858/3
Ferran Sole [Thu, 28 Apr 2016 16:58:42 +0000 (17:58 +0100)]
Fixed bug in SetIndexBuffer for v8 plugin

Change-Id: I09c8c148f4f2308a2e2b4b19d007db5d51d9ebbe

7 years agoRemove ImageActor usage from V8 plugin 57/67857/2
Adeel Kazmi [Thu, 28 Apr 2016 16:55:45 +0000 (17:55 +0100)]
Remove ImageActor usage from V8 plugin

Change-Id: I88eb6606b232e2cbca081933c8cebb7c87b084c1

7 years agoMerge "Remove ImageActor usage from programming guide" into devel/master
Kimmo Hoikka [Thu, 28 Apr 2016 16:52:29 +0000 (09:52 -0700)]
Merge "Remove ImageActor usage from programming guide" into devel/master

7 years ago(ImageView) Partially Restore Tizen 2.4 GetImage() functionality 30/67630/3
Adeel Kazmi [Wed, 27 Apr 2016 13:41:46 +0000 (14:41 +0100)]
(ImageView) Partially Restore Tizen 2.4 GetImage() functionality

Change-Id: I6f501ee01d094e5889c7c713364b56645f00e8b9

7 years agoFixed ObjLoader to handle textureless objects. 99/67199/4
Andrew Poor [Mon, 25 Apr 2016 14:23:34 +0000 (15:23 +0100)]
Fixed ObjLoader to handle textureless objects.

Change-Id: I1f9cea422a41ae549ccdeb7b2ea53935e9bdc2c4

7 years agoRemove ImageActor usage from programming guide 34/67834/3
Xiangyin Ma [Mon, 25 Apr 2016 12:24:15 +0000 (13:24 +0100)]
Remove ImageActor usage from programming guide

Change-Id: Ifabac0c8896ff96cd632c5b8ede72db9b21c76ff

7 years agoMerge "Moved StyleManager to the public API" into devel/master
Kimmo Hoikka [Thu, 28 Apr 2016 12:33:32 +0000 (05:33 -0700)]
Merge "Moved StyleManager to the public API" into devel/master

7 years agoMerge "Remove ImageActor from Builder & some doxygen update" into devel/master
Adeel Kazmi [Thu, 28 Apr 2016 09:47:30 +0000 (02:47 -0700)]
Merge "Remove ImageActor from Builder & some doxygen update" into devel/master

7 years agoMerge "Fix doxygen errors and enable doxygen build for devel-api" into devel/master
Adeel Kazmi [Wed, 27 Apr 2016 15:38:28 +0000 (08:38 -0700)]
Merge "Fix doxygen errors and enable doxygen build for devel-api" into devel/master

7 years agoMoved StyleManager to the public API 47/67347/9
David Steele [Mon, 25 Apr 2016 16:46:23 +0000 (17:46 +0100)]
Moved StyleManager to the public API

Cleaned up the API (removed Orientation code), fixed comments, added
@SINCE_1_1.32 macros, doxygen groups.

Change-Id: I954f627a3db63714471d8440b65fc1afbc8dc44e
Signed-off-by: David Steele <david.steele@samsung.com>
7 years agoFix the buffer overflow issue in nanosvg 37/67637/1
Xiangyin Ma [Wed, 27 Apr 2016 14:59:51 +0000 (15:59 +0100)]
Fix the buffer overflow issue in nanosvg

Change-Id: I8d0f25c48bf1d5d307d7642b249e3baebcf63d41

7 years agoFix doxygen errors and enable doxygen build for devel-api 67/67467/3
Richard Huang [Tue, 26 Apr 2016 15:58:18 +0000 (16:58 +0100)]
Fix doxygen errors and enable doxygen build for devel-api

Change-Id: I7c4ebd51be3ab73a544963a89cc1fc33d83e8435

7 years agoRemove ImageActor from Builder & some doxygen update 69/67469/3
Xiangyin Ma [Tue, 26 Apr 2016 16:54:59 +0000 (17:54 +0100)]
Remove ImageActor from Builder & some doxygen update

Change-Id: I0c41dec882acda9dc9990b5a1db51d783d9cb03f

7 years agoMerge "Changes following "Make TextureSet a non property owner"" into devel/master
Paul Wisbey [Wed, 27 Apr 2016 12:41:33 +0000 (05:41 -0700)]
Merge "Changes following "Make TextureSet a non property owner"" into devel/master

7 years agoMerge "Changed signal order for StyleManager" into devel/master
Adeel Kazmi [Tue, 26 Apr 2016 15:53:27 +0000 (08:53 -0700)]
Merge "Changed signal order for StyleManager" into devel/master

7 years agoChanged signal order for StyleManager 86/66186/8
David Steele [Fri, 15 Apr 2016 16:32:04 +0000 (17:32 +0100)]
Changed signal order for StyleManager

With this change, StyleManager will first trigger an internal signal
that is picked up by all Controls, then will emit StyleChanged to
signal to the application that the theme or system fonts have changed
and that the styling has completed.

Change-Id: I54ced7ad5ffc08bf5e55c9895be03848bea6b7a6
Signed-off-by: David Steele <david.steele@samsung.com>
7 years agoChanges following "Make TextureSet a non property owner" 53/67453/2
Ferran Sole [Tue, 26 Apr 2016 13:43:20 +0000 (14:43 +0100)]
Changes following "Make TextureSet a non property owner"

Change-Id: Id3045fd237fac263b309fac51cb39800b3b5ede6

7 years agoChanged shadow view to turn position inheritance off for blur filter 56/66756/3
David Steele [Wed, 20 Apr 2016 19:21:43 +0000 (20:21 +0100)]
Changed shadow view to turn position inheritance off for blur filter

Recent changes to transform have altered position inheritance meaning.
Turning off position inheritance for the actors used by the blur filter
ensures that the final image (this is an image -> image render task) is positioned
in the same place.

Change-Id: I6102e756fc7d581fc8ba2e882601ed8d6f117b09
Signed-off-by: David Steele <david.steele@samsung.com>
7 years agoMerge "Changes following "Remove Geometry scene object"" into devel/master
Paul Wisbey [Tue, 26 Apr 2016 13:00:26 +0000 (06:00 -0700)]
Merge "Changes following "Remove Geometry scene object"" into devel/master

7 years agoAdd test case for Flexbox layout algorithm 90/67190/6
Richard Huang [Mon, 25 Apr 2016 14:04:17 +0000 (15:04 +0100)]
Add test case for Flexbox layout algorithm

Change-Id: I50bdcbe847f097cda3db6cf8dd948e6d9ab96626

7 years agoMerge "Clarify the action propagation behaviour in custom control development guide...
Adeel Kazmi [Mon, 25 Apr 2016 16:48:26 +0000 (09:48 -0700)]
Merge "Clarify the action propagation behaviour in custom control development guide" into devel/master

7 years agoClarify the action propagation behaviour in custom control development guide 82/67182/2
Richard Huang [Mon, 25 Apr 2016 12:54:30 +0000 (13:54 +0100)]
Clarify the action propagation behaviour in custom control development guide

Change-Id: I492c0e5275f89ea4370b5c22e33d4f1af4f4750f

7 years agoChanges following "Remove Geometry scene object" 46/66746/13
Ferran Sole [Wed, 20 Apr 2016 15:10:35 +0000 (16:10 +0100)]
Changes following "Remove Geometry scene object"

Change-Id: Id177a9f248686d82898a05a865871983a64af885

7 years agoupdate the programming guide of ControlRenderer 90/66890/5
Xiangyin Ma [Thu, 21 Apr 2016 18:11:50 +0000 (19:11 +0100)]
update the programming guide of ControlRenderer

Change-Id: I1b086f330a575da9901fac29690c5bdfb12071cb

7 years agoColor segmentation - Comment updated. 59/67159/1
Victor Cebollada [Mon, 25 Apr 2016 10:35:01 +0000 (11:35 +0100)]
Color segmentation - Comment updated.

Change-Id: I82991c2f9813e7888b139bce8faad95e4e944c77
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
7 years agoTextModel - Remove the logical to visual conversion table. 99/67099/3
Victor Cebollada [Mon, 25 Apr 2016 07:38:52 +0000 (08:38 +0100)]
TextModel - Remove the logical to visual conversion table.

* Is not needed.

Change-Id: I19e208281bfe70dbf5abe7de37059b4d259ee0fb
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
7 years agoTextModel - Update only the edited paragraph when the style changes. 05/67005/5
Victor Cebollada [Tue, 12 Apr 2016 15:03:40 +0000 (16:03 +0100)]
TextModel - Update only the edited paragraph when the style changes.

Change-Id: I5a6666dd2e3f20fc16a786efd43bef2fd766aea0
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
7 years agoTextModel - Update the color runs. 93/66393/9
Victor Cebollada [Mon, 18 Apr 2016 08:23:51 +0000 (09:23 +0100)]
TextModel - Update the color runs.

Change-Id: If392f542fb3ce75532e125c805968fcc76b475cb
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
7 years agoWhether to update the input style when text is removed. 67/66367/5
Victor Cebollada [Mon, 18 Apr 2016 10:58:55 +0000 (11:58 +0100)]
Whether to update the input style when text is removed.

* When predictve text is used the pre-edit text is removed
  and inserted again with the new characters. This patch
  avoids to update the input style when pre-edit text is
  removed.

Change-Id: Ia4d266a10a7912b19efd4e1d27dea0d711dcea9b
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
7 years agoRefactor the Text::Controller::ClearFontData. 45/66945/3
Victor Cebollada [Thu, 21 Apr 2016 14:01:46 +0000 (15:01 +0100)]
Refactor the Text::Controller::ClearFontData.

* This method clears completely some buffers of the model.
  Then the Text::Controller::Impl::ClearModelData may access
  the same buffers out of bounds causing a crash.

Change-Id: I1b50135c707354bd3037aabb63cded10ba2e6f2f
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
7 years agoSelect the renderer type based on the image url 30/66830/3
Xiangyin Ma [Thu, 21 Apr 2016 10:01:08 +0000 (11:01 +0100)]
Select the renderer type based on the image url

Change-Id: I394fdccd108871aaa234dc95b3e7b98142a9e7c7

7 years agoDeprecating Button API in favour of using Properties or style file 79/66979/5
Agnelo Vaz [Fri, 22 Apr 2016 10:02:10 +0000 (11:02 +0100)]
Deprecating Button API in favour of using Properties or style file

Change-Id: I5c856b6ca53228b181efbed525babfb7a69ad5fb

7 years agoMerge "Fix JavaScript error after Rendering API clean-up" into devel/master
Kimmo Hoikka [Fri, 22 Apr 2016 10:59:04 +0000 (03:59 -0700)]
Merge "Fix JavaScript error after Rendering API clean-up" into devel/master

7 years agoFix JavaScript error after Rendering API clean-up 81/66981/1
Richard Huang [Fri, 22 Apr 2016 10:11:07 +0000 (11:11 +0100)]
Fix JavaScript error after Rendering API clean-up

Change-Id: Iec708cdbfe6d760a85e8039703e55ad6233e88ce

7 years agoDALi Version 1.1.31 69/66969/1 dali_1.1.31
Adeel Kazmi [Fri, 22 Apr 2016 09:08:00 +0000 (10:08 +0100)]
DALi Version 1.1.31

Change-Id: I3753939f6f4b7cc36539b062f4d3370a60451bff

7 years agoMove the toolkit-text-model into a folder in the internal side of the test cases. 66/66866/1
Victor Cebollada [Thu, 21 Apr 2016 13:38:50 +0000 (14:38 +0100)]
Move the toolkit-text-model into a folder in the internal side of the test cases.

Change-Id: Id09c79876077595ef129f236d5a6e6fde07bd20a
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
7 years agoMerge "TextController - Update the text model." into devel/master
Paul Wisbey [Thu, 21 Apr 2016 14:59:26 +0000 (07:59 -0700)]
Merge "TextController - Update the text model." into devel/master

7 years agoTextController - Update the text model. 57/65557/11
Victor Cebollada [Mon, 21 Mar 2016 10:18:33 +0000 (10:18 +0000)]
TextController - Update the text model.

* Updates the paragraphs that are being edited instead creating the whole text model from scratch.

Change-Id: I19c3b841a264a75c97a39ebcc64a5685604eb9c8
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
7 years agoFix for text layout. 19/66819/3
Victor Cebollada [Thu, 21 Apr 2016 06:40:04 +0000 (07:40 +0100)]
Fix for text layout.

* If a character is shaped in more than one glyph and this character is at the end of a text,
  each glyph was rendered in a different line.
  This is because the segmentation info says the last character is a MUST_BREAK. When the glyphs
  of the last character are traversed they get a MUST_BREAK and they are laid-out in a new line.

Change-Id: Ic88a196bd0787e819dba0e7a887b4486506e7a50
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
7 years agoVector-based text rendering 86/56486/29
Paul Wisbey [Mon, 30 Nov 2015 13:48:04 +0000 (13:48 +0000)]
Vector-based text rendering

Change-Id: Ieadbb0e545219f8184fe50bb6f00bfaced902184

7 years agoMerge "Flexbox UI control implementation" into devel/master
Kimmo Hoikka [Tue, 19 Apr 2016 16:01:21 +0000 (09:01 -0700)]
Merge "Flexbox UI control implementation" into devel/master

7 years agoRemoved ImageActor usage from automated-tests 61/66561/1
Adeel Kazmi [Tue, 19 Apr 2016 11:32:11 +0000 (12:32 +0100)]
Removed ImageActor usage from automated-tests

Change-Id: Ia298a3d5dfe3449606151da70df139c42f864323

7 years agoSynchronized Automated Tests with dali-core 43/66543/2
Adeel Kazmi [Tue, 19 Apr 2016 10:37:44 +0000 (11:37 +0100)]
Synchronized Automated Tests with dali-core

Change-Id: I7d743f9dd1fdb118b2308a2195f83d25407e62ae

7 years agoFlexbox UI control implementation 53/59953/12
Richard Huang [Fri, 19 Feb 2016 17:30:08 +0000 (17:30 +0000)]
Flexbox UI control implementation

Change-Id: I70217a6e04cba71fcf5eaeaf0b10cb82b116a4e8

7 years agoPublish the OVERSHOOT_SIZE property in Scrollable 06/66406/2
Paul Wisbey [Mon, 18 Apr 2016 16:42:44 +0000 (17:42 +0100)]
Publish the OVERSHOOT_SIZE property in Scrollable

Change-Id: If09ff5491b0c098d34300872f26957eab31f9f59

7 years agoMerge "Remove sys-string and use dali-toolkit po files (sys-string package will be...
Adeel Kazmi [Mon, 18 Apr 2016 14:59:48 +0000 (07:59 -0700)]
Merge "Remove sys-string and use dali-toolkit po files (sys-string package will be deleted from platform)" into devel/master

8 years agoRendering API clean-up 49/64949/10
Ferran Sole [Wed, 6 Apr 2016 09:41:28 +0000 (10:41 +0100)]
Rendering API clean-up

Change-Id: I282a24900e667bdc29ba45cf95d7e22457df137c

8 years agoDALi Version 1.1.30 72/66172/1 dali_1.1.30
Adam Bialogonski [Fri, 15 Apr 2016 13:59:27 +0000 (14:59 +0100)]
DALi Version 1.1.30

Change-Id: Ic29d1a311c36fbc6e4c01670e636d61d0332ed9a

8 years agoRemove sys-string and use dali-toolkit po files 46/56546/2
Heeyong Song [Mon, 11 Jan 2016 05:53:53 +0000 (14:53 +0900)]
Remove sys-string and use dali-toolkit po files
(sys-string package will be deleted from platform)

Change-Id: I8534096c80e060f15313944fe077b62c28689a61

8 years ago(PageTurnView) Remove unrequired cull-face.h 26/66026/1
Adeel Kazmi [Thu, 14 Apr 2016 17:05:41 +0000 (18:05 +0100)]
(PageTurnView) Remove unrequired cull-face.h

Change-Id: I7e9f640384374bb127bb82348e3153b6a412fe9f

8 years agoStop using ImageActor in EffectsView and ImageFilters 53/54753/13
Xiangyin Ma [Thu, 17 Dec 2015 16:52:15 +0000 (16:52 +0000)]
Stop using ImageActor in EffectsView and ImageFilters

Change-Id: Icc8793ab46b8e6c10a5f10bace53304b5f7d26b0

8 years agoMerge "Stop using ImageActor in PageTurnView" into devel/master
Adeel Kazmi [Tue, 12 Apr 2016 15:13:39 +0000 (08:13 -0700)]
Merge "Stop using ImageActor in PageTurnView" into devel/master

8 years agoMerge changes I150e1a74,Ie6d24150,I91081f5a into devel/master
Paul Wisbey [Tue, 12 Apr 2016 10:37:41 +0000 (03:37 -0700)]
Merge changes I150e1a74,Ie6d24150,I91081f5a into devel/master

* changes:
  TextModel - Conversion from characters to glyphs.
  TextModel - Create paragraph info for a given range of characters inside a text.
  Text - Small fixes.

8 years agoRemove Unnecessary OnButton methods in the button implementations 76/65576/1
Adeel Kazmi [Mon, 11 Apr 2016 11:23:29 +0000 (12:23 +0100)]
Remove Unnecessary OnButton methods in the button implementations

Change-Id: I5fd0c0149513dd40c1eace72afa49ed47a9782cf

8 years agoRemove OnControl methods & add up-calls 66/65366/5
Adeel Kazmi [Fri, 8 Apr 2016 16:55:28 +0000 (17:55 +0100)]
Remove OnControl methods & add up-calls

Additionally, correctly sets the background renderer size when OnSizeSet is called.

Change-Id: I6952e0a2e317b54bdb28adf2b013ca1244595522