~loic.molinari/ubuntu-ui-toolkit/ubuntu-ui-toolkit-private-shapes

« back to all changes in this revision

Viewing changes to components.api

  • Committer: Christian Dywan
  • Date: 2014-04-30 10:22:44 UTC
  • mfrom: (1000.17.3 staging)
  • mto: (1000.41.5 staging)
  • mto: This revision was merged to the branch mainline in revision 1022.
  • Revision ID: christian.dywan@canonical.com-20140430102244-uti97msd0thmk31d
MergeĀ lp:~ubuntu-sdk-team/ubuntu-ui-toolkit/staging

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
modules/Ubuntu/Components/AbstractButton.qml
 
1
AbstractButton 0.1 1.0
2
2
ActionItem
3
3
    signal clicked()
4
4
    signal pressAndHold()
6
6
    property bool hovered
7
7
    property bool __acceptEvents
8
8
    property internal __mouseArea
9
 
modules/Ubuntu/Components/Action.qml
 
9
Action 0.1 1.0
10
10
UnityActions.Action
11
11
    property url iconSource
12
12
    property string iconName
13
13
    property bool visible
14
14
    property Component itemHint
15
 
modules/Ubuntu/Components/ActionItem.qml
 
15
ActionItem 0.1 1.0
16
16
StyledItem
17
17
    property Action action
18
18
    property string text
20
20
    property string iconName
21
21
    signal triggered(var value)
22
22
    function trigger(value)
23
 
modules/Ubuntu/Components/ActionList.qml
 
23
ActionList 0.1 1.0
24
24
QtObject
25
25
    default property list<Action> children
26
26
    property list<Action> actions
27
 
modules/Ubuntu/Components/ActivityIndicator.qml
 
27
ActivityIndicator 0.1 1.0
28
28
AnimatedItem
29
29
    property bool running
30
 
modules/Ubuntu/Components/Button.qml
 
30
Button 0.1 1.0
31
31
AbstractButton
32
32
    property color color
33
33
    property Gradient gradient
34
34
    property string iconPosition
35
 
modules/Ubuntu/Components/CheckBox.qml
 
35
CheckBox 0.1 1.0
36
36
AbstractButton
37
37
    property bool checked
38
38
modules/Ubuntu/Components/Colors/UbuntuColors.qml
45
45
    readonly property color coolGrey
46
46
    property Gradient orangeGradient
47
47
    property Gradient greyGradient
48
 
modules/Ubuntu/Components/CrossFadeImage.qml
 
48
ComboButton 1.1
 
49
Button
 
50
    property bool expanded
 
51
    property real collapsedHeight
 
52
    property real expandedHeight
 
53
    readonly property real comboListHeight
 
54
    default property list<Item> comboList
 
55
    property color dropdownColor
 
56
CrossFadeImage 0.1 1.0
49
57
Item
50
58
    property url source
51
59
    property int fillMode
53
61
    readonly property bool running
54
62
    property size sourceSize
55
63
    readonly property int status
56
 
modules/Ubuntu/Components/Header.qml
 
64
Header 0.1 1.0
57
65
StyledItem
58
66
    property bool animate
59
67
    function show()
60
68
    function hide()
61
69
    property string title
62
70
    property Item contents
 
71
    property var tabsModel
 
72
    property var pageStack
63
73
    property Flickable flickable
64
 
modules/Ubuntu/Components/Icon.qml
 
74
    property bool useDeprecatedToolbar
 
75
Icon 0.1 1.0
65
76
Item
66
77
    property string name
67
78
    property color color
68
79
    property color keyColor
69
 
modules/Ubuntu/Components/Label.qml
 
80
Label 0.1 1.0
70
81
Text
71
82
    property string fontSize
72
 
modules/Ubuntu/Components/ListItems/Base.qml
 
83
Base 0.1 1.0
73
84
Empty
74
85
    property variant icon
75
 
    property url iconSource
76
 
    property string iconName
77
86
    property url fallbackIconSource
78
87
    property string fallbackIconName
79
88
    property bool progression
84
93
    property real __rightIconMargin
85
94
    property bool __iconIsItem
86
95
    property internal children
87
 
modules/Ubuntu/Components/ListItems/Caption.qml
 
96
Caption 0.1 1.0
88
97
Item
89
98
    property string text
90
 
