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
4
votes
2 answers

When using EFL for an embedded UI, should we use Elementary or Edje?

We are starting with an embedded development using the Enlightenment Foundation Libraries. We are developing a "full" screen application, so a window manager is not required and our Linux system will eventually run Tizen OS. The question is, EFL…
user626201
  • 1,623
  • 3
  • 19
  • 36
2
votes
2 answers

Tizen Native Genlist Background

I'm developing a Galaxy Gear S2 application that makes use of a genlist to display information. One of the requirements of the application is that the genlist should have a orange background instead of an black one. I have been using this site as…
Jonathan
  • 545
  • 1
  • 8
  • 27
2
votes
1 answer

Eina from EFL incompatible with ftw.h?

I tried to play with the file module of the Eina library and the classical system calls. My problem is when I want to use eina and some functions and constants from ftw.h. Here is the first simple code: #define _XOPEN_SOURCE 500 /*Get nftw() and…
cedlemo
  • 3,205
  • 3
  • 32
  • 50
1
vote
0 answers

Generating Inline Plots with Matplotlib Using Terminology (EFL by enlightenment.org)

Hello I have been trying to generate inline plots with matplotlib inside a terminal emulator called Terminology which can be found at: https://www.enlightenment.org/about-terminology.md This terminal emulator is able to display inline images using…
ryutenuki
  • 11
  • 1
1
vote
0 answers

Problems building evil library (efl) for posix dependencies in cygwin

I have a project I'm trying to build using mingw and it's missing some posix dependencies: http://mama.indstate.edu/users/ice/tree/ Since I don't want to spend the effort porting the sourcecode, I found a library that seems to promise to provide…
niken
  • 2,499
  • 3
  • 33
  • 56
1
vote
1 answer

How to keep Tizen device screen on during execution

I'm preparing an app in EFL and also have access to the dbus interface. I wanted to know what would I have to do to keep the screen from dimming or going off during execution? This would be similar to obtaining wakelock in Android for keeping the…
Prathamesh Shetye
  • 915
  • 2
  • 8
  • 27
1
vote
3 answers

How to add background to elementary EFL widget?

I want the background color (or image) of elementary widget (also container) like a grid or box. How can I set background color of the elementary widget? In the EFL elementary documentation, I found elm_bg functions, but I can't set it as background…
pius lee
  • 1,164
  • 1
  • 12
  • 28
1
vote
2 answers

How to call other EFL app from your EFL app in Tizen

I'm preparing an app which needs to call the dialer app. How do I go about calling the Dialer app from my app. My app is being written in EFL.
Prathamesh Shetye
  • 915
  • 2
  • 8
  • 27
1
vote
1 answer

Opening a window in the background using Enlightenment Elementary toolkit

I want to open a webview in the background when other webview is already on the stack. Is it even possible in EFL? Every attempt finishes with some kind of crash. Maybe you have any hints how to to something like that?
0
votes
0 answers

direct2d: optimizing the rendering of several BGRA rectangles on a bitmap

I am porting a toolkit (namely the EFL) engine from pure GDI to Direct2D. More precisely, I am adding a Direct2D engine. The purpose is to have a faster engine than the GDI one. This toolkit is cross platform, has existed for a long time, so i can't…
vtorri
  • 166
  • 13
0
votes
2 answers

Tizen: Set text of part in group which is in EDC file

I'm trying to write a widget for Tizen platform. Layout of the widget is described in a EDC file. I needed a block, which contains some text and image parts, to be repeated three times with different text labels. So I decided that I need to create a…
unnamed777
  • 11
  • 2
0
votes
3 answers

Can I change the image file of an existing Evas_Object?

I am developing a watch face with Tizen Native using the EFL libraries. After creating many objects with: Evas_Object *view_create_parts(Evas_Object *parent, const char *image_path, int position_x, int position_y, int size_w, int size_h) { …
go3d
  • 443
  • 3
  • 11
0
votes
2 answers

How can I add touch to a watch face (EFL)

I am trying to add touch events to my watch face that I am developing with the EFL libraries. But the touch layer is either not working or, when it is, it is fully covering my watch face, although it should be transparent. My code that creates the…
go3d
  • 443
  • 3
  • 11
0
votes
1 answer

Is it possible to get kernel version from ELF image file without disassemble or using grep or strings?

I have a vmlinuz ELF image file. I need to get the kernel version from the image file without disassembling it. Is it possible to get kerenel version from offsets of that compressed image file? The file is ELF 64-bit MSB executable, statically…
0
votes
1 answer

How to manually collapse a frame in Enlightment library

I am using Enlightment library (C api) for user interface. I'd like to collapse the frame programatically, however the function seems not to work: elm_frame_collapse_set(my_frame, EINA_TRUE); When I trigger the function I get an error…
Misery
  • 689
  • 2
  • 8
  • 25
1
2