/usr/include/elementary-1/elm_scroller_legacy.h is in libelementary-dev 1.8.5-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 | /**
* @brief Add a new scroller to the parent
*
* @param parent The parent object
* @return The new object or NULL if it cannot be created
*
* @ingroup Scroller
*/
EAPI Evas_Object *elm_scroller_add(Evas_Object *parent);
/**
* @brief Make the scroller minimum size limited to the minimum size of the content
*
* @param obj The scroller object
* @param w Enable limiting minimum size horizontally
* @param h Enable limiting minimum size vertically
*
* By default the scroller will be as small as its design allows,
* irrespective of its content. This will make the scroller minimum size the
* right size horizontally and/or vertically to perfectly fit its content in
* that direction.
*
* @ingroup Scroller
*/
EAPI void elm_scroller_content_min_limit(Evas_Object *obj, Eina_Bool w, Eina_Bool h);
/**
* @brief Show a specific virtual region within the scroller content object
*
* @param obj The scroller object
* @param x X coordinate of the region
* @param y Y coordinate of the region
* @param w Width of the region
* @param h Height of the region
*
* This will ensure all (or part if it does not fit) of the designated
* region in the virtual content object (0, 0 starting at the top-left of the
* virtual content object) is shown within the scroller.
*
* @ingroup Scroller
*/
EAPI void elm_scroller_region_show(Evas_Object *obj, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h);
/**
* @brief Set the scrollbar visibility policy
*
* @param obj The scroller object
* @param policy_h Horizontal scrollbar policy
* @param policy_v Vertical scrollbar policy
*
* This sets the scrollbar visibility policy for the given scroller.
* ELM_SCROLLER_POLICY_AUTO means the scrollbar is made visible if it is
* needed, and otherwise kept hidden. ELM_SCROLLER_POLICY_ON turns it on all
* the time, and ELM_SCROLLER_POLICY_OFF always keeps it off. This applies
* respectively for the horizontal and vertical scrollbars.
*
* @ingroup Scroller
*/
EAPI void elm_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v);
/**
* @brief Get scrollbar visibility policy
*
* @param obj The scroller object
* @param policy_h Horizontal scrollbar policy
* @param policy_v Vertical scrollbar policy
*
* @see elm_scroller_policy_set()
*
* @ingroup Scroller
*/
EAPI void elm_scroller_policy_get(const Evas_Object *obj, Elm_Scroller_Policy *policy_h, Elm_Scroller_Policy *policy_v);
/**
* @brief Set the type of single direction scroll
*
* @param obj The scroller object
* @param single_dir The type of single direction
*
* @see elm_scroller_single_direction_get()
*
* @since 1.8
*
* @ingroup Scroller
*/
EAPI void elm_scroller_single_direction_set(Evas_Object *obj, Elm_Scroller_Single_Direction single_dir);
/**
* @brief Get the type of single direction scroll
*
* @param obj The scroller object
* @return the type of single direction
*
* @see elm_scroller_single_direction_get()
*
* @since 1.8
*
* @ingroup Scroller
*/
EAPI Elm_Scroller_Single_Direction elm_scroller_single_direction_get(const Evas_Object *obj);
/**
* @brief Get the currently visible content region
*
* @param obj The scroller object
* @param x X coordinate of the region
* @param y Y coordinate of the region
* @param w Width of the region
* @param h Height of the region
*
* This gets the current region in the content object that is visible through
* the scroller. The region co-ordinates are returned in the @p x, @p y, @p
* w, @p h values pointed to.
*
* @note All coordinates are relative to the content.
*
* @see elm_scroller_region_show()
*
* @ingroup Scroller
*/
EAPI void elm_scroller_region_get(const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h);
/**
* @brief Get the size of the content object
*
* @param obj The scroller object
* @param w Width of the content object.
* @param h Height of the content object.
*
* This gets the size of the content object of the scroller.
*
* @ingroup Scroller
*/
EAPI void elm_scroller_child_size_get(const Evas_Object *obj, Evas_Coord *w, Evas_Coord *h);
/**
* @brief Set page snapping behavior of a scroller
*
* @param obj The scroller object
* @param page_h_snap Allow snap horizontally
* @param page_v_snap Allow snap vertically
*
* When scrolling, if a scroller is paged (see
* elm_scroller_page_size_set() and elm_scroller_page_relative_set()),
* the scroller may snap to pages when being scrolled, i.e., even if
* it had momentum to scroll further, it will stop at the next page
* boundaries. This is @b disabled, by default, for both axis. This
* function will set if it that is enabled or not, for each axis.
*
* @note If @a obj is not set to have pages, nothing will happen after
* this call.
*
* @since 1.8
*
* @ingroup Scroller
*/
EAPI void elm_scroller_page_snap_set(Evas_Object *obj, Eina_Bool page_h_snap, Eina_Bool page_v_snap);
/**
* @brief Get the page snap behaviour of a scroller
*
* @param obj The Scroller object
* @param page_h_snap Will the scroller snap horizontally or not
* @param page_v_snap Will the scroller snap vertically or not
*
* @see elm_scroller_page_snap_set() for more details
*
* @since 1.8
*
* @ingroup Scroller
*/
EAPI void elm_scroller_page_snap_get(const Evas_Object *obj, Eina_Bool *page_h_snap, Eina_Bool *page_v_snap);
/**
* @brief Set bouncing behavior
*
* @param obj The scroller object
* @param h_bounce Allow bounce horizontally
* @param v_bounce Allow bounce vertically
*
* When scrolling, the scroller may "bounce" when reaching an edge of the
* content object. This is a visual way to indicate the end has been reached.
* This is enabled by default for both axis. This API will set if it is enabled
* for the given axis with the boolean parameters for each axis.
*
* @ingroup Scroller
*/
EAPI void elm_scroller_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce);
/**
* @brief Get the bounce behaviour
*
* @param obj The Scroller object
* @param h_bounce Will the scroller bounce horizontally or not
* @param v_bounce Will the scroller bounce vertically or not
*
* @see elm_scroller_bounce_set()
*
* @ingroup Scroller
*/
EAPI void elm_scroller_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce);
/**
* @brief Set scroll page size relative to viewport size.
*
* @param obj The scroller object
* @param h_pagerel The horizontal page relative size
* @param v_pagerel The vertical page relative size
*
* The scroller is capable of limiting scrolling by the user to "pages". That
* is to jump by and only show a "whole page" at a time as if the continuous
* area of the scroller content is split into page sized pieces. This sets
* the size of a page relative to the viewport of the scroller. 1.0 is "1
* viewport" is size (horizontally or vertically). 0.0 turns it off in that
* axis. This is mutually exclusive with page size
* (see elm_scroller_page_size_set() for more information). Likewise 0.5
* is "half a viewport". Sane usable values are normally between 0.0 and 1.0
* including 1.0. If you only want 1 axis to be page "limited", use 0.0 for
* the other axis.
*
* @ingroup Scroller
*/
EAPI void elm_scroller_page_relative_set(Evas_Object *obj, double h_pagerel, double v_pagerel);
/**
* Get a given scroller widget's scrolling page size, relative to
* its viewport size.
*
* @param obj The scroller object
* @param h_pagerel Pointer to a variable where to store the
* horizontal page (relative) size
* @param v_pagerel Pointer to a variable where to store the
* vertical page (relative) size
*
* @see elm_scroller_page_relative_set() for more details
*
* @since 1.7
*
* @ingroup Scroller
*/
EAPI void elm_scroller_page_relative_get(const Evas_Object *obj, double *h_pagerel, double *v_pagerel);
/**
* @brief Set scroll page size.
*
* @param obj The scroller object
* @param h_pagesize The horizontal page size
* @param v_pagesize The vertical page size
*
* This sets the page size to an absolute fixed value, with 0 turning it off
* for that axis.
*
* @see elm_scroller_page_relative_set()
* @see elm_scroller_page_size_get()
*
* @ingroup Scroller
*/
EAPI void elm_scroller_page_size_set(Evas_Object *obj, Evas_Coord h_pagesize, Evas_Coord v_pagesize);
/**
* @brief Retrieve a scroller widget's current page size.
*
* @param obj The scroller object
* @param h_pagesize Where to store its horizontal page size
* @param v_pagesize Where to store its vertical page size
*
* @see elm_scroller_page_size_set() for more details
* @see elm_scroller_page_relative_set()
*
* @since 1.7
*
* @ingroup Scroller
*/
EAPI void elm_scroller_page_size_get(const Evas_Object *obj, Evas_Coord *h_pagesize, Evas_Coord *v_pagesize);
/**
* @brief Set the maxium of the movable page at a flicking.
*
* @param obj The scroller object
* @param page_limit_h The maxium of the movable horizontal page
* @param page_limit_v The maxium of the movable vertical page
*
* The value of maxium movable page should be more than 1.
*
* @see elm_scroller_page_scroll_limit_get()
*
* @since 1.8
*
* @ingroup Scroller
*/
EAPI void elm_scroller_page_scroll_limit_set(const Evas_Object *obj, Evas_Coord page_limit_h, Evas_Coord page_limit_v);
/**
* @brief Get the maxium of the movable page at a flicking.
*
* @param obj The scroller object
* @param page_limit_h The maxium of the movable horizontal page
* @param page_limit_v The maxium of the movable vertical page
*
* @see elm_scroller_page_scroll_limit_set()
*
* @since 1.8
*
* @ingroup Scroller
*/
EAPI void elm_scroller_page_scroll_limit_get(const Evas_Object *obj, Evas_Coord *page_limit_h, Evas_Coord *page_limit_v);
/**
* @brief Get scroll current page number.
*
* @param obj The scroller object
* @param h_pagenumber The horizontal page number
* @param v_pagenumber The vertical page number
*
* The page number starts from 0. 0 is the first page.
* Current page means the page which meets the top-left of the viewport.
* If there are two or more pages in the viewport, it returns the number of the page
* which meets the top-left of the viewport.
*
* @see elm_scroller_last_page_get()
* @see elm_scroller_page_show()
* @see elm_scroller_page_bring_in()
*
* @ingroup Scroller
*/
EAPI void elm_scroller_current_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber);
/**
* @brief Get scroll last page number.
*
* @param obj The scroller object
* @param h_pagenumber The horizontal page number
* @param v_pagenumber The vertical page number
*
* The page number starts from 0. 0 is the first page.
* This returns the last page number among the pages.
*
* @see elm_scroller_current_page_get()
* @see elm_scroller_page_show()
* @see elm_scroller_page_bring_in()
*
* @ingroup Scroller
*/
EAPI void elm_scroller_last_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber);
/**
* Show a specific virtual region within the scroller content object by page number.
*
* @param obj The scroller object
* @param h_pagenumber The horizontal page number
* @param v_pagenumber The vertical page number
*
* 0, 0 of the indicated page is located at the top-left of the viewport.
* This will jump to the page directly without animation.
*
* Example of usage:
*
* @code
* sc = elm_scroller_add(win);
* elm_object_content_set(sc, content);
* elm_scroller_page_relative_set(sc, 1, 0);
* elm_scroller_current_page_get(sc, &h_page, &v_page);
* elm_scroller_page_show(sc, h_page + 1, v_page);
* @endcode
*
* @see elm_scroller_page_bring_in()
*
* @ingroup Scroller
*/
EAPI void elm_scroller_page_show(Evas_Object *obj, int h_pagenumber, int v_pagenumber);
/**
* Show a specific virtual region within the scroller content object by page number.
*
* @param obj The scroller object
* @param h_pagenumber The horizontal page number
* @param v_pagenumber The vertical page number
*
* 0, 0 of the indicated page is located at the top-left of the viewport.
* This will slide to the page with animation.
*
* Example of usage:
*
* @code
* sc = elm_scroller_add(win);
* elm_object_content_set(sc, content);
* elm_scroller_page_relative_set(sc, 1, 0);
* elm_scroller_last_page_get(sc, &h_page, &v_page);
* elm_scroller_page_bring_in(sc, h_page, v_page);
* @endcode
*
* @see elm_scroller_page_show()
*
* @ingroup Scroller
*/
EAPI void elm_scroller_page_bring_in(Evas_Object *obj, int h_pagenumber, int v_pagenumber);
/**
* @brief Show a specific virtual region within the scroller content object.
*
* @param obj The scroller object
* @param x X coordinate of the region
* @param y Y coordinate of the region
* @param w Width of the region
* @param h Height of the region
*
* This will ensure all (or part if it does not fit) of the designated
* region in the virtual content object (0, 0 starting at the top-left of the
* virtual content object) is shown within the scroller. Unlike
* elm_scroller_region_show(), this allow the scroller to "smoothly slide"
* to this location (if configuration in general calls for transitions). It
* may not jump immediately to the new location and make take a while and
* show other content along the way.
*
* @see elm_scroller_region_show()
*
* @ingroup Scroller
*/
EAPI void elm_scroller_region_bring_in(Evas_Object *obj, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h);
/**
* @brief Set event propagation on a scroller
*
* @param obj The scroller object
* @param propagation If propagation is enabled or not
*
* This enables or disables event propagation from the scroller
* content to the scroller and its parent. By default event
* propagation is @b enabled.
*
* @ingroup Scroller
*/
EAPI void elm_scroller_propagate_events_set(Evas_Object *obj, Eina_Bool propagation);
/**
* @brief Get event propagation for a scroller
*
* @param obj The scroller object
* @return The propagation state
*
* This gets the event propagation for a scroller.
*
* @see elm_scroller_propagate_events_set()
*
* @ingroup Scroller
*/
EAPI Eina_Bool elm_scroller_propagate_events_get(const Evas_Object *obj);
/**
* @brief Set scrolling gravity on a scroller
*
* @param obj The scroller object
* @param x The scrolling horizontal gravity
* @param y The scrolling vertical gravity
*
* The gravity, defines how the scroller will adjust its view
* when the size of the scroller contents increase.
*
* The scroller will adjust the view to glue itself as follows.
*
* x=0.0, for showing the left most region of the content.
* x=1.0, for showing the right most region of the content.
* y=0.0, for showing the bottom most region of the content.
* y=1.0, for showing the top most region of the content.
*
* Default values for x and y are 0.0
*
* @ingroup Scroller
*/
EAPI void elm_scroller_gravity_set(Evas_Object *obj, double x, double y);
/**
* @brief Get scrolling gravity values for a scroller
*
* @param obj The scroller object
* @param x The scrolling horizontal gravity
* @param y The scrolling vertical gravity
*
* This gets gravity values for a scroller.
*
* @see elm_scroller_gravity_set()
*
* @ingroup Scroller
*/
EAPI void elm_scroller_gravity_get(const Evas_Object *obj, double *x, double *y);
/**
* @brief Set blocking of scrolling (per axis) on a given scroller
*
* @param obj The scroller object
* @param block The axis to block
*
* This function will block scrolling movement (by input of a user) in
* a given direction. One can disable movements in the X axis, the Y
* axis or both. The default value is @c ELM_SCROLLER_MOVEMENT_NO_BLOCK,
* where movements are allowed in both directions.
*
* What makes this function different from
* elm_object_scroll_freeze_push(), elm_object_scroll_hold_push() and
* elm_object_scroll_lock_x_set() (or elm_object_scroll_lock_y_set())
* is that it @b doesn't propagate its effects to any parent or child
* widget of @a obj. Only the target scrollable widget will be locked
* with regard to scrolling.
*
* @since 1.8
*
* @ingroup Scroller
*/
EAPI void elm_scroller_movement_block_set(Evas_Object *obj, Elm_Scroller_Movement_Block block);
/**
* @brief Get a scroller's scroll blocking state
*
* @param parent The scroller object
* @return The blocking state
*
* @since 1.8
*
* @see elm_scroller_movement_block_set() for more details
*
* @ingroup Scroller
*/
EAPI Elm_Scroller_Movement_Block elm_scroller_movement_block_get(const Evas_Object *obj);
|