modules/Ubuntu/Components/ListItems/Divider.qml
 
99
Divider 0.1 1.0
91
100
Image
92
 
modules/Ubuntu/Components/ListItems/Empty.qml
 
101
Empty 0.1 1.0
93
102
AbstractButton
94
103
    property bool selected
95
104
    property bool highlightWhenPressed
106
115
    property ThinDivider divider
107
116
    property real __contentsMargins
108
117
    function cancelItemRemoval()
109
 
modules/Ubuntu/Components/ListItems/Expandable.qml
 
118
Expandable 0.1 1.0
110
119
Empty
111
120
    property bool expanded
112
121
    property real collapsedHeight
113
122
    property real expandedHeight
114
123
    property bool collapseOnClick
115
124
    default property QtObject children
116
 
modules/Ubuntu/Components/ListItems/ExpandablesColumn.qml
 
125
ExpandablesColumn 0.1 1.0
117
126
Flickable
118
127
    readonly property Item expandedItem
119
128
    function expandItem(item)
120
129
    function collapse()
121
130
    default property QtObject children
122
 
modules/Ubuntu/Components/ListItems/Header.qml
 
131
Header 0.1 1.0
123
132
Item
124
133
    property string text
125
134
    property internal __foregroundColor
126
 
modules/Ubuntu/Components/ListItems/ItemSelector.qml
 
135
ItemSelector 0.1 1.0
127
136
ListItem.Empty
128
137
    property var model
129
138
    property bool expanded
135
144
    readonly property real itemHeight
136
145
    signal delegateClicked(int index)
137
146
    signal expansionCompleted()
138
 
modules/Ubuntu/Components/ListItems/MultiValue.qml
 
147
MultiValue 0.1 1.0
139
148
Base
140
149
    property variant values
141
 
modules/Ubuntu/Components/ListItems/SingleControl.qml
 
150
SingleControl 0.1 1.0
142
151
Empty
143
152
    property Item control
144
153
    function __updateControl()
145
 
modules/Ubuntu/Components/ListItems/SingleValue.qml
 
154
SingleValue 0.1 1.0
146
155
Base
147
156
    property string value
148
 
modules/Ubuntu/Components/ListItems/Standard.qml
 
157
Standard 0.1 1.0
149
158
Empty
150
159
    property variant icon
151
 
    property url iconSource
152
 
    property string iconName
153
160
    property url fallbackIconSource
154
161
    property string fallbackIconName
155
162
    property bool progression
162
169
    property bool __controlAreaPressed
163
170
    property bool __iconIsItem
164
171
    property internal __foregroundColor
165
 
modules/Ubuntu/Components/ListItems/Subtitled.qml
 
172
Subtitled 0.1 1.0
166
173
Base
167
 
    property string text
168
174
    property string subText
169
 
modules/Ubuntu/Components/ListItems/ThinDivider.qml
 
175
ThinDivider 0.1 1.0
170
176
Image
171
 
modules/Ubuntu/Components/ListItems/ValueSelector.qml
 
177
ValueSelector 0.1 1.0
172
178
Empty
173
179
    property variant icon
174
 
    property url iconSource
175
 
    property string iconName
176
180
    property url fallbackIconSource
177
181
    property string fallbackIconName
178
182
    property real __iconWidth
183
187
    property variant values
184
188
    property int selectedIndex
185
189
    property bool expanded
186
 
modules/Ubuntu/Components/MainView.qml
 
190
MainView 0.1 1.0
187
191
PageTreeNode
188
192
    property string applicationName
189
193
    property bool anchorToKeyboard
191
195
    property color backgroundColor
192
196
    property color footerColor
193
197
    property bool automaticOrientation
 
198
    property bool useDeprecatedToolbar
194
199
    default property internal contentsItem
195
200
    property list<Action> actions
196
201
    property UnityActions.ActionManager actionManager
197
 
modules/Ubuntu/Components/Object.qml
 
202
Object 0.1 1.0
198
203
QtObject
199
204
    default property internal children
200
 
modules/Ubuntu/Components/OptionSelector.qml
 
205
OptionSelector 0.1 1.0
201
206
ListItem.Empty
202
207
    property var model
203
208
    property bool expanded
209
214
    readonly property real itemHeight
210
215
    signal delegateClicked(int index)
211
216
    signal expansionCompleted()
