1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507
|
/**
* @addtogroup Actionslider Actionslider
*
* A magnet slider is a switcher for 3 labels with customizable
* magnet properties. When the position is set with magnet, the knob
* will be moved to it if it's nearest the magnetized position.
*
* Signals emmitted:
* "selected" - when user selects a position (the label is passed as
* event info)".
* "pos_changed" - when a button reaches to the special position like
* "left", "right" and "center".
*/
#include <Elementary.h>
#include <math.h>
#include "elm_priv.h"
typedef struct _Widget_Data Widget_Data;
struct _Widget_Data
{
Evas_Object *ms; // actionslider
Evas_Object *icon; // an icon for a button or a bar
Elm_Actionslider_Pos magnet_position, enabled_position;
const char *text_left, *text_right, *text_center;
Ecore_Animator *icon_animator;
double final_position;
Eina_Bool mouse_down : 1;
};
static const char *widtype = NULL;
static void _del_hook(Evas_Object *obj);
static void _theme_hook(Evas_Object *obj);
static void _sizing_eval(Evas_Object *obj);
static void _icon_down_cb(void *data, Evas *e,
Evas_Object *obj, void *event_info);
static void _icon_move_cb(void *data, Evas *e,
Evas_Object *obj, void *event_info);
static void _icon_up_cb(void *data, Evas *e,
Evas_Object *obj, void *event_info);
static Eina_Bool _icon_animation(void *data);
#define SIG_CHANGED "pos_changed"
#define SIG_SELECTED "selected"
static const Evas_Smart_Cb_Description _signals[] =
{
{SIG_CHANGED, ""},
{SIG_SELECTED, ""},
{NULL, NULL}
};
static void
_del_hook(Evas_Object *obj)
{
Widget_Data *wd = elm_widget_data_get(obj);
if (!wd) return;
if (wd->text_left) eina_stringshare_del(wd->text_left);
if (wd->text_right) eina_stringshare_del(wd->text_right);
if (wd->text_center) eina_stringshare_del(wd->text_center);
free(wd);
}
static void
_theme_hook(Evas_Object *obj)
{
Widget_Data *wd = elm_widget_data_get(obj);
if (!wd) return;
if (!edje_object_part_swallow_get(wd->ms, "elm.swallow.icon"))
edje_object_part_unswallow(wd->ms, wd->icon);
_elm_theme_object_set(obj, wd->ms, "actionslider",
"base", elm_widget_style_get(obj));
_elm_theme_object_set(obj, wd->icon, "actionslider",
"icon", elm_widget_style_get(obj));
edje_object_part_swallow(wd->ms, "elm.swallow.icon", wd->icon);
edje_object_part_text_set(wd->ms, "elm.text.left", wd->text_left);
edje_object_part_text_set(wd->ms, "elm.text.right", wd->text_right);
edje_object_part_text_set(wd->ms, "elm.text.center", wd->text_center);
edje_object_message_signal_process(wd->ms);
_sizing_eval(obj);
}
static void
_sizing_eval(Evas_Object *obj)
{
Widget_Data *wd = elm_widget_data_get(obj);
Evas_Coord minw = -1, minh = -1;
if (!wd) return;
elm_coords_finger_size_adjust(4, &minw, 1, &minh);
edje_object_size_min_restricted_calc(wd->ms, &minw, &minh, minw, minh);
evas_object_size_hint_min_set(obj, minw, minh);
evas_object_size_hint_max_set(obj, -1, -1);
}
static void
_icon_down_cb(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
{
Widget_Data *wd = elm_widget_data_get((Evas_Object *) data);
if (!wd) return;
wd->mouse_down = EINA_TRUE;
}
static void
_icon_move_cb(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
{
Evas_Object *as = (Evas_Object *) data;
Widget_Data *wd = elm_widget_data_get(as);
double pos = 0.0;
if (!wd) return;
if (!wd->mouse_down) return;
edje_object_part_drag_value_get(wd->ms, "elm.swallow.icon", &pos, NULL);
if (pos == 0.0)
evas_object_smart_callback_call(as, SIG_CHANGED, (void *)"left");
else if (pos == 1.0)
evas_object_smart_callback_call(as, SIG_CHANGED, (void *)"right");
else if (pos >= 0.45 && pos <= 0.55)
evas_object_smart_callback_call(as, SIG_CHANGED, (void *)"center");
}
static void
_icon_up_cb(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
{
Widget_Data *wd = elm_widget_data_get(data);
double position = 0.0;
if (!wd) return;
wd->mouse_down = EINA_FALSE;
edje_object_part_drag_value_get(wd->ms, "elm.swallow.icon",
&position, NULL);
if (position == 0.0 && (wd->enabled_position & ELM_ACTIONSLIDER_LEFT))
{
wd->final_position = 0;
evas_object_smart_callback_call(data, SIG_SELECTED,
(void *)wd->text_left);
return;
}
if (position >= 0.45 && position <= 0.55 &&
(wd->enabled_position & ELM_ACTIONSLIDER_CENTER))
{
wd->final_position = 0.5;
evas_object_smart_callback_call(data, SIG_SELECTED,
(void *)wd->text_center);
return;
}
if (position == 1.0 && (wd->enabled_position & ELM_ACTIONSLIDER_RIGHT))
{
wd->final_position = 1;
evas_object_smart_callback_call(data, SIG_SELECTED,
(void *)wd->text_right);
return;
}
if (!wd->magnet_position)
{
wd->final_position = 0;
goto as_anim;
}
if (position < 0.3)
{
if (wd->magnet_position & ELM_ACTIONSLIDER_LEFT)
wd->final_position = 0;
else if (wd->magnet_position & ELM_ACTIONSLIDER_CENTER)
wd->final_position = 0.5;
else if (wd->magnet_position & ELM_ACTIONSLIDER_RIGHT)
wd->final_position = 1;
}
else if ((position >= 0.3) && (position <= 0.7))
{
if (wd->magnet_position & ELM_ACTIONSLIDER_CENTER)
wd->final_position = 0.5;
else if (position < 0.5)
{
if (wd->magnet_position & ELM_ACTIONSLIDER_LEFT)
wd->final_position = 0;
else
wd->final_position = 1;
}
else
{
if (wd->magnet_position & ELM_ACTIONSLIDER_RIGHT)
wd->final_position = 1;
else
wd->final_position = 0;
}
}
else
{
if (wd->magnet_position & ELM_ACTIONSLIDER_RIGHT)
wd->final_position = 1;
else if (wd->magnet_position & ELM_ACTIONSLIDER_CENTER)
wd->final_position = 0.5;
else
wd->final_position = 0;
}
as_anim:
wd->icon_animator = ecore_animator_add(_icon_animation, data);
}
static Eina_Bool
_icon_animation(void *data)
{
Widget_Data *wd = elm_widget_data_get(data);
double cur_position = 0.0, new_position = 0.0;
double move_amount = 0.05;
Eina_Bool flag_finish_animation = EINA_FALSE;
if (!wd) return EINA_FALSE;
edje_object_part_drag_value_get(wd->ms,
"elm.swallow.icon", &cur_position, NULL);
if ((wd->final_position == 0.0) ||
(wd->final_position == 0.5 && cur_position >= wd->final_position))
{
new_position = cur_position - move_amount;
if (new_position <= wd->final_position)
{
new_position = wd->final_position;
flag_finish_animation = EINA_TRUE;
}
}
else if ((wd->final_position == 1.0) ||
(wd->final_position == 0.5 && cur_position < wd->final_position))
{
new_position = cur_position + move_amount;
if (new_position >= wd->final_position)
{
new_position = wd->final_position;
flag_finish_animation = EINA_TRUE;
}
}
edje_object_part_drag_value_set(wd->ms,
"elm.swallow.icon", new_position, 0.5);
if (flag_finish_animation)
{
if ((!wd->final_position) &&
(wd->enabled_position & ELM_ACTIONSLIDER_LEFT))
evas_object_smart_callback_call(data, SIG_SELECTED,
(void *)wd->text_left);
else if ((wd->final_position == 0.5) &&
(wd->enabled_position & ELM_ACTIONSLIDER_CENTER))
evas_object_smart_callback_call(data, SIG_SELECTED,
(void *)wd->text_center);
else if ((wd->final_position == 1) &&
(wd->enabled_position & ELM_ACTIONSLIDER_RIGHT))
evas_object_smart_callback_call(data, SIG_SELECTED,
(void *)wd->text_right);
return EINA_FALSE;
}
return EINA_TRUE;
}
/**
* Add a new actionslider to the parent.
*
* @param parent The parent object
* @return The new actionslider object or NULL if it cannot be created
*
* @ingroup Actionslider
*/
EAPI Evas_Object *
elm_actionslider_add(Evas_Object *parent)
{
Evas_Object *obj;
Widget_Data *wd;
Evas *e;
EINA_SAFETY_ON_NULL_RETURN_VAL(parent, NULL);
wd = ELM_NEW(Widget_Data);
e = evas_object_evas_get(parent);
obj = elm_widget_add(e);
ELM_SET_WIDTYPE(widtype, "actionslider");
elm_widget_type_set(obj, "actionslider");
elm_widget_sub_object_add(parent, obj);
elm_widget_data_set(obj, wd);
elm_widget_del_hook_set(obj, _del_hook);
elm_widget_theme_hook_set(obj, _theme_hook);
wd->mouse_down = EINA_FALSE;
wd->enabled_position = ELM_ACTIONSLIDER_ALL;
wd->ms = edje_object_add(e);
_elm_theme_object_set(obj, wd->ms, "actionslider", "base", "default");
elm_widget_resize_object_set(obj, wd->ms);
wd->icon = edje_object_add(e);
elm_widget_sub_object_add(obj, wd->icon);
_elm_theme_object_set(obj, wd->icon, "actionslider", "icon", "default");
edje_object_part_swallow(wd->ms, "elm.swallow.icon", wd->icon);
evas_object_event_callback_add(wd->icon, EVAS_CALLBACK_MOUSE_DOWN,
_icon_down_cb, obj);
evas_object_event_callback_add(wd->icon, EVAS_CALLBACK_MOUSE_MOVE,
_icon_move_cb, obj);
evas_object_event_callback_add(wd->icon, EVAS_CALLBACK_MOUSE_UP,
_icon_up_cb, obj);
evas_object_smart_callbacks_descriptions_set(obj, _signals);
_sizing_eval(obj);
return obj;
}
/**
* Set actionslider indicator position.
*
* @param obj The actionslider object.
* @param pos The position of the indicator.
*
* @ingroup Actionslider
*/
EAPI void
elm_actionslider_indicator_pos_set(Evas_Object *obj, Elm_Actionslider_Pos pos)
{
ELM_CHECK_WIDTYPE(obj, widtype);
Widget_Data *wd = elm_widget_data_get(obj);
double position = 0.0;
if (!wd) return;
if (pos == ELM_ACTIONSLIDER_CENTER) position = 0.5;
else if (pos == ELM_ACTIONSLIDER_RIGHT) position = 1.0;
edje_object_part_drag_value_set(wd->ms, "elm.swallow.icon", position, 0.5);
}
/**
* Get actionslider indicator position.
*
* @param obj The actionslider object.
* @return The position of the indicator.
*
* @ingroup Actionslider
*/
EAPI Elm_Actionslider_Pos
elm_actionslider_indicator_pos_get(const Evas_Object *obj)
{
ELM_CHECK_WIDTYPE(obj, widtype) ELM_ACTIONSLIDER_NONE;
Widget_Data *wd = elm_widget_data_get(obj);
double position;
if (!wd) return ELM_ACTIONSLIDER_NONE;
edje_object_part_drag_value_get(wd->ms, "elm.swallow.icon", &position, NULL);
if (position < 0.3)
return ELM_ACTIONSLIDER_LEFT;
else if (position < 0.7)
return ELM_ACTIONSLIDER_CENTER;
else
return ELM_ACTIONSLIDER_RIGHT;
}
/**
* Set actionslider magnet position.
*
* @param obj The actionslider object.
* @param pos Bit mask indicating the magnet positions.
* Example: use (ELM_ACTIONSLIDER_LEFT | ELM_ACTIONSLIDER_RIGHT)
* to put magnet property on both positions
*
* @ingroup Actionslider
*/
EAPI void
elm_actionslider_magnet_pos_set(Evas_Object *obj, Elm_Actionslider_Pos pos)
{
ELM_CHECK_WIDTYPE(obj, widtype);
Widget_Data *wd = elm_widget_data_get(obj);
if (!wd) return;
wd->magnet_position = pos;
}
/**
* Get actionslider magnet position.
*
* @param obj The actionslider object.
* @return The positions with magnet property.
*
* @ingroup Actionslider
*/
EAPI Elm_Actionslider_Pos
elm_actionslider_magnet_pos_get(const Evas_Object *obj)
{
ELM_CHECK_WIDTYPE(obj, widtype) ELM_ACTIONSLIDER_NONE;
Widget_Data *wd = elm_widget_data_get(obj);
if (!wd) return ELM_ACTIONSLIDER_NONE;
return wd->magnet_position;
}
/**
* Set actionslider enabled position.
*
* All the positions are enabled by default.
*
* @param obj The actionslider object.
* @param pos Bit mask indicating the enabled positions.
* Example: use (ELM_ACTIONSLIDER_LEFT | ELM_ACTIONSLIDER_RIGHT)
* to enable both positions, so the user can select it.
*
* @ingroup Actionslider
*/
EAPI void
elm_actionslider_enabled_pos_set(Evas_Object *obj, Elm_Actionslider_Pos pos)
{
ELM_CHECK_WIDTYPE(obj, widtype);
Widget_Data *wd = elm_widget_data_get(obj);
if (!wd) return;
wd->enabled_position = pos;
}
/**
* Get actionslider enabled position.
*
* All the positions are enabled by default.
*
* @param obj The actionslider object.
* @return The enabled positions.
*
* @ingroup Actionslider
*/
EAPI Elm_Actionslider_Pos
elm_actionslider_enabled_pos_get(const Evas_Object *obj)
{
ELM_CHECK_WIDTYPE(obj, widtype) ELM_ACTIONSLIDER_NONE;
Widget_Data *wd = elm_widget_data_get(obj);
if (!wd) return ELM_ACTIONSLIDER_NONE;
return wd->enabled_position;
}
/**
* Set actionslider labels.
*
* @param obj The actionslider object
* @param left_label The label which is going to be set.
* @param center_label The label which is going to be set.
* @param right_label The label which is going to be set.
*
* @ingroup Actionslider
*/
EAPI void
elm_actionslider_labels_set(Evas_Object *obj, const char *left_label, const char *center_label, const char *right_label)
{
ELM_CHECK_WIDTYPE(obj, widtype);
Widget_Data *wd = elm_widget_data_get(obj);
if (!wd) return;
eina_stringshare_replace(&wd->text_left, left_label);
edje_object_part_text_set(wd->ms, "elm.text.left", left_label);
eina_stringshare_replace(&wd->text_center, center_label);
edje_object_part_text_set(wd->ms, "elm.text.center", center_label);
eina_stringshare_replace(&wd->text_right, right_label);
edje_object_part_text_set(wd->ms, "elm.text.right", right_label);
}
/**
* Get actionslider labels.
*
* @param obj The actionslider object
* @param left_label A char** to place the left_label of @p obj into
* @param center_label A char** to place the center_label of @p obj into
* @param right_label A char** to place the right_label of @p obj into
*
* @ingroup Actionslider
*/
EAPI void
elm_actionslider_labels_get(const Evas_Object *obj, const char **left_label, const char **center_label, const char **right_label)
{
if (left_label) *left_label= NULL;
if (center_label) *center_label= NULL;
if (right_label) *right_label= NULL;
ELM_CHECK_WIDTYPE(obj, widtype);
Widget_Data *wd = elm_widget_data_get(obj);
if (!wd) return;
if (left_label) *left_label = wd->text_left;
if (center_label) *center_label = wd->text_center;
if (right_label) *right_label = wd->text_right;
}
/**
* Get actionslider selected label.
*
* @param obj The actionslider object
* @return The selected label
*
* @ingroup Actionslider
*/
EAPI const char *
elm_actionslider_selected_label_get(const Evas_Object *obj)
{
ELM_CHECK_WIDTYPE(obj, widtype) NULL;
Widget_Data *wd = elm_widget_data_get(obj);
if (!wd) return NULL;
if ((wd->final_position == 0.0) &&
(wd->enabled_position & ELM_ACTIONSLIDER_LEFT))
return wd->text_left;
if ((wd->final_position == 0.5) &&
(wd->enabled_position & ELM_ACTIONSLIDER_CENTER))
return wd->text_center;
if ((wd->final_position == 1.0) &&
(wd->enabled_position & ELM_ACTIONSLIDER_RIGHT))
return wd->text_right;
return NULL;
}
|