summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_page_transition_scroll.eo
blob: 6c720c55677015cc8faa66415ef0f9a0a1846918 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class Efl.Page.Transition_Scroll (Efl.Page.Transition)
{
   [[Page transition for @Efl.Ui.Pager

     With this type of transition, pages are arranged linearly and move parallel
     to the screen by scrolling. The current page is displayed at center, and
     previous and next pages might be displayed optionally.
   ]]
   methods {
      @property side_page_num {
         [[The number of pages displayed on each side of the current page]]
         values {
            side_page_num: int;
         }
      }
   }
   implements {
      Efl.Object.constructor;
      Efl.Object.invalidate;
      Efl.Page.Transition.bind;
   }
}