212
 
modules/Ubuntu/Components/OptionSelectorDelegate.qml
213
 
ListItem.Standard
214
 
    property string text
 
217
OptionSelectorDelegate 0.1 1.0
 
218
ListItem.Empty
215
219
    property string subText
216
220
    property url icon
217
 
    property url iconSource
218
 
    property string iconName
219
221
    property bool constrainImage
220
222
    property bool colourImage
221
223
    property color assetColour
222
224
    readonly property ListView listView
223
225
    readonly property string fragColourShader
224
 
modules/Ubuntu/Components/OrientationHelper.qml
 
226
OrientationHelper 0.1 1.0
225
227
Item
226
228
    property bool automaticOrientation
227
229
    property bool transitionEnabled
228
230
    property alias rotating
229
231
    property int __orientationAngle
230
232
    property int orientationAngle
231
 
modules/Ubuntu/Components/Page.qml
 
233
Page 0.1 1.0
232
234
PageTreeNode
233
235
    property string title
234
236
    property Flickable flickable
235
237
    property list<Action> actions
236
 
modules/Ubuntu/Components/PageStack.qml
 
238
PageStack 0.1 1.0
237
239
PageTreeNode
238
240
    property bool __showHeader
239
241
    property int depth
241
243
    function push(page, properties)
242
244
    function pop()
243
245
    function clear()
244
 
modules/Ubuntu/Components/Panel.qml
 
246
Panel 0.1 1.0
245
247
Item
246
248
    default property list<Object> contents
247
249
    property int align
256
258
    property bool animate
257
259
    readonly property bool animating
258
260
    property bool __closeOnContentsClicks
 
261
    property bool __openOnHover
259
262
    property bool pressed
260
 
modules/Ubuntu/Components/Pickers/DatePicker.qml
 
263
DatePicker 0.1 1.0
261
264
StyledItem
262
265
    property string mode
263
266
    property date date
272
275
    readonly property int seconds
273
276
    property var locale
274
277
    readonly property bool moving
275
 
modules/Ubuntu/Components/Pickers/Dialer.qml
 
278
Dialer 0.1 1.0
276
279
StyledItem
277
280
    property real minimumValue
278
281
    property real maximumValue
282
285
    property list<var> centerContent
283
286
    readonly property list<DialerHands> hands
284
287
    signal handUpdated(var hand)
285
 
modules/Ubuntu/Components/Pickers/DialerHand.qml
 
288
DialerHand 0.1 1.0
286
289
StyledItem
287
290
    property real value
288
291
    property DialerHandGroup hand
290
293
    default property list<QtObject> overlay
291
294
    readonly property int index
292
295
    property internal __grabber
293
 
modules/Ubuntu/Components/Pickers/Picker.qml
 
296
Picker 0.1 1.0
294
297
StyledItem
295
298
    property bool circular
296
299
    property var model
300
303
    readonly property bool moving
301
304
    function positionViewAtIndex(index)
302
305
    property int __clickedIndex
303
 
modules/Ubuntu/Components/Pickers/PickerDelegate.qml
 
306
PickerDelegate 0.1 1.0
304
307
AbstractButton
305
308
    readonly property Picker picker
306
309
modules/Ubuntu/Components/Pickers/PickerPanel.qml
307
310
Object
308
311
    function openDatePicker(caller, property, mode)
309
 
modules/Ubuntu/Components/Popups/ActionSelectionPopover.qml
 
312
ActionSelectionPopover 0.1 1.0
310
313
Popover
311
314
    property Item target
312
315
    property var actions
313
316
    property Component delegate
314
 
modules/Ubuntu/Components/Popups/ComposerSheet.qml
 
317
ComposerSheet 0.1 1.0
315
318
SheetBase
316
319
    signal cancelClicked
317
320
    signal confirmClicked
318
 
modules/Ubuntu/Components/Popups/DefaultSheet.qml
 
321
DefaultSheet 0.1 1.0
319
322
SheetBase
320
323
    property bool doneButton
321
324
    signal closeClicked
322
325
    signal doneClicked
323
 
modules/Ubuntu/Components/Popups/Dialog.qml
 
326
Dialog 0.1 1.0
324
327
PopupBase
325
328
    default property list<Object> contents
326
329
    property string title
330
333
    property real edgeMargins
331
334
    property real callerMargin
