[NUI] integration from DevelNUI to master (#3309)
authorSeoyeon2Kim <34738918+Seoyeon2Kim@users.noreply.github.com>
Tue, 13 Jul 2021 06:57:10 +0000 (15:57 +0900)
committerGitHub <noreply@github.com>
Tue, 13 Jul 2021 06:57:10 +0000 (15:57 +0900)
commit8ad1c72c621163aebd56976d312fcca0ffe1b672
tree58980f9e275e5619d5c2d1bd89b75c70d113f8da
parent6cad2d218e047cd173175eafb838bc0c72c68acd
[NUI] integration from DevelNUI to master (#3309)

* [NUI] Add NUITizenGallery Ubuntu VS code project

* [NUI] fix transition order

 - this patch is hotfix to fix problem derived by transition order.

Signed-off-by: seungho <sbsh.baek@samsung.com>
* [NUI] Fix RelativeLayout Measure size calculation

Previously, the actual spec size is given to MeasureChild() and MeasureChild()
subtracts Padding size from the actual spec size.

Now, the actual spec size with Padding size is given to MeasureChild() to
display child with the actual spec size.

Moreover, since child's MeasuredWidth/Height are calculated in MeasureChild(),
duplicate MeasureWidth/Height assigning codes are removed.

* [NUI] Apply ImageUrl in CaptureTest

CaptureTest need to use ImageUrl
So i apply it

* [NUI] Rename APIs related to context menu. (#3263)

* [NUI] Fix ThemeManager to return valid platform theme Id (#3300)

Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
* [NUI] Add a tip for NUITizenGallery project

* [NUI] Add XAML TCs

* [XamlBuild] Remove static member in EXaml Operation

* [NUI] Fix build errors of NUI.Devel.Tests.

* [NUI] Add EncodedImageBuffer class (Load image frome Stream)

This patch will make some simple way to upload image from C# Stream to View.

- EncodedImageBuffer will create by C# Stream.
  Stream stream = global::System.IO.File.OpenRead("filename.png");
  EncodedImageBuffer buffer = new EncodedImageBuffer(stream);
- Generate ImageUrl
  ImageUrl url = buffer.GenerateUrl();
- You can use this ImageUrl as image's url
  ImageView view = new ImageView(url.GetUrl());

* [NUI] Add TCs of FrameBroker(internal).

* [NUI] Add TCs of Common(Internal).

* [NUI] Add ProcessorController

Signed-off-by: seungho <sbsh.baek@samsung.com>
* [NUI] Change InterceptTouchEvent.

* [NUI] Rectoring items layout

* [NUI] Change shouldIntercept value

* Revert "[NUI] Change shouldIntercept value"

This reverts commit 6d9b8daa4f1a466afa41cb8fb8cf7ede3990b9ec.

* Revert "[NUI] Change InterceptTouchEvent."

This reverts commit dbe26102b8c8f4473cb6ea08064dbcb916fbd3a8.

* [NUI] Version update (nui22034) (#3307)

Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
* [NUI] Change default Navigator Animation

Default Navigator Animation is changed not to show the background behind the
pages.

During Push(), alpha animation is not applied to the current page.
During Pop(), alpha animation is not applied to the previous page.

Co-authored-by: Dongsug Song <dongsug.song@samsung.com>
Co-authored-by: seungho <sbsh.baek@samsung.com>
Co-authored-by: Jaehyun Cho <jae_hyun.cho@samsung.com>
Co-authored-by: Sunghyun Kim <scholb.kim@samsung.com>
Co-authored-by: huayongxu <49056704+huayongxu@users.noreply.github.com>
Co-authored-by: Jiyun Yang <ji.yang@samsung.com>
Co-authored-by: zhouleonlei <zhouleon.lei@samsung.com>
Co-authored-by: Fang Xiaohui <xiaohui.fang@samsung.com>
Co-authored-by: guowei.wang <guowei.wang@samsung.com>
Co-authored-by: Eunki Hong <h.pichulia@gmail.com>
Co-authored-by: Joogab Yun <joogab.yun@samsung.com>
Co-authored-by: EverLEEst(SangHyeon Lee) <sh10233.lee@samsung.com>
580 files changed:
packaging/csapi-tizenfx.spec
packaging/version.txt
src/Tizen.NUI.Components/Controls/Navigation/Navigator.cs
src/Tizen.NUI.Components/Controls/RecyclerView/Item/DefaultLinearItem.cs
src/Tizen.NUI.Components/Controls/RecyclerView/Item/DefaultTitleItem.cs
src/Tizen.NUI.Components/Controls/RecyclerView/Item/RecyclerViewItem.Internal.cs
src/Tizen.NUI/src/internal/Common/ProcessorController.cs [new file with mode: 0755]
src/Tizen.NUI/src/internal/EXaml/Action/CreateInstanceAction.cs
src/Tizen.NUI/src/internal/EXaml/Action/GetObjectByPropertyAction.cs
src/Tizen.NUI/src/internal/EXaml/GlobalDataList.cs
src/Tizen.NUI/src/internal/EXaml/LoadEXaml.cs
src/Tizen.NUI/src/internal/EXaml/Operation/CreateInstance.cs
src/Tizen.NUI/src/internal/EXaml/Operation/GatherStaticInstance.cs
src/Tizen.NUI/src/internal/EXaml/Operation/RegisterXName.cs
src/Tizen.NUI/src/internal/Interop/Interop.EncodedImageBuffer.cs [new file with mode: 0644]
src/Tizen.NUI/src/internal/Interop/Interop.ProcessorController.cs [moved from src/Tizen.NUI/src/internal/Layouting/Interop/Interop.LayoutController.cs with 56% similarity]
src/Tizen.NUI/src/internal/Interop/Interop.WebContext.cs
src/Tizen.NUI/src/internal/Interop/Interop.WebContextMenu.cs
src/Tizen.NUI/src/internal/Interop/Interop.WebView.cs
src/Tizen.NUI/src/internal/Layouting/LayoutController.cs
src/Tizen.NUI/src/internal/WebView/WebContext.cs
src/Tizen.NUI/src/internal/WebView/WebContextMenu.cs
src/Tizen.NUI/src/internal/WebView/WebView.cs
src/Tizen.NUI/src/internal/WebView/WebViewContextMenuHiddenEventArgs.cs [moved from src/Tizen.NUI/src/internal/WebView/WebViewContextMenuItemSelectedEventArgs.cs with 71% similarity]
src/Tizen.NUI/src/internal/WebView/WebViewContextMenuHiddenSignal.cs [moved from src/Tizen.NUI/src/internal/WebView/WebViewContextMenuCustomizedSignal.cs with 74% similarity]
src/Tizen.NUI/src/internal/WebView/WebViewContextMenuShownEventArgs.cs [moved from src/Tizen.NUI/src/internal/WebView/WebViewContextMenuCustomizedEventArgs.cs with 79% similarity]
src/Tizen.NUI/src/internal/WebView/WebViewContextMenuShownSignal.cs [moved from src/Tizen.NUI/src/internal/WebView/WebViewContextMenuItemSelectedSignal.cs with 74% similarity]
src/Tizen.NUI/src/public/Images/EncodedImageBuffer.cs [new file with mode: 0644]
src/Tizen.NUI/src/public/Layouting/RelativeLayout.cs
src/Tizen.NUI/src/public/Theme/ThemeManager.cs
test/NUITizenGallery/.pic/NugetConfig.png [new file with mode: 0755]
test/NUITizenGallery/.pic/csproj-file.png [new file with mode: 0755]
test/NUITizenGallery/.pic/launch.png [new file with mode: 0755]
test/NUITizenGallery/.pic/run.png [new file with mode: 0755]
test/NUITizenGallery/.vscode/launch.json [new file with mode: 0644]
test/NUITizenGallery/.vscode/tasks.json [new file with mode: 0644]
test/NUITizenGallery/Examples/AbsoluteLayout/AbsoluteLayout.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/AbsoluteLayout/AbsoluteLayout.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ActivityIndicator/ActivityIndicator.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ActivityIndicator/ActivityIndicator.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/AlertDialogTest/AlertDialogTest.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/AlertDialogTest/AlertDialogTestPage.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/AnimationTest1/AnimationTest1.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/AnimationTest1/AnimationTest1.xaml.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/AnimationTest2/AnimationTest2.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/AnimationTest2/AnimationTest2.xaml.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/AnimationTest3/AnimationTest3.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/AnimationTest3/AnimationTest3.xaml.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/BackgroundColorTest1/BackGroundColorTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BackgroundColorTest1/BackgroundColorTest1Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BackgroundColorTest2/BackGroundColorTest2.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BackgroundColorTest2/BackgroundColorTest2Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BackgroundColorTest3/BackGroundColorTest3.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BackgroundColorTest3/BackgroundColorTest3Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BackgroundColorTest4/BackGroundColorTest4.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BackgroundColorTest4/BackgroundColorTest4Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BackgroundColorTest5/BackGroundColorTest5.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BackgroundColorTest5/BackgroundColorTest5Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BackgroundTest/BackgroundTest.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BackgroundTest/BackgroundTest.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BindingTest1/Behaviors/VisibilitySetter.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BindingTest1/BindingTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BindingTest1/BindingTest1Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BindingTest1/ViewModels/BindingTest1ViewModel.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BindingTest2/BindingTest2.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BindingTest2/BindingTest2Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BindingTest2/ViewModels/BindingTest2ViewModel.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BoxViewTest1/BoViewTest1Example.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BoxViewTest1/BoxViewTest1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BoxViewTest2/BoViewTest2Example.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BoxViewTest2/BoxViewTest2.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BoxViewTest3/BoViewTest3Example.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BoxViewTest3/BoxViewTest3.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BoxViewTest4/BoViewTest4.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BoxViewTest4/BoxViewTest4.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BrushBackgroundTest/BrushBackgroundTest.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BrushBackgroundTest/BrushBackgroundTest.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BrushBorderTest/BrushBorderTest.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BrushBorderTest/BrushBorderTest.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BrushComponentsTest/BrushComponentsTest.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BrushComponentsTest/BrushComponentsTest.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BrushImageTest/BrushImageTest.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BrushImageTest/BrushImageTest.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BrushViewerTest/BrushViewerTest.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/BrushViewerTest/BrushViewerTest.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ButtonTest2/ButtonTest2.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ButtonTest2/ButtonTest2Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ButtonTest5/ButtonTest5.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ButtonTest5/ButtonTest5.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ButtonTest6/ButtonTest6.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ButtonTest6/ButtonTest6.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ButtonTest7/ButtonTest7.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ButtonTest7/ButtonTest7.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ButtontTest1/ButtonTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ButtontTest1/ButtonTest1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CarouselPageTest1/CarouselPageTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CarouselPageTest1/CarouselPageTest1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CarouselViewTest1/CarouselViewTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CarouselViewTest1/CarouselViewTest1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CarouselViewTest2/CarouselViewTest2.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CarouselViewTest2/CarouselViewTest2.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CarouselViewTest4/CarouselViewTest4.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CarouselViewTest4/CarouselViewTest4.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CheckBoxTest/CheckBoxTest.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/CheckBoxTest/CheckBoxTest.xaml.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/CollectionViewFocusTest/CollectionViewFocusTest.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewFocusTest/CollectionViewFocusTest.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewFocusTest/CollectionViewItem.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewTest/CollectionViewTest1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewTest/CollectionViewTest10.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewTest/CollectionViewTest10Example.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewTest/CollectionViewTest1Example.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewTest/CollectionViewTest2.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewTest/CollectionViewTest2Example.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewTest/CollectionViewTest3.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewTest/CollectionViewTest3Example.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewTest/CollectionViewTest4.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewTest/CollectionViewTest4Example.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewTest/CollectionViewTest5.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewTest/CollectionViewTest5Example.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewTest/CollectionViewTest6.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewTest/CollectionViewTest6Example.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewTest/CollectionViewTest7.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewTest/CollectionViewTest7Example.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewTest/CollectionViewTest8.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewTest/CollectionViewTest8Example.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewTest/CollectionViewTest9.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewTest/CollectionViewTest9Example.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CollectionViewTest/TestSource.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ContentPageTest/ContentPageTest.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ContentPageTest/ContentPageTestPage1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ContentPageTest/ContentPageTestPage2.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CustomCellTest/CustomCellListItem.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CustomCellTest/CustomCellTest.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/CustomCellTest/CustomCellTestPage.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/DatePickerTest/DatePickerTest.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/DatePickerTest/DatePickerTest.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/EditorTest1/EditorTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/EditorTest1/EditorTest1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/EditorTest2/EditorTest2.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/EditorTest2/EditorTest2.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/EntryTest1/EntryTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/EntryTest1/EntryTest1Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/EntryTest2/EntryTest2.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/EntryTest2/EntryTest2Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/EntryTest4/EntryTest4.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/EntryTest4/EntryTest4Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/FlexTest1/FlexTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/FlexTest1/FlexTest1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/FlexTest2/FlexTest2.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/FlexTest2/FlexTest2.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/FlexTest3/FlexTest3.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/FlexTest3/FlexTest3.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/FrameLayoutTest1/FrameLayoutTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/FrameLayoutTest1/FrameLayoutTest1Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/FrameTest1/FrameTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/FrameTest1/FrameTest1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/GridTest1/GridTest1.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/GridTest1/GridTest1.xaml.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/GridTest2/GridTest2.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/GridTest2/GridTest2.xaml.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/HelloWorld/HelloWorld.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/HelloWorld/HelloWorld.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/IconTest/IconTest.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/IconTest/IconTest.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ImageButtonTest/ImageButtonTest.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ImageButtonTest/ImageButtonTest.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ImageTest1/ImageTest1.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/ImageTest1/ImageTest1.xaml.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/ImageTest2/ImageTest2.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/ImageTest2/ImageTest2.xaml.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/ImageTest3/ImageTest3.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/ImageTest3/ImageTest3.xaml.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/ImageTest4/ImageTest4.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/ImageTest4/ImageTest4.xaml.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/ImageTest5/ImageTest5.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/ImageTest5/ImageTest5.xaml.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/IndicatorViewTest1/IndicatorViewTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/IndicatorViewTest1/IndicatorViewTest1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/IndicatorViewTest4/IndicatorViewTest4.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/IndicatorViewTest4/IndicatorViewTest4.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/LabelTest1/LabelTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/LabelTest1/LabelTest1Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/LabelTest2/LabelTest2.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/LabelTest2/LabelTest2Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/LabelTest3/LabeTest3Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/LabelTest3/LabelTest3.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/LabelTest5/LabelTest5.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/LabelTest5/LabelTest5Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ListViewFooterTest1/ListViewFooterTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ListViewFooterTest1/ListViewFooterTest1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/MenuTest/MenuTest.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/MenuTest/MenuTestMenu.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/MenuTest/MenuTestPage.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/NavigatorTest1/NavigatorTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/NavigatorTest1/NavigatorTest1Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/NavigatorTest2/NavigatorTest2.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/NavigatorTest2/NavigatorTest2Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/OpacityTest1/OpacityTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/OpacityTest1/OpacityTest1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/PanGestureTest1/PanGestureTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/PanGestureTest1/PanGestureTest1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/PerformanceTest1/ListItemTitle.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/PerformanceTest1/PerformanceTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/PerformanceTest1/PerformanceTest1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/PerformanceTest2/ListItemTitleSwitch.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/PerformanceTest2/PerformanceTest2.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/PerformanceTest2/PerformanceTest2.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/PerformanceTest3/ListItemTitleView.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/PerformanceTest3/PerformanceTest3.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/PerformanceTest3/PerformanceTest3.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/PickerTest1/PickerTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/PickerTest1/PickerTest1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/PinchGestureTest1/PinchGestureTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/PinchGestureTest1/PinchGestureTest1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ProgressbarTest1/ProgressbarTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ProgressbarTest1/ProgressbarTest1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/RecalculateTest1/RecalculateTest1.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/RecalculateTest1/RecalculateTest1.xaml.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/RefreshViewTest1/RefreshViewTest1.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/RefreshViewTest1/RefreshViewTest1.xaml.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/RotationTest1/RotationTest1.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/RotationTest1/RotationTest1.xaml.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/ScaleTest1/ScaleTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ScaleTest1/ScaleTest1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ScaleTest2/ScaleTest2.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ScaleTest2/ScaleTest2.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ScrollViewTest1/ScrollViewTest1.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/ScrollViewTest1/ScrollViewTest1.xaml.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/ScrollViewTest2/ScrollViewTest2.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/ScrollViewTest2/ScrollViewTest2.xaml.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/ScrollViewTest3/ScrollViewTest3.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/ScrollViewTest3/ScrollViewTest3.xaml.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/ScrollViewTest4/ScrollViewTest4.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/ScrollViewTest4/ScrollViewTest4.xaml.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/ScrollViewTest7/ScrollViewTest7.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/ScrollViewTest7/ScrollViewTest7.xaml.cs [new file with mode: 0755]
test/NUITizenGallery/Examples/SetColorTest/SetColorTest.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/SetColorTest/SetColorTest.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/SimpleTest/SimpleTest.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/SimpleTest/SimpleTest.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/SliderTest1/SliderTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/SliderTest1/SliderTest1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/SliderTest2/SliderTest2.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/SliderTest2/SliderTest2.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/StackInGridTest1/StackInGridTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/StackInGridTest1/StackInGridTest1Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/StackLayoutTest1/StackLayoutTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/StackLayoutTest1/StackLayoutTest1Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/StackLayoutTest2/StackLayoutTest2.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/StackLayoutTest2/StackLayoutTest2Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/StackLayoutTest3/StackLayoutTest3.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/StackLayoutTest3/StackLayoutTest3Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/StackLayoutTest4/StackLayoutTest4.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/StackLayoutTest4/StackLayoutTest4Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/StackLayoutTest4/StackLayoutTest5.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/StackLayoutTest4/StackLayoutTest5Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/StackLayoutTest6/StackLayoutTest6.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/StackLayoutTest6/StackLayoutTest6Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/StackLayoutTest8/StackLayoutTest8.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/StackLayoutTest8/StackLayoutTest8Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/SwipeGestureRecognizerTest/SwipeGestureRecognizerTest.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/SwipeGestureRecognizerTest/SwipeGestureRecognizerTest.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/SwipeViewTest1/SwipeViewTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/SwipeViewTest1/SwipeViewTest1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/SwipeViewTest2/SwipeViewTest2.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/SwipeViewTest2/SwipeViewTest2.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/TabViewTest/TabViewTest.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/TabViewTest/TabViewTestPage.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/TapGestureTest1/TapGestureTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/TapGestureTest1/TapGestureTest1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/TapGestureTest2/TapGestureTest2.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/TapGestureTest2/TapGestureTest2.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/TapGestureTest3/TapGestureTest3.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/TapGestureTest3/TapGestureTest3.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/TapGestureTest4/TapGestureTest4.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/TapGestureTest4/TapGestureTest4.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/Test1/Test1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/Test1/Test1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/Test2/Test2.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/Test2/Test2.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/TextAnchorTest/TextAnchorTest.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/TextAnchorTest/TextAnchorTest.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/TimePickerTest/TimePickerTest.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/TimePickerTest/TimePickerTest.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ToolbarItemTest1/ToolbarItemTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/ToolbarItemTest1/ToolbarItemTest1Page.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/WebViewTest1/WebViewTest1.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/WebViewTest1/WebViewTest1.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/WebViewTest2/WebViewTest2.cs [new file with mode: 0644]
test/NUITizenGallery/Examples/WebViewTest2/WebViewTest2.xaml.cs [new file with mode: 0644]
test/NUITizenGallery/IExample.cs [new file with mode: 0644]
test/NUITizenGallery/NUITizenGallery.code-workspace [new file with mode: 0644]
test/NUITizenGallery/NUITizenGallery.cs [new file with mode: 0644]
test/NUITizenGallery/NUITizenGallery.csproj [new file with mode: 0755]
test/NUITizenGallery/NuGet.config [new file with mode: 0644]
test/NUITizenGallery/README.md [new file with mode: 0755]
test/NUITizenGallery/res/images/Boston.png [new file with mode: 0644]
test/NUITizenGallery/res/images/Image.png [new file with mode: 0644]
test/NUITizenGallery/res/images/NUITizenGallery.png [new file with mode: 0644]
test/NUITizenGallery/res/images/a.jpg [new file with mode: 0755]
test/NUITizenGallery/res/images/bg_0.png [new file with mode: 0644]
test/NUITizenGallery/res/images/bg_1.png [new file with mode: 0644]
test/NUITizenGallery/res/images/clock_tabs_ic_stopwatch.png [new file with mode: 0644]
test/NUITizenGallery/res/images/controller_btn_check_off.png [new file with mode: 0755]
test/NUITizenGallery/res/images/controller_btn_check_on.png [new file with mode: 0755]
test/NUITizenGallery/res/images/pagination_ic_nor.png [new file with mode: 0644]
test/NUITizenGallery/res/images/pagination_ic_sel.png [new file with mode: 0644]
test/NUITizenGallery/res/images/picture.png [new file with mode: 0755]
test/NUITizenGallery/res/images/posters/01 Jaws.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/02 Raiders of the Lost Ark.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/03 star wars.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/04 E.T. 2.jpeg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/05 Vertigo.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/06 Alien.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/07 Jurassic Park.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/08 The Silence of the Lambs.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/09 American Beauty.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/10 Back to the Future.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/11 Chinatown.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/12 The Godfather.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/13 Airplane.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/14 Pulp Fiction.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/15 Ghostbusters.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/16 The Usual Suspects.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/17 the people vs larry flynt.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/18 Trainspotting.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/19 Goodfellas.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/20 the truman show.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/21 Blade Runner.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/22 Full Metal Jacket.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/23 Attack of the 50ft Woman.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/24 Batman.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/25 nymph.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/26 the driver.jpeg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/27 The Phantom Menace.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/28 Platoon.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/29 Gone with the Wind.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/30 Forbidden Planet.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/31 The Exorcist.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/32 Anatomy of a Murder.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/33 Metropolis.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/34 Clockwork Orange.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/35 Halloween.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/36 Apocalypse Now.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/37 Rocketeer.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/38 Rosemary's Baby.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/39 Moon.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/40 Scream.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/41 Breakfast at Tiffany's.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/42 The Social Network.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/43 The Thing.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/44 Fear and Loathing in Las Vegas.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/45 Love In The Afternoon.jpeg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/46 Manhattan.jpeg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/47 Lord of War.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/48 Mean Streets.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/49 The Graduate.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/posters/50 little miss sunshine.jpg [new file with mode: 0644]
test/NUITizenGallery/res/images/progress_0.png [new file with mode: 0644]
test/NUITizenGallery/res/images/progress_1.png [new file with mode: 0644]
test/NUITizenGallery/res/images/progress_10.png [new file with mode: 0644]
test/NUITizenGallery/res/images/progress_11.png [new file with mode: 0644]
test/NUITizenGallery/res/images/progress_12.png [new file with mode: 0644]
test/NUITizenGallery/res/images/progress_2.png [new file with mode: 0644]
test/NUITizenGallery/res/images/progress_3.png [new file with mode: 0644]
test/NUITizenGallery/res/images/progress_4.png [new file with mode: 0644]
test/NUITizenGallery/res/images/progress_5.png [new file with mode: 0644]
test/NUITizenGallery/res/images/progress_6.png [new file with mode: 0644]
test/NUITizenGallery/res/images/progress_7.png [new file with mode: 0644]
test/NUITizenGallery/res/images/progress_8.png [new file with mode: 0644]
test/NUITizenGallery/res/images/progress_9.png [new file with mode: 0644]
test/NUITizenGallery/res/images/tizen.png [new file with mode: 0644]
test/NUITizenGallery/res/images/xamarin_logo.png [new file with mode: 0644]
test/NUITizenGallery/res/layout/AbsoluteLayoutPage.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/ActivityIndicatorPage.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/AlertDialogTestPage.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/AnimationTest1Page.xaml [new file with mode: 0755]
test/NUITizenGallery/res/layout/AnimationTest2Page.xaml [new file with mode: 0755]
test/NUITizenGallery/res/layout/AnimationTest3Page.xaml [new file with mode: 0755]
test/NUITizenGallery/res/layout/BackgroundColorTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/BackgroundColorTest2Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/BackgroundColorTest3Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/BackgroundColorTest4Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/BackgroundColorTest5Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/BackgroundTestPage.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/BindingTest1.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/BindingTest2Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/BoxViewTest/BoxViewTest1.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/BoxViewTest/BoxViewTest2.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/BoxViewTest/BoxViewTest3.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/BoxViewTest/BoxViewTest4.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/BrushBackgroundTestPage.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/BrushBorderTestPage.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/BrushComponentsTestPage.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/BrushImageTestPage.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/BrushViewerTestPage.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/ButtonTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/ButtonTest2Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/ButtonTest5Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/ButtonTest6Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/ButtonTest7Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/CarouselPageTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/CarouselViewTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/CarouselViewTest2Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/CarouselViewTest4Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/CheckBoxTestPage.xaml [new file with mode: 0755]
test/NUITizenGallery/res/layout/CollectionViewFocusTestPage.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/CollectionViewItem.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/CollectionViewTest/CollectionViewTest1.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/CollectionViewTest/CollectionViewTest10.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/CollectionViewTest/CollectionViewTest2.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/CollectionViewTest/CollectionViewTest3.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/CollectionViewTest/CollectionViewTest4.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/CollectionViewTest/CollectionViewTest5.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/CollectionViewTest/CollectionViewTest6.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/CollectionViewTest/CollectionViewTest7.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/CollectionViewTest/CollectionViewTest8.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/CollectionViewTest/CollectionViewTest9.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/ContentPageTestPage1.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/ContentPageTestPage2.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/CustomCellListItem.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/CustomCellTestPage.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/DatePickerTestPage.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/EditorTest1.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/EditorTest2.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/EntryTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/EntryTest2Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/EntryTest4Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/FlexTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/FlexTest2Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/FlexTest3Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/FrameLayoutTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/FrameTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/GridTest1Page.xaml [new file with mode: 0755]
test/NUITizenGallery/res/layout/GridTest2Page.xaml [new file with mode: 0755]
test/NUITizenGallery/res/layout/HelloWorldPage.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/IconTestPage.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/ImageButtonTestPage.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/ImageTest1Page.xaml [new file with mode: 0755]
test/NUITizenGallery/res/layout/ImageTest2Page.xaml [new file with mode: 0755]
test/NUITizenGallery/res/layout/ImageTest3Page.xaml [new file with mode: 0755]
test/NUITizenGallery/res/layout/ImageTest4Page.xaml [new file with mode: 0755]
test/NUITizenGallery/res/layout/ImageTest5Page.xaml [new file with mode: 0755]
test/NUITizenGallery/res/layout/IndicatorViewTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/IndicatorViewTest4Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/LabelTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/LabelTest2Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/LabelTest3Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/LabelTest5Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/ListItemTitle.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/ListItemTitleSwitch.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/ListItemTitleView.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/ListViewFooterTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/MenuTest/MenuTestMenu.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/MenuTest/MenuTestPage.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/NavigatorTest/NavigatorTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/NavigatorTest/NavigatorTest2Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/OpacityTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/PanGestureTest1.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/PerformanceTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/PerformanceTest2Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/PerformanceTest3Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/PickerTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/PinchGestureTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/ProgressbarTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/RecalculateTest1Page.xaml [new file with mode: 0755]
test/NUITizenGallery/res/layout/RefreshViewTest1Page.xaml [new file with mode: 0755]
test/NUITizenGallery/res/layout/RotationTest1Page.xaml [new file with mode: 0755]
test/NUITizenGallery/res/layout/ScaleTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/ScaleTest2Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/ScrollViewTest1Page.xaml [new file with mode: 0755]
test/NUITizenGallery/res/layout/ScrollViewTest2Page.xaml [new file with mode: 0755]
test/NUITizenGallery/res/layout/ScrollViewTest3Page.xaml [new file with mode: 0755]
test/NUITizenGallery/res/layout/ScrollViewTest4Page.xaml [new file with mode: 0755]
test/NUITizenGallery/res/layout/ScrollViewTest7Page.xaml [new file with mode: 0755]
test/NUITizenGallery/res/layout/SetColorTestPage.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/SimpleTestPage.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/SliderTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/SliderTest2Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/StackInGridTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/StackLayoutTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/StackLayoutTest2Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/StackLayoutTest3Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/StackLayoutTest4Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/StackLayoutTest5Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/StackLayoutTest6Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/StackLayoutTest8Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/SwipeGestureRecognizerTestPage.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/SwipeViewTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/SwipeViewTest2Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/TabViewTest/TabViewTestPage.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/TapGestureTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/TapGestureTest2Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/TapGestureTest3Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/TapGestureTest4Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/Test1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/Test2Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/TextAnchorTest.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/TimePickerTestPage.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/ToolbarItemTest1Page.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/WebViewTest1.xaml [new file with mode: 0644]
test/NUITizenGallery/res/layout/WebViewTest2.xaml [new file with mode: 0644]
test/NUITizenGallery/res/menu.png [new file with mode: 0644]
test/NUITizenGallery/shared/res/NUITizenGallery.png [new file with mode: 0644]
test/NUITizenGallery/tizen-manifest.xml [new file with mode: 0644]
test/Tizen.NUI.Samples/Tizen.NUI.Samples/Samples/CaptureTest.cs [changed mode: 0755->0644]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSActivatedSignalType.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSBackKeyManager.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSBaseObject.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSChildPropertyRegistration.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSCustomActorImpl.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSDaliException.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSDefaultRuler.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSDoublep.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSFixedRuler.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSFloatp.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSFontDescription.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSFontMetrics.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSFrameBuffer.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSGlyphInfo.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSMatrix.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSMatrix3.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSNativeImageInterface.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSPathConstrainer.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSPropertyHelper.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSPropertyRangeManager.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSRenderTask.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSRuler.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSRulerDomain.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSStringValuePair.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSTimePeriod.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSTouchPoint.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSTouchPointContainer.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSTypeAction.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSVectorBlob.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSVectorUint16Pair.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSVectorUnsignedChar.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Common/TSVersionCheck.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/FrameBroker/TSDefaultFrameBroker.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/FrameBroker/TSFrameData.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/FrameBroker/TSSafeFrameBrokerHandle.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Xaml/TSApplyPropertiesVisitor.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Xaml/TSCreateValuesVisitor.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Xaml/TSDesignMode.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Xaml/TSExpandMarkupsVisitor.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Xaml/TSFillResourceDictionariesVisitor.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Xaml/TSHydrationContext.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Xaml/TSIDictionaryExtensions.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Xaml/TSMarkupExpressionParser.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Xaml/TSMarkupExtensionParser.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Xaml/TSNamescopingVisitor.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Xaml/TSPruneIgnoredNodesVisitor.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/Xaml/TSReflectionExtensions.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Images/TSImageLoading.cs
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Images/TSNativeImageSource.cs
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Images/TSPixelBuffer.cs
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Images/TSPixelData.cs
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Xaml/MarkupExtensions/TSApplicationResourcePathExtension.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Xaml/MarkupExtensions/TSArrayExtension.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Xaml/MarkupExtensions/TSBindingExtension.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Xaml/MarkupExtensions/TSDynamicResourceExtension.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Xaml/MarkupExtensions/TSNUIResourcePathExtension.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Xaml/MarkupExtensions/TSNullExtension.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Xaml/MarkupExtensions/TSReferenceExtension.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Xaml/MarkupExtensions/TSStaticExtension.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Xaml/MarkupExtensions/TSTemplateBindingExtension.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Xaml/MarkupExtensions/TSTypeExtension.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Xaml/TSProvideCompiledAttribute.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Xaml/TSStaticResourceExtension.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Xaml/TSTypeConversionAttribute.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Xaml/TSViewExtensions.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Xaml/TSXamlCompilationAttribute.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Xaml/TSXamlFilePathAttribute.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Xaml/TSXamlParseException.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Xaml/TSXamlResourceIdAttribute.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Xaml/TSXamlServiceProvider.cs [new file with mode: 0755]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/public/Xaml/TSXmlLineInfo.cs [new file with mode: 0755]
test/Tizen.NUI.WebViewTest/SimpleWebViewApp.cs
test/Tizen.NUI.WebViewTest/tizen-manifest.xml