summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_tab_bar_default_item.eo
blob: 7feb31d981504acfe0fbcae390983790f7381315 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class @beta Efl.Ui.Tab_Bar_Default_Item extends Efl.Ui.Default_Item
{
   [[ A icon that represents the default parts in the appearance of the tab bar.

     Setting the icon again after there was a previous one, will trigger an animation.
   ]]
   methods {
      @property icon {
        [[Set the content of the default item as a image.

          The content will be re-set (means, the old content is deleted).
        ]]
        values {
          standard_name : string; [[The icon name, names are defined as standard free desktop icon names.]]
        }
      }
   }
   implements {
      Efl.Object.constructor;
   }
}