summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_panes_part.eo
blob: b6a2138bbec535278fab18f408fbd9ba12eb09b6 (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 Efl.Ui.Panes_Part (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.Size_Hint.hint_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.Size_Hint.hint_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.]]
        }
      }
   }
}