diff options
author | Taehyub Kim <taehyub.kim@samsung.com> | 2017-07-28 14:48:48 +0900 |
---|---|---|
committer | Jaehyun Cho <jae_hyun.cho@samsung.com> | 2017-11-28 17:15:42 +0900 |
commit | 996a975506edbbc695ecf6ec5e6c4c58a1ac1a50 (patch) | |
tree | 1cbcbfb46edfe385bacc723559a185d225b7caeb /data | |
parent | e8ae4178d846136e9993828c3523002c24cdf015 (diff) |
efl_ui_popup: add Efl.Ui.Popup class
Summary: add initial code for Efl.Ui.Popup class
Test Plan: 1. run elementary_test -to efluipopup
Reviewers: Jaehyun_Cho, Blackmole, thiepha, woohyun, cedric
Reviewed By: Jaehyun_Cho
Subscribers: bu5hm4n, cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D5037
Diffstat (limited to 'data')
-rw-r--r-- | data/elementary/themes/edc/elm/popup.edc | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/data/elementary/themes/edc/elm/popup.edc b/data/elementary/themes/edc/elm/popup.edc index a551d4c602..ec79630716 100644 --- a/data/elementary/themes/edc/elm/popup.edc +++ b/data/elementary/themes/edc/elm/popup.edc | |||
@@ -507,3 +507,39 @@ group { name: "elm/popup/base/subpopup"; | |||
507 | } | 507 | } |
508 | } | 508 | } |
509 | } | 509 | } |
510 | |||
511 | //Efl.Ui.Popup Themes | ||
512 | group { "elm/popup/base/view"; | ||
513 | images.image: "rounded_square.png" COMP; | ||
514 | parts { | ||
515 | spacer { "base"; | ||
516 | desc { "default"; | ||
517 | rel1.offset: 10 10; | ||
518 | rel2.offset: -11 -11; | ||
519 | } | ||
520 | } | ||
521 | image { "bg"; | ||
522 | desc { "default"; | ||
523 | min: 100 100; | ||
524 | image.border: 15 15 15 15; | ||
525 | image.normal: "rounded_square.png"; | ||
526 | } | ||
527 | } | ||
528 | swallow { "elm.swallow.content"; | ||
529 | desc { "default"; | ||
530 | rel.to: "base"; | ||
531 | } | ||
532 | } | ||
533 | } | ||
534 | } | ||
535 | |||
536 | group { "elm/popup/base/event_bg"; | ||
537 | parts { | ||
538 | rect { "base"; | ||
539 | repeat; | ||
540 | desc { "default"; | ||
541 | color: 0 255 0 128; | ||
542 | } | ||
543 | } | ||
544 | } | ||
545 | } | ||