332
335
    property bool modal
333
 
modules/Ubuntu/Components/Popups/Popover.qml
 
336
Popover 0.1 1.0
334
337
PopupBase
335
338
    default property list<Object> container
336
339
    property real contentWidth
344
347
    function show()
345
348
    function hide()
346
349
    function __makeInvisible()
347
 
modules/Ubuntu/Components/Popups/PopupBase.qml
 
350
PopupBase 0.1 1.0
348
351
OrientationHelper
349
352
    property Item dismissArea
350
353
    property bool grabDismissAreaEvents
356
359
    property bool __closeOnDismissAreaPress
357
360
    property internal __dimBackground
358
361
    property internal __eventGrabber
359
 
modules/Ubuntu/Components/Popups/SheetBase.qml
 
362
SheetBase 0.1 1.0
360
363
PopupBase
361
364
    default property list<Object> container
362
365
    property real contentsWidth
365
368
    property bool modal
366
369
    property internal __leftButton
367
370
    property internal __rightButton
368
 
modules/Ubuntu/Components/ProgressBar.qml
 
371
ProgressBar 0.1 1.0
369
372
AnimatedItem
370
373
    property bool indeterminate
371
374
    property real minimumValue
372
375
    property real maximumValue
373
376
    property real value
374
 
modules/Ubuntu/Components/Scrollbar.qml
 
377
Scrollbar 0.1 1.0
375
378
StyledItem
376
379
    property Flickable flickableItem
377
380
    property int align
378
381
    property bool __interactive
379
382
    property internal __private
380
 
modules/Ubuntu/Components/Slider.qml
 
383
Slider 0.1 1.0
381
384
StyledItem
382
385
    property real minimumValue
383
386
    property real maximumValue
387
390
    signal touched(bool onThumb)
388
391
    function formatValue(v)
389
392
    property internal __internals
390
 
modules/Ubuntu/Components/StyledItem.qml
 
393
StyledItem 0.1 1.0
391
394
FocusScope
392
395
    property Component style
393
396
    readonly property Item __styleInstance
394
 
modules/Ubuntu/Components/Switch.qml
 
397
ComboButtonStyle 1.1
 
398
Item
 
399
    property real dropDownWidth
 
400
    property real dropDownSeparatorWidth
 
401
    property real comboListMargin
 
402
    property Item comboListHolder
 
403
    property Item comboListPanel
 
404
    property color defaultColor
 
405
    property Gradient defaultGradient
 
406
    property color defaultDropdownColor
 
407
    property font defaultFont
 
408
Switch 0.1 1.0
395
409
CheckBox
396
 
modules/Ubuntu/Components/Tab.qml
 
410
Tab 0.1 1.0
397
411
PageTreeNode
398
412
    property string title
399
413
    property url iconSource
400
414
    property Item page
401
415
    readonly property int index
402
416
    property internal __protected
403
 
modules/Ubuntu/Components/TabBar.qml
 
417
TabBar 0.1 1.0
404
418
StyledItem
405
419
    property Item tabsItem
406
420
    property var model
409
423
    property int selectedIndex
410
424
    property bool alwaysSelectionMode
411
425
    property bool animate
412
 
modules/Ubuntu/Components/Tabs.qml
 
426
Tabs 0.1 1.0
413
427
PageTreeNode
414
428
    property int selectedTabIndex
415
429
    readonly property Tab selectedTab
418
432
    default property list<Item> tabChildren
419
433
    readonly property int count
420
434
    signal modelChanged()
421
 
modules/Ubuntu/Components/TextArea.qml
 
435
    property var __model
 
436
TextArea 0.1 1.0
422
437
StyledItem
423
438
    property bool highlighted
424
439
    property string placeholderText
479
494
    function remove(start, end)
480
495
    function undo()
481
496
    function forceActiveFocus()
482
 
    property internal __internal
483
 
modules/Ubuntu/Components/TextField.qml
 
497
TextField 0.1 1.0
484
498
ActionItem
485
499
    property bool highlighted
486
500
    property string placeholderText
545
559
    function undo()
546
560
    function remove(start, end)
547
561
    function getText(start, end)
548
 
    property internal __internal
549
 
modules/Ubuntu/Components/Themes/Palette.qml
 
562
Palette 0.1
550
563
QtObject
551
564
    property PaletteValues normal
