summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2017-04-24Update Mono.Cecil version to 0.10.0-beta5Kangho Hur3-0/+0
2017-04-24rebase to tags/beta-2.3.5-pre1Kangho Hur16-122/+44
- this is base code of xamarin.forms 2.3.5-pre1 (https://github.com/xamarin/Xamarin.Forms/commit/fc778eb9789f50634d48fb9ad127f211b3fcfcc7)
2017-04-24Add ToolTip based on Tizen Specificrina6350.you4-2/+39
* Update the version of the used elm-sharp. * Update the version of xamarin package to 2.3.4-r214-005. TASK=TCAPI-2259 change-Id: I1f0c65c3d67030b7a690fd0839a0a851c4f1bcba
2017-04-24Change the style of GenList for ImageCell and SwitchCellrina6350.you2-2/+2
Change-Id: I3d6c8e940bd8814d2ba2ef45536142696d861611
2017-04-24Optimize Moved event handlerSeungkeun Lee1-2/+22
- Only enable Moved event handler when enabled transformation feature Change-Id: I2fe9f1c041290af1bde5783a47fcb0bc7ac13bd0
2017-04-24Fix the layout of Page.DisplayAlert's buttonsKangho Hur1-4/+5
TASK=TCAPI-2329 Change-Id: Iff5759754232a3d6981fdf0a8de5693541e09f55
2017-04-24Apply naviitem/tabbar style correctlyKangho Hur2-0/+2
TASK=TCAPI-2328 Change-Id: Idb1f68394132c7a161568f384db553a740a7a8ef
2017-04-24Fix spec fileWonYoung Choi1-2/+2
Change-Id: I495c32f50fd221f7c824c923a9992f49ff904d4c
2017-04-24Refactor layout update codeSeungkeun Lee3-69/+37
- A small refactoring - In OnBatchCommitted, Only update the Element itself location, not update children Because it is enough - Prevent duplicate update - Globally applied IgnoreBatchCommitted was changed to locally and re-named - Fixed rotation issue Change-Id: I32b57317169d81d7ad6e45f0b52eb2a8f1d861fa
2017-04-24Fix VisualElementRenderer IsDisposed check conditionSeungkeun Lee1-2/+2
- before true when _flags was exctaly same with VisualElementRendererFlags.Disposed - after true when _flags has a bit flage of VisualElementRendererFlags.Disposed Change-Id: I7491da1188ceeccd786eff4724b8ef702b6f500d
2017-04-24Fix FocusDirection to string typeWonYoung Choi4-46/+29
Fix FocusDirection to string type to avoid invalid reference in Tizen.Xamarin.Forms.Extension Change-Id: Ie452f14a32dbe0b5776ab28996eb52c81e8223c4
2017-04-24Add Focus related properties for VEKangho Hur6-5/+412
TASK=TCAPI-2264 - Make sure that all these API should be invoked after all renderers are created. (e.g. use it inside Page.OnAppearing()) Change-Id: Ie441a067d5a7b94af120985b0a691fad6ce8250f
2017-04-24[TableView] Fix updating HasUnevenRows propertyPiotr Czaja1-1/+1
Change-Id: Id16e3f6bb892980c6884a6388d31a25ce6cc1880 Signed-off-by: Piotr Czaja <p.czaja@samsung.com>
2017-04-24Use "default" style for TextCellRenderer on TV profileKangho Hur1-1/+3
- Due to TV UX limitations, TextCell.Detail property is not supported on TV profile Change-Id: I541f7813b0c1281b58644039991bfec3c0d29c51
2017-04-24Fix version of Xamarin.Forms private nugetWonYoung Choi1-2/+2
myget feed does not support 3-dots version format. Change-Id: Ie7fc51fb1bc350d23879774a581f7c1853be8689
2017-04-24Update version to 2.3.4-214-003Kangho Hur1-1/+1
Change-Id: Ib0acc0065e0f25cfaf482a33d8b0bab1c26494fe
2017-04-24Fix ScrollView Content area resize issueSeungkeun Lee2-16/+14
- When content of ScrollView was resized as smaller Scroll area was not adjust to fit the contents - It is a issue of data synchronization (ContentSize and Content.Height / Content.Width) - It was fixed, EFL scroller areas only resize from ContentSize changed callback - It is related with ScrollViewTest4, ScrollViewTest6 Change-Id: I2fed14bc106085dd1eaf83d877484a776fe21c24
2017-04-24Disable Layout on Resize callbackSeungkeun Lee1-1/+0
- LayoutCallback already called when resized - Resize callback is called immediately invoked when size was changed and it cause redundancy layouting - LayoutCallback is invoked only one times in renderer loop if necessary. - if another side effect occur with this changes, need to analysis that problem reason again. Change-Id: Id28f5968a2e4997f817579b9909fb01b4c962191
2017-04-24Change project files to new csproj formatWonYoung Choi11-385/+85
Change-Id: I5abe43d6738680c5c93341497769c9ecf748f76c
2017-04-24Add support for resources with multiple DPIPawel Andruszkiewicz1-0/+11
Change-Id: I637979182a5df75eb708eda85ffcd3ca7af05c63 Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
2017-04-24Remove VerticalTextAlignment functionality in LabelSeungkeun Lee2-39/+3
- EFL dose not support yet - Remove VerticalTextAlignment property in Native.Span it was wrong implemented, valign in EFL is semantically different from Xamarin.Forms VerticalTextAlignment - If provide VerticalTextAlignment API in EFL, this feature need to reimplement Change-Id: I502700db74c7410529e46898578640abbd1253ef
2017-04-24Fix Label layout issueSeungkeun Lee2-16/+2
- TCAPI-2251 - This issuse was caused by wrong minimum size - Layout class was depend on request size and minium size to layouting If minium size was (0,0) layout will resize to smaller than request size So, Label should be set proper minimum size Change-Id: I895c32d26ca7b090b185f5ff3793638cec6229a2
2017-04-24Fixed Button resize when changing styleSeunghyun Choi1-23/+9
- For normal operation, the following URL commits must be SR. - https://review.tizen.org/gerrit/#/c/121725/ Change-Id: I1ba3631aadf3f1c614371b48baf3d93195f0f599 Signed-off-by: Seunghyun Choi <sh4682.choi@samsung.com>
2017-04-24Register assemblies recursivelyWonYoung Choi2-21/+22
Change-Id: I76d2c053883d84fb603d0fd10aefcb6322f2d126
2017-04-24Updates the version of Xamarin.Forms packageJuwon1-1/+1
Change-Id: If775acd650f3913862f32c2ada1b1c11d8671de1
2017-04-24Change sub rpm name for private nugetWonYoung Choi1-3/+3
xamarin-forms-tizen-nuget-private --> xamarin-forms-tizen-nugetpriv Change-Id: I2707d95dd375664e49111a164a20d892beb541a6
2017-04-24Fix SVACE issueSungHyun Min3-12/+5
Change-Id: I706b16490edbd56462b665dbf861ea7fc3f01a3d Signed-off-by: SungHyun Min <shyun.min@samsung.com>
2017-04-24[WebView] Add missing ExportRenderer codejh5.cho2-1/+2
Change-Id: I217516154b9350b973d24d973f55c1011f7b41fd
2017-04-24Destroy the drawer along with the MasterDetailPagePawel Andruszkiewicz1-0/+10
Change-Id: I87f3b8bdb5baed77bef7947fc73469ad215f47a5 Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
2017-04-24Add Mono.Cecil nuget package locallyWonYoung Choi1-0/+0
Change-Id: Iea44ce17e4436d12c24ab3cc94604616e44e3011
2017-04-24Update vertion to 2.3.4-214-001Kangho Hur1-2/+2
Change-Id: Ia921b4a22bd9d87e99d1f8bef35dd79b21c8e1a7
2017-04-24Provide xamarin-forms-tizen-nuget-private packageWonYoung Choi10-12/+95
Change-Id: I3b2c44860ef6b0b8da53ec58c0fc7ba72a543613
2017-04-24Update versionsung-su.kim1-1/+1
Change-Id: Ibc3fab569433698dafd1f31e5e667d1f4c6269f1
2017-04-24Support window transparencyKangho Hur2-1/+10
- Should make window transparent before invoke LoadApplication() - According to the Tizen UX Guideline, naviframe (NavigationPage in Xamarin.Forms) has its own opaque background image by default. - So, it always looks opaque even if window is transparent. - To avoid these situations, DO NOT use NavigationPage and Navigation.PushModalAsync() if you want to make your application translucent. Change-Id: I202bd1c500e6932f2fc49c9c5c88e06acb0659af
2017-04-24Fix warningSungHyun Min4-12/+6
Change-Id: I458f07493e12a2ce534aac8318051914dfe0db1b Signed-off-by: SungHyun Min <shyun.min@samsung.com>
2017-04-24Add WebViewRendererchungryeol lim4-1/+181
- Depend On : https://review.tizen.org/gerrit/#/c/115231/ (This will be added after WebView Merge) Change-Id: I1fdc0c4420ba7e7a6b48b6ee0ce60d59e31e3691 Signed-off-by: chungryeol lim <cdark.lim@samsung.com>
2017-04-24Add logic to move map when first launchjh5.cho2-1/+6
- Add logic to move to specific point on the map when the MapSpan is given on the Map Constructor. (e.g. var map = new Map(new MapSpan(new Position(37.466047, 127.024097), 10, 10))) Change-Id: I85a8502a8c101ec984730b72e66a783fee19e2e4
2017-04-24Update versionsung-su.kim1-1/+1
Change-Id: I46905e371f040ffa5b6d52078d20bba29c8a3da6
2017-04-24Fix PickerRender bugKangho Hur1-5/+15
- Picker.TextColor is now available Change-Id: Idb005c09834672301ec5b465413c9fc1aed79d81
2017-04-24Add UpdateAfterloading method in ImageSungHyun Min1-4/+8
- for supporting 9-patch image : http://suprem.sec.samsung.net/confluence/display/SPTDTLC/Supporting+9-Patch+Image Change-Id: I5166b1ebda5f3e362cb5fd429a9c57fb0362a4aa Signed-off-by: SungHyun Min <shyun.min@samsung.com>
2017-04-24Fix Page.DisplayAlert's message format convertingKangho Hur1-2/+2
TASK=TCAPI-2218 - "\r\n" or Environment.NewLine is available. Change-Id: I4550f63060cdb6e794762f66c3ec1c6e491bfb65
2017-04-24Set the default scroller policy to autoKangho Hur1-4/+4
TASK=TCAPI-2220 - With this change, scroll bar show automatically as needed. (not always shows as default) Change-Id: I5aed4e3ea281ad90bfafa3c4ba593ba083d71b9d
2017-04-24Add Implementation of VisibleRegionjh5.cho1-2/+51
- Implementation of 'VisibleRegion' property - update 'MoveToRegion()' to support Latitude/Longitude Degree(VisibleRegion) Change-Id: Ia88657d9ddba25a1c766a16905dab8d1fca68100
2017-04-24Update versionsung-su.kim1-1/+1
Change-Id: Ia023c2f6d437f15509fda16e6ba404591474beeb
2017-04-24Fix ListView SelectedItemSungHyun Min1-2/+2
Change-Id: Ie2761d4093e1b33a92edbe49d5899cc6833a9b6f Signed-off-by: SungHyun Min <shyun.min@samsung.com>
2017-04-24Refactoring GestureHandler for extensionSungHyun Min12-286/+824
- Design : http://suprem.sec.samsung.net/confluence/display/SPTDTLC/Refactoring+GestureHandler Change-Id: I1cbcf830b4b1076c227b0ea641508198c7cb2102 Signed-off-by: SungHyun Min <shyun.min@samsung.com>
2017-04-24Update Pin and Marker to use default imagejh5.cho2-11/+10
Change-Id: I0f35a14dabae2f27654f1cd77e6f20d810a89f13
2017-04-24Renew the VisualElement.OpacityKangho Hur3-84/+47
- OpacityLayer is no more needed in renderer. - There is a limitation on this chagne - Entry and Label are not support Opacity property anymore. It will be fixed soon when Elm# is support. Change-Id: I52f0fc67fdfda65cf8141cceab877890d260a4e6
2017-04-24Create Window in OnPreCreate() instead of OnCreate()WonYoung Choi1-3/+3
OnPreCreate() method is called before OnCreate() always. If the Window is created in OnPreCreate(), User doesn't have to consider the call sequence of base.OnCreate() and LoadApplication() methods. Because the Window will be prepared before OnCreate() is called. Change-Id: I4c9f1e9507acc00850848274309409e884573e59
2017-04-24Support density independent pixelSeungkeun Lee16-58/+173
- Support Enable/Disable of this feature - By default, it was disabled. if you want enabling DP support feature, Use Forms.Init(FormsApplication application, bool useDeviceIndependentPixel) API - Hard-coded pixel value was changed to DP units - If you deal with native coordinate, use Forms.ConvertToScaledPixel / Forms.ConvertToScaledDP - If you convert hard-coded DP to pixels, use Forms.ConvertToPixel - Update font size convert formula Change-Id: I345115551e1c37d27b8a7152af5ef847d035c9a4