rimmed pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=1d97c704fd0aeff15f8dc279fff1c3768e73ccaa
commit 1d97c704fd0aeff15f8dc279fff1c3768e73ccaa Author: Tetiana Naumenko <t.naume...@samsung.com> Date: Wed Mar 1 12:47:05 2017 +0200 layout.edc: add entry style base-noedit New entry style created in default and tizen versions for text with parameters: noedit and wordwrap Change-Id: Ia4d958fdb7d0a112e214f2ed9a022dc808c9d3f8 --- data/themes/default/widgets/entry.edc | 20 ++++++++++++++++++++ data/themes/tizen/widgets/entry.edc | 20 ++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/data/themes/default/widgets/entry.edc b/data/themes/default/widgets/entry.edc index da6ac7f..5a19b93 100644 --- a/data/themes/default/widgets/entry.edc +++ b/data/themes/default/widgets/entry.edc @@ -82,6 +82,26 @@ group { name: "elm/entry/base/default"; } } +group { name: "elm/entry/base-noedit/default"; + inherit: "elm/entry/base/default"; + parts { + part { name: "elm.text"; + type: TEXTBLOCK; + source: "elm/entry/selection/default"; + source4: ""; + source6: "elm/entry/anchor/default"; + description { state: "default" 0.0; + fixed: 1 0; + text { + style: "entry_main_text"; + align: 0.0 0.0; + min: 0 1; + } + } + } + } +} + group { name: "elm/scroller/entry/default"; data { item: "focus_highlight" "on"; diff --git a/data/themes/tizen/widgets/entry.edc b/data/themes/tizen/widgets/entry.edc index 7186c96..f6becd7 100644 --- a/data/themes/tizen/widgets/entry.edc +++ b/data/themes/tizen/widgets/entry.edc @@ -82,6 +82,26 @@ group { name: "elm/entry/base/default"; } } +group { name: "elm/entry/base-noedit/default"; + inherit: "elm/entry/base/default"; + parts { + part { name: "elm.text"; + type: TEXTBLOCK; + source: "elm/entry/selection/default"; + source4: ""; + source6: "elm/entry/anchor/default"; + description { state: "default" 0.0; + fixed: 1 0; + text { + style: "entry_main_text"; + align: 0.0 0.0; + min: 0 1; + } + } + } + } +} + group { name: "elm/scroller/entry/default"; data { item: "focus_highlight" "on"; --