552
565
    property PaletteValues selected
553
 
modules/Ubuntu/Components/Themes/PaletteValues.qml
 
566
PaletteValues 0.1
554
567
QtObject
555
568
    property color background
556
569
    property color backgroundText
562
575
    property color overlayText
563
576
    property color field
564
577
    property color fieldText
565
 
modules/Ubuntu/Components/ToolbarButton.qml
 
578
ToolbarButton 0.1 1.0
566
579
ActionItem
567
 
modules/Ubuntu/Components/ToolbarItems.qml
 
580
ToolbarItems 0.1 1.0
568
581
Item
569
582
    default property list<Object> contents
570
583
    property Item back
571
584
    property Item pageStack
572
585
    property bool opened
573
586
    property bool locked
574
 
modules/Ubuntu/Components/UbuntuListView.qml
 
587
UbuntuListView 0.1 1.0
575
588
ListView
576
589
    property int expandedIndex
577
 
modules/Ubuntu/Components/UbuntuNumberAnimation.qml
 
590
UbuntuNumberAnimation 0.1 1.0
578
591
NumberAnimation
579
 
modules/Ubuntu/Components/UbuntuShape.qml
 
592
UbuntuShape 0.1 1.0
580
593
Item
581
594
    property color color
582
595
    property color gradientColor
583
596
    property string radius
584
597
    property Item image
585
598
    property url borderSource
586
 
modules/Ubuntu/PerformanceMetrics/PerformanceOverlay.qml
 
599
PerformanceOverlay 0.1 1.0
587
600
Item
588
601
    property bool active
589
 
modules/Ubuntu/Test/UbuntuTestCase.qml
 
602
UbuntuTestCase 0.1 1.0
590
603
TestCase
591
604
    function findChild(obj,objectName)
592
605
    function findInvisibleChild(obj,objectName)
593
606
    function mouseMoveSlowly(item,x,y,dx,dy,steps,stepdelay)
 
607
    function flick(item, x, y, dx, dy, pressTimeout, steps, button, modifiers, delay)
 
608
    function mouseLongPress(item, x, y, button, modifiers, delay)
594
609
    function tryCompareFunction(func, expectedResult, timeout)
595
610
plugins.qmltypes
596
611
    name: "FilterBehavior"
599
614
    Property { name: "pattern"; type: "QRegExp" }
600
615
    name: "InverseMouseAreaType"
601
616
    prototype: "QQuickMouseArea"
602
 
    exports: ["InverseMouseArea 0.1"]
 
617
    exports: ["InverseMouseArea 0.1", "InverseMouseArea 1.0"]
603
618
    Property { name: "sensingArea"; type: "QQuickItem"; isPointer: true }
604
619
    Property { name: "topmostItem"; type: "bool" }
