Tizen Native API

Functions

Evas_Coord elm_config_finger_size_get (void)
 Get the configured "finger size".
void elm_config_finger_size_set (Evas_Coord size)
 Set the configured finger size.
void elm_coords_finger_size_adjust (int times_w, Evas_Coord *w, int times_h, Evas_Coord *h)
 Adjust size of an element for finger usage.

Elementary is designed to be finger-friendly for touchscreens, and so in addition to scaling for display resolution, it can also scale based on finger "resolution" (or size). You can then customize the granularity of the areas meant to receive clicks on touchscreens.

Different profiles may have pre-set values for finger sizes.


Function Documentation

Get the configured "finger size".

Since :
2.3
Returns:
The finger size
Remarks:
This gets the globally configured finger size, in pixels

Set the configured finger size.

Since :
2.3
Remarks:
This sets the globally configured finger size in pixels
Parameters:
[in]sizeThe finger size
void elm_coords_finger_size_adjust ( int  times_w,
Evas_Coord w,
int  times_h,
Evas_Coord h 
)

Adjust size of an element for finger usage.

Since :
2.3
Parameters:
[in]times_wHow many fingers should fit horizontally
[out]wPointer to the width size to adjust
[in]times_hHow many fingers should fit vertically
[out]hPointer to the height size to adjust
Remarks:
This takes width and height sizes (in pixels) as input and a size multiple (which is how many fingers you want to place within the area, being "finger" the size set by elm_config_finger_size_set()), and adjusts the size to be large enough to accommodate the resulting size -- if it doesn't already accommodate it. On return the w and h sizes pointed to by these parameters will be modified, on those conditions.
This is kind of low level Elementary call, most useful on size evaluation times for widgets. An external user wouldn't be calling, most of the time.