~fboucault/ubuntu-ui-toolkit/fix_tabs_ordering

« back to all changes in this revision

Viewing changes to components.api

  • Committer: Florian Boucault
  • Date: 2013-11-22 14:49:12 UTC
  • mfrom: (848 trunk)
  • mto: This revision was merged to the branch mainline in revision 858.
  • Revision ID: florian.boucault@canonical.com-20131122144912-vmv2mi3t9o2rd2dl
Merged trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
102
102
modules/Ubuntu/Components/OptionSelector.qml
103
103
ListItem.Empty
104
104
    property var model
105
 
    property bool alwaysExpanded
 
105
    property bool expanded
106
106
    property bool multiSelection
107
107
    property bool colourImage
108
108
    property real containerHeight
109
109
    property int selectedIndex
110
 
    readonly property bool expanded
 
110
    readonly property bool currentlyExpanded
111
111
    readonly property real itemHeight
112
112
    signal delegateClicked(int index)
113
113
    signal expansionCompleted()
135
135
    property string title
136
136
    property Flickable flickable
137
137
    property list<Action> actions
138
 
    default property internal pageContents
139
138
modules/Ubuntu/Components/PageStack.qml
140
139
PageTreeNode
141
140
    property bool __showHeader
212
211
modules/Ubuntu/Components/TabBar.qml
213
212
StyledItem
214
213
    property Item tabsItem
 
214
    property ListModel model
215
215
    property bool selectionMode
 
216
    property int selectedIndex
216
217
    property bool alwaysSelectionMode
217
218
    property bool animate
218
219
modules/Ubuntu/Components/Tabs.qml
221
222
    readonly property Tab selectedTab
222
223
    readonly property Item currentPage
223
224
    property TabBar tabBar
224
 
    property internal __tabs
225
225
    default property list<Item> tabChildren
 
226
    readonly property int count
226
227
    signal modelChanged()
 
228
    function addTab(title, component, params)
 
229
    function insertTab(index, title, component, params)
 
230
    function moveTab(from, to)
 
231
    function removeTab(index)
227
232
modules/Ubuntu/Components/TextArea.qml
228
233
StyledItem
229
234
    property bool highlighted
449
454
modules/Ubuntu/Components/ListItems/ItemSelector.qml
450
455
ListItem.Empty
451
456
    property var model
452
 
    property bool alwaysExpanded
 
457
    property bool expanded
453
458
    property bool multiSelection
454
459
    property bool colourImage
455
460
    property real containerHeight
456
461
    property int selectedIndex
457
 
    readonly property bool expanded
 
462
    readonly property bool currentlyExpanded
458
463
    readonly property real itemHeight
459
464
    signal delegateClicked(int index)
460
465
    signal expansionCompleted()