Questions tagged [efl]

The Enlightenment Foundation Libraries (EFL) are a collection of libraries that make up the foundation of the Enlightenment DR17 window manager. EFL can be used by other projects, including Tizen.

The Enlightenment Foundation Libraries (EFL) are a collection of libraries that make up the foundation of the DR17 window manager. While their original intent was solely to support the window manager, the libraries quickly took on a life of their own, which is a contributing factor to the delays of the window manager itself.

Source: http://www.enlightenment.org/?p=about/efl

30 questions
0
votes
1 answer

Tizen Native: Callback set for hardware buttons are not called

I set the callback for hardware buttons Back and More using the code: static void win_more_cb(void* data, Evas_Object* obj, void* event_info) { appdata_s* ad = data; if (ad->ctxpopup != NULL) evas_object_del(ad->ctxpopup); ad->ctxpopup…
Andriy Lesyuk
  • 512
  • 2
  • 16
0
votes
1 answer

EFL - window hirarchy

I'm porting a C-language kiosk application to a x86 machine, running Ubuntu 16. I'm using the EFL GUI framework (version 1.20.7) - it is new to me. The GUI is quite simple: a few screens, with background images, some buttons, labels and…
Rami Rosenbaum
  • 467
  • 5
  • 18
0
votes
1 answer

EFL - custom button

I'm porting a C-language kiosk application to a x86 machine, running Ubuntu 16. I'm using the EFL GUI framework (version 1.20.7) - it is new to me. I managed to add an icon to a button, but the button still has a frame and the 'pressed' GUI…
Rami Rosenbaum
  • 467
  • 5
  • 18
0
votes
1 answer

Elm_image random crashes

I am creating a photo application which will show new photos (online) every x-seconds. But the application is crashing after some time at random moments. Created a test application (note: ugly/dirty and not optimized code) to reproduce the crashes,…
user2276975
  • 69
  • 2
  • 9
0
votes
2 answers

Jagged edge Image on rotating with Evas map

I am making a watch application for Samsung Gear S2 with EFL Native application. Problem was happened when I rotate hands of the watch. Look at following image. This is normal image I paste it to evas_object and it's not rotated yet. After I rotate…
pius lee
  • 1,164
  • 1
  • 12
  • 28
0
votes
1 answer

How to get Text Input (Tizen Native App)

I have been working on a Tizen project where I need to calculate BMI of a person. So i need to take input of the name of the user and the height and weight from the user. So far I have created a functional interface where I can navigate users to the…
0
votes
2 answers

How to change the size of List element in EFL

I was trying to change the size of the list element which are added in elementary list function ( elm_list_add) using append or prepend functions that calls _item_new internally in elm_list.c. I want to change the size of list element with the…
user4763
  • 1
  • 2
0
votes
2 answers

How to align text on elmentary label widget?

I want align text to center on elm_label widget. I can't find any functions about text align as evas object text function or elm_label function. Also, I can't find a function that can get the text size (absolute pixel or relative size) on a label. I…
pius lee
  • 1,164
  • 1
  • 12
  • 28
0
votes
1 answer

Use of edje_cc in cmake file

I tried to add a custom target in a cmake file to compile a .edc file with edje_cc automatically on build like mentioned here. Its part of an EFL project. But I always get an error on compiling: [ 1s] [ 0%] [ 50%] #### COMPILE EDC FILES #### [ …
motu
  • 43
  • 6
0
votes
1 answer

Trouble compiling Enlightenment foundation library 1.8.5

When I run configure.sh I get this error: checking for pkg-config... no configure: error: pkg-config tool not found. Install it or set PKG_CONFIG environment variable to that path tool. Exiting... I checked in aptitude and it says pkg-config is…
0
votes
1 answer

Evas and X11 example

I am trying to write a little application in order to understand how evas works with X11. I haven't find a full example in the documentation only some parts that I try to use. Here is the code: #include #include #include…
cedlemo
  • 3,205
  • 3
  • 32
  • 50
0
votes
1 answer

Setting up pixel array data for Evas Image Object

This question is about use of evas_object_image_data_set function. Say, I have some pixel array in RGBA format. I make a transformation on it to become ARGB, suitable for Evas Image Object. Next thing I create a window with elm_win_add. Then I…
Sergey Kanaev
  • 570
  • 5
  • 18
0
votes
0 answers

Deduce type of void in pure C

Well, I have callback which is arisen when I get HTTP response on HTTP GET request. The prototype of this callback is the following (async programming, could be arised at any time): // I use Ecore_Con_Url library from EFL framework Eina_Bool…
likern
  • 3,744
  • 5
  • 36
  • 47
0
votes
4 answers

How to handle hardware button "Back" on Tizen platform using EFL library

I use EFL library to develop applications for Tizen platform. I need to implement event handler for hardware button "Back". In native Tizen API it is done pretty simple. But I have no idea how can I do this in EFL library. I tried to do it using the…
Kirill
  • 162
  • 8
0
votes
1 answer

CMakeLists and packaging files for automatic Edje file compilation in project

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…
Sergey Kanaev
  • 570
  • 5
  • 18
1
2