efl

CMakeLists and packaging files for automatic Edje file compilation in project

拥有回忆 提交于 2019-12-12 04:26:05
问题 I'm very new to EFL. And now I'm trying to get used to it. There is library named Edje. This library allows theming and other sort of things. But files for it are created in plain text and have to be compiled using edje_cc . How can I add this compilation to CMakeLists.txt file and to packaging.spec file for it to be properly compiled and installed on the machine? Sorry for my broken English. 回答1: In your CMakeLists.txt, do: ADD_CUSTOM_TARGET(your_edj_file.edj COMMAND edje_cc your_edc_file

How to add background to elementary(EFL) widget?

牧云@^-^@ 提交于 2019-12-08 08:50:49
问题 I want background color(or image) to elementary widget(also container) like grid or box. how can I set background color to elementary widget? in EFL elementary document, I found elm_bg functions, but I can't set it as background to other elementary containers... 回答1: Also asked on tizen.org, this part is unclear apparently https://developer.tizen.org/ko/forums/native-application-development/how-change-button-background-color Theming is the way to go, sample code shared at previous URL. 回答2:

How to add background to elementary(EFL) widget?

风格不统一 提交于 2019-12-07 02:39:27
I want background color(or image) to elementary widget(also container) like grid or box. how can I set background color to elementary widget? in EFL elementary document, I found elm_bg functions, but I can't set it as background to other elementary containers... Also asked on tizen.org, this part is unclear apparently https://developer.tizen.org/ko/forums/native-application-development/how-change-button-background-color Theming is the way to go, sample code shared at previous URL. Use elm_table widget. By using table, you can pack multiple objects into the same position. create elm_table.