605
620
    Method {
646
661
    Method { name: "count"; type: "int" }
647
662
    name: "ShapeItem"
648
663
    prototype: "QQuickItem"
649
 
    exports: ["Shape 0.1"]
 
664
    exports: ["Shape 0.1", "Shape 1.0"]
650
665
    name: "HAlignment"
651
666
    name: "VAlignment"
652
667
    Property { name: "color"; type: "QColor" }
665
680
    Property { name: "order"; type: "Qt::SortOrder" }
666
681
    name: "UCAlarm"
667
682
    prototype: "QObject"
668
 
    exports: ["Alarm 0.1"]
 
683
    exports: ["Alarm 0.1", "Alarm 1.0"]
669
684
    name: "Status"
670
685
    name: "Operation"
671
686
    name: "Error"
688
703
    Method { name: "reset" }
689
704
    name: "UCAlarmModel"
690
705
    prototype: "QAbstractListModel"
691
 
    exports: ["AlarmModel 0.1"]
 
706
    exports: ["AlarmModel 0.1", "AlarmModel 1.0"]
692
707
    Property { name: "count"; type: "int"; isReadonly: true }
693
708
    Method {
694
709
    name: "get"
695
710
    Parameter { name: "index"; type: "int" }
696
711
    name: "UCArgument"
697
712
    prototype: "QObject"
698
 
    exports: ["Argument 0.1"]
 
713
    exports: ["Argument 0.1", "Argument 1.0"]
699
714
    Property { name: "name"; type: "string" }
700
715
    Property { name: "help"; type: "string" }
701
716
    Property { name: "required"; type: "bool" }
705
720
    Parameter { name: "i"; type: "int" }
706
721
    name: "UCArguments"
707
722
    prototype: "QObject"
708
 
    exports: ["Arguments 0.1"]
 
723
    exports: ["Arguments 0.1", "Arguments 1.0"]
709
724
    Property { name: "defaultArgument"; type: "UCArgument"; isPointer: true }
710
725
    Property { name: "arguments"; type: "UCArgument"; isList: true; isReadonly: true }
711
726
    Property { name: "values"; type: "QQmlPropertyMap"; isReadonly: true; isPointer: true }
718
733
    Method { name: "quitWithError" }
719
734
    name: "UCInverseMouse"
720
735
    prototype: "UCMouse"
721
 
    exports: ["InverseMouse 0.1"]
 
736
    exports: ["InverseMouse 0.1", "InverseMouse 1.0"]
722
737
    name: "UCMouse"
723
738
    prototype: "QObject"
724
 
    exports: ["Mouse 0.1"]
 
739
    exports: ["Mouse 0.1", "Mouse 1.0"]
725
740
    name: "Priority"
726
741
    Property { name: "enabled"; type: "bool" }
727
742
    Property { name: "acceptedButtons"; type: "Qt::MouseButtons"; isReadonly: true }
732
747
    Signal {
733
748
    name: "pressed"
734
749
    Parameter { name: "mouse"; type: "QQuickMouseEvent"; isPointer: true }
 
750
    Parameter { name: "host"; type: "QQuickItem"; isPointer: true }
735
751
    Signal {
736
752
    name: "released"
737
753
    Parameter { name: "mouse"; type: "QQuickMouseEvent"; isPointer: true }
 
754
    Parameter { name: "host"; type: "QQuickItem"; isPointer: true }
738
755
    Signal {
739
756
    name: "clicked"
740
757
    Parameter { name: "mouse"; type: "QQuickMouseEvent"; isPointer: true }
 
758
    Parameter { name: "host"; type: "QQuickItem"; isPointer: true }
741
759
    Signal {
742
760
    name: "pressAndHold"
743
761
    Parameter { name: "mouse"; type: "QQuickMouseEvent"; isPointer: true }
 
762
    Parameter { name: "host"; type: "QQuickItem"; isPointer: true }
744
763
    Signal {
745
764
    name: "doubleClicked"
746
765
    Parameter { name: "mouse"; type: "QQuickMouseEvent"; isPointer: true }
 
766
    Parameter { name: "host"; type: "QQuickItem"; isPointer: true }
747
767
    Signal {
748
768
    name: "positionChanged"
749
769
    Parameter { name: "mouse"; type: "QQuickMouseEvent"; isPointer: true }
 
770
    Parameter { name: "host"; type: "QQuickItem"; isPointer: true }
750
771
    Signal {
751
772
    name: "entered"
752
773
    Parameter { name: "event"; type: "QQuickMouseEvent"; isPointer: true }
 
774
    Parameter { name: "host"; type: "QQuickItem"; isPointer: true }
753
775
    Signal {
754
776
    name: "exited"
755
777
    Parameter { name: "event"; type: "QQuickMouseEvent"; isPointer: true }
 
778
    Parameter { name: "host"; type: "QQuickItem"; isPointer: true }
756
779
    name: "UCQQuickImageExtension"
757
780
    prototype: "QQuickImageBase"
758
 
    exports: ["QQuickImageBase 0.1"]
 
781
    exports: ["QQuickImageBase 0.1", "QQuickImageBase 1.0"]
759
782
    Property { name: "source"; type: "QUrl" }
760
783
    Signal {
761
784
    name: "sourceChanged"
765
788
    Parameter { type: "QUrl" }
766
789
    name: "UCStateSaver"
767
790
    prototype: "QObject"
768
 
    exports: ["StateSaver 0.1"]
 
791
    exports: ["StateSaver 0.1", "StateSaver 1.0"]
769
792
    name: "UCStateSaverAttached"
770
793
    prototype: "QObject"
771
794
    Property { name: "enabled"; type: "bool" }
772
795
    Property { name: "properties"; type: "string" }
773
796
    name: "UCUbuntuAnimation"
774
797
    prototype: "QObject"
775
 
    exports: ["UbuntuAnimation 0.1"]
 
798
    exports: ["UbuntuAnimation 0.1", "UbuntuAnimation 1.0"]
776
799
    Property { name: "SnapDuration"; type: "int"; isReadonly: true }
777
800
    Property { name: "FastDuration"; type: "int"; isReadonly: true }
778
801
    Property { name: "BriskDuration"; type: "int"; isReadonly: true }
782
805
    Property { name: "StandardEasingReverse"; type: "QEasingCurve"; isReadonly: true }
783
806
    name: "UCUnits"
784
807
    prototype: "QObject"
785
 
    exports: ["UCUnits 0.1"]
 
808
    exports: ["UCUnits 0.1", "UCUnits 1.0"]
786
809
    Property { name: "gridUnit"; type: "float" }
787
810
    Method {
788
811
    name: "dp"
792
815
    Parameter { name: "value"; type: "float" }
793
816
    name: "UCUriHandler"
794
817
    prototype: "QObject"
795
 
    exports: ["UriHandler 0.1"]
 
818
    exports: ["UriHandler 0.1", "UriHandler 1.0"]
796
819
    Signal {
797
820
    name: "opened"
798
821
    Parameter { name: "uris"; type: "QStringList" }
799
822
    name: "UbuntuI18n"
800
823
    prototype: "QObject"
801
 
    exports: ["i18n 0.1"]
 
824
    exports: ["i18n 0.1", "i18n 1.0"]
802
825
    Property { name: "domain"; type: "string" }
803
826
    Property { name: "language"; type: "string" }
804
827
    Method {
825
848
    Parameter { name: "n"; type: "int" }
826
849
    name: "ULConditionalLayout"
827
850
    prototype: "QObject"
828
 
    exports: ["ConditionalLayout 0.1"]
 
851
    exports: ["ConditionalLayout 0.1", "ConditionalLayout 1.0"]
829
852
    Property { name: "name"; type: "string" }
830
853
    Property { name: "when"; type: "QQmlBinding"; isPointer: true }
831
854
    Property { name: "layout"; type: "QQmlComponent"; isPointer: true }
832
855
    name: "ULItemLayout"
833
856
    prototype: "QQuickItem"
834
 
    exports: ["ItemLayout 0.1"]
 
857
    exports: ["ItemLayout 0.1", "ItemLayout 1.0"]
835
858
    Property { name: "item"; type: "string" }
836
859
    name: "ULLayouts"
837
860
    prototype: "QQuickItem"
838
 
    exports: ["Layouts 0.1"]
 
861
    exports: ["Layouts 0.1", "Layouts 1.0"]
839
862
    Property { name: "currentLayout"; type: "string"; isReadonly: true }
840
863
    Property { name: "layouts"; type: "ULConditionalLayout"; isList: true; isReadonly: true }
841
864
    name: "ULLayoutsAttached"
843
866
    Property { name: "item"; type: "string" }
844
867
    name: "UPMCpuUsage"
845
868
    prototype: "QQuickItem"
846
 
    exports: ["CpuUsage 0.1"]
 
869
    exports: ["CpuUsage 0.1", "CpuUsage 1.0"]
847
870
    Property { name: "graphModel"; type: "UPMGraphModel"; isReadonly: true; isPointer: true }
848
871
    Property { name: "period"; type: "int" }
849
872
    Property { name: "samplingInterval"; type: "int" }
855
878
    Property { name: "currentValue"; type: "int"; isReadonly: true }
856
879
    name: "UPMRenderingTimes"
857
880
    prototype: "QQuickItem"
858
 
    exports: ["RenderingTimes 0.1"]
 
881
    exports: ["RenderingTimes 0.1", "RenderingTimes 1.0"]
859
882
    Property { name: "period"; type: "int" }
860
883
    Property { name: "samples"; type: "int" }
861
884
    Property { name: "graphModel"; type: "UPMGraphModel"; isReadonly: true; isPointer: true }
865
888
    Parameter { name: "renderTime"; type: "qlonglong" }
866
889
    name: "UPMTextureFromImage"
867
890
    prototype: "QQuickItem"
868
 
    exports: ["TextureFromImage 0.1"]
 
891
    exports: ["TextureFromImage 0.1", "TextureFromImage 1.0"]
869
892
    Property { name: "image"; type: "QImage" }