summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_panes_part.eo
blob: 2c12ac72f47ca7f7edf896de67a0d23e6407bad6 (plain)
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
class @beta Efl.Ui.Panes_Part extends Efl.Ui.Layout_Part_Content
{
   [[Elementary Panes internal part class]]
   data: null;
   methods {
      @property hint_min_allow {
          [[Allows the user to set size hints to be respected and ignored combined
            with a minimum size. If this flag is set, the minimum size set by
            @Efl.Gfx.Hint.hint_size_min.set is respected forcefully.
          ]]
          values {
             allow: bool; [[If $true minimum size is forced]]
          }
      }
      @property split_ratio_min {
        [[Controls the relative minimum size of panes widget's part.

          If @Efl.Gfx.Hint.hint_size_min.set is also used along with
          @.split_ratio_min.set, maximum value is set as minimum size to part.
          ]]
        values {
           size: double; [[Value between 0.0 and 1.0 representing size
              proportion of first part's minimum size.]]
        }
      }
   }
}