summaryrefslogtreecommitdiff
path: root/ElmSharp
AgeCommit message (Collapse)AuthorFilesLines
2016-11-21theme: radio: fix wrong text propertySungtaek Hong1-2/+2
Change-Id: I448f87bfa7f79cb6470c32e7b2b95e003681856a Signed-off-by: Sungtaek Hong <sth253.hong@samsung.com>
2016-11-18theme: expand radio as text expandsSungtaek Hong9-0/+640
Change-Id: I051c1c81f0729f239fbaf9f7630958eeb65e366e Signed-off-by: Sungtaek Hong <sth253.hong@samsung.com>
2016-11-15Fix .nuspec file to change authors and version dependenciesWonYoung Choi1-1/+1
Change-Id: Ia66f9c04529d7ebb37fec6e1e50331e67118bdd5
2016-11-10Make sure that the returned boolean is 1-bytePawel Andruszkiewicz1-0/+1
During our tests we have discovered that the marshalled method returns true even when called from background thread. This commit fixes this issue. More info: https://msdn.microsoft.com/en-us/library/t2t3725f(v=vs.80).aspx https://msdn.microsoft.com/en-us/library/75dwhxf7(v=vs.110).aspx Change-Id: I6b9f67aadf07ce35ab498f77b8ef6dd58b0d979e Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
2016-11-10Refactoring EvasObjectEvent/SmartEventSeungkeun Lee32-425/+518
- Change to public - need to access from others packages - Fix already been freed error message - Introduce EventLifeTracker to release automatically - EFL event object life cycle is depend on target object, so we treat different with normal c# class Change-Id: I667fb5c3673fb2d3fb5741098737edea64ec5ae5
2016-11-07Update the spec file and nuspec fileKangho Hur1-7/+12
Change-Id: I344dda1ec877992ba229d3493ff7842574d6a86a
2016-11-07Merge "Add ThemeOverlay() API in Elementary." into devel/dotnetKangho Hur1-4/+8
2016-11-01Fix License boiler-plateWonYoung Choi101-362/+1572
Change-Id: Iecc5ebb4a5681f28ffef3ec3e39815d4efbb7fe0
2016-11-01Support the background color of image.rina6350.you1-0/+22
TASK=TCAPI-1820 Change-Id: Ibf72dc4c90ff2a00a4e434ecf8a7842ab9bacf0e
2016-10-31Add ThemeOverlay() API in Elementary.JEONGHYUN YUN1-4/+8
Change-Id: I482c7e5250d9475a5213687e01b282a15cb1a133 Signed-off-by: JEONGHYUN YUN <jh0506.yun@samsung.com>
2016-10-28Add EcoreMainLoop.IsMainThread to check the main loop threadWonYoung Choi4-1/+23
EcoreMainLoop.IsMainThread returns true when the main loop is running in current thread. Change-Id: I1a189c6fa233fc7be4f14b8a2c4091852ddbe172
2016-10-27Modify SerPartContent to remove old content when content is nullSungHyun Min1-2/+3
Signed-off-by: SungHyun Min <shyun.min@samsung.com> Change-Id: I668f5702bb9b9418f94fc44de1eab404d23277a6
2016-10-26Hold added object reference in ItemObjectSeungkeun Lee1-0/+3
- The lifecycle of added object will same with contained object Change-Id: I01be33a413f5b3706a7828c2b9e5016268931a24
2016-10-26Change end line mark (Line feed)Seungkeun Lee1-173/+173
Change-Id: Ie037af1cf1411db697dc60b839cbf4c20dcc4c64
2016-10-24First and Last item propertyLukasz Foniok2-0/+21
Change-Id: If550f20af5c9f12e776981cab7a6034f4e0f22f7 Signed-off-by: Lukasz Foniok <l.foniok@samsung.com>
2016-10-22Fix line ending in csproj filesPiotr Szydelko1-164/+164
.gitattributes has been introduced in a recent commit. Now git warns about *.csproj being automatically converted and refuses to update untill changes are committed. Change-Id: I2e2e902f367c351055783b489cb10a2e1c540610 Signed-off-by: Piotr Szydelko <p.szydelko@samsung.com>
2016-10-21Merge "EFL requires the color to be pre-multiplied" into develSeungkeun Lee1-1/+4
2016-10-20Fix ImageLoading to use new smart callbacksWonYoung Choi2-75/+120
New start callbacks for Image were introduced. Fix these smart callbacks ("load,ready", "load,error") are used instead of "preloaded" evas callback. Change-Id: Ia78fb25f29f926045f2ef4c5aa2d457ff9821ff8
2016-10-20EFL requires the color to be pre-multipliedPawel Andruszkiewicz1-1/+4
Change-Id: I7dc8711c404f8c095c9342a6384195cb2587938f Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
2016-10-20Merge "[Theme] update color_class(colorselector, entry, label)" into develJeonghyun Yun6-29/+1928
2016-10-19Updating data item along with item classLukasz Foniok2-3/+4
Change-Id: I97f979aec5c62d8669f866e60bc3281c1dc51908 Signed-off-by: Lukasz Foniok <l.foniok@samsung.com>
2016-10-18Add IsMoveSync property to EvasMapPiotr Bereza2-0/+18
This is needed to synchronize a move of transformed (e.g. rotated) evas object with a move of a parent. By default it is not synchronized. Change-Id: Ie88d1da5052da9cba5fe9682852590f2a6cb8a43 Signed-off-by: Piotr Bereza <p.bereza@samsung.com>
2016-10-18Merge "Fix GC finalizer issue" into develKangho Hur6-29/+73
2016-10-18Fix GC finalizer issueSeungkeun Lee6-29/+73
- Finalizer was called in GC thread and it can't access EFL object - Remove all finalizer code that access EFL object - Hold the reference of EvasObject that was added on Window - Fix wrong IDispose implemention - When Dispose(false) native handle should be freed, but we didn't, it cause seg-fault, after released C# layer, native callback can invoked. - So, We release native handle when Dispose(false) was called. - but, it will cause some error message 'Maybe it has already been freed.' Change-Id: Ic225799ac8cf9fd102a67d870043cb24bad55c7d
2016-10-18Merge "Sync elementary color class API" into develKangho Hur2-2/+2
2016-10-18[Theme] update color_class(colorselector, entry, label)Sungtaek Hong6-29/+1928
Change-Id: I28ef858fd0c2171c758da5e6a0c16aaad9337198
2016-10-13GenList clear and update item class apiLukasz Foniok4-1/+18
Change-Id: I5b20b244796c501e56dc12c560a4a3835e189b66 Signed-off-by: Lukasz Foniok <l.foniok@samsung.com>
2016-10-11GenListItem Selection Mode methodLukasz Foniok2-6/+46
Change-Id: I59d2d1944b1bcb459085102371a8e6889d09b48d Signed-off-by: Lukasz Foniok <l.foniok@samsung.com>
2016-10-11Sync elementary color class APIjh0506.yun2-2/+2
Change-Id: Ib6faa9aa6c510fe7a59ffd83ee7ad6f411e690d1 Signed-off-by: jh0506.yun <jh0506.yun@DO-JH0506-YUN03>
2016-10-10Add Scrollable property to ElmSharp.EntryPawel Andruszkiewicz2-0/+25
Warning: enabling the Scrollable property changes the internal hierarchy of the entry (via elm_widget_resize_object_set()). This in turn causes all kinds of side effects, i.e. changing the background color via ElmSharp.Widget.SetPartColor("bg-default", color); no longer works. Change-Id: I4873bcdebdc9e8472710c8b0575aabd009398148 Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
2016-10-10Fix build break on Net45jh5.cho1-5/+5
Change-Id: I45aaf179cda1042967d396dece7448b6d7fa3f92
2016-10-06Add ElmSharp.GestureLayer classPiotr Szydelko4-0/+744
Change-Id: I86d2736395a10a1da10e6fb860d06e3d77b73612
2016-10-06Add ElmSharp themejh0506.yun6-1/+224
Signed-off-by: jh0506.yun <jh0506.yun@samsung.com> Change-Id: Iaec9141c09206230cb1b6d1b66dc0b86ab7653fa
2016-10-04Use nuget restore to solve dependenciesWonYoung Choi6-10/+11
Change-Id: I9541707be648a37c493dc2715b67dbe45611b888
2016-09-27Fix callback order issue, memory leak issue in GenItem,GenItemClassSeungkeun Lee5-22/+41
- GenItemClass::DeleteHandler was called, after related item was cleanup So, developer can't access to related item in DeleteHandler. I change the source of DeleteHandler - Memory leak on ItemObject s_IdToItemTable and s_HandleToItemTable was not removed when Item was deleted, So ItemObject can't released. Change-Id: Ibe5ada852f1c1d777ece5667b3aafa5be4cf119d
2016-09-26Fix assignment of the item classPawel Andruszkiewicz1-1/+1
Change-Id: I2ca06b050bfb755b4424621054cfb5840c6bfd0e Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
2016-09-26Merge "Make Deleted event for GenListItem object public" into develKangho Hur1-1/+1
2016-09-26Merge "Add Evas Polygon class" into develKangho Hur4-0/+70
2016-09-26Add additional fields to structure SystemTime representing struct tmWonYoung Choi5-80/+65
Change-Id: Ib44aa8ada3be508edbe9dbbfb8b94ff9087e7d6e
2016-09-23Add Evas Polygon classPiotr Szydelko4-0/+70
Change-Id: Ic8c20b1e7da8ee77f0fc4244843533b9c92b90af Signed-off-by: Piotr Szydelko <p.szydelko@samsung.com>
2016-09-23Make Deleted event for GenListItem object publicLukasz Foniok1-1/+1
Change-Id: I08e66a58d372af24cabcdf68a9fff0ddc5b143c4 Signed-off-by: Lukasz Foniok <l.foniok@samsung.com>
2016-09-22Add PerformanceTestchungryeol Lim9-2/+135
* EcoreAnimator, ElmScrollCOnfig have been added. * ScrollAnimationStared/Stoppe and Changed event have been added in GenList. * RenderPost event has been added in EvasObject. Change-Id: Ia093d4787cc50e4ac5a966b35222102069f43729 Signed-off-by: chungryeol Lim <cdark.lim@samsung.com>
2016-09-22Fix error typo Window.AvailableRotationsSeungkeun Lee1-1/+4
Change-Id: I8d79c721c9c867ecefc68fe0ee58834bca767767
2016-09-21Add Toggled event in PanelSeungkeun Lee1-0/+5
- Please latest binary to test Toggled event (after 9/4) Change-Id: I0d28e05cfe29f02e2fc84f2ed68467fbebc9dadf
2016-09-21Add InsertAfter method in NaviframeSeungkeun Lee2-10/+37
- It is need to Forms to implement Push without animation Change-Id: I6bf64e57efa589889366d69042acf41ee56790e6
2016-09-20Refacto Window initialize codeSeungkeun Lee1-12/+6
- Move from OnRealized to Constructor - Orignally we add initialize code into OnRealized method to reuse with Sub class(WidgetWindow) But, Initialized code only for elm-window, not Widget window, So move to Constructor of Window - To deprecate OnRealized method Change-Id: I7d4ddc8f04cdeb7e22acdd25d071e426a32a01e9
2016-09-20Fix Popped event registration in InsertBeforePiotr Bereza1-0/+5
Change-Id: I364bd12ed50ff28be065582a72699d404b28c09f Signed-off-by: Piotr Bereza <p.bereza@samsung.com>
2016-09-19[Entry]Modify SetInputPanelEnabledQian Sui1-1/+1
Change-Id: I8ff2735ce5576dbf8f59902be62ecaf88c5e4d94 Signed-off-by: Qian Sui <qian.sui@samsung.com>
2016-09-19Merge "Add IsHighlight for GenGrid to implement Calculator App." into develSungGyu Choi1-0/+12
2016-09-14Fix InsertBefore methodPiotr Bereza1-1/+1
Change-Id: Ic938f2aabc506fe4e942314c765776db64c8974a Signed-off-by: Piotr Bereza <p.bereza@samsung.com>