~zsombi/ubuntu-ui-toolkit/ima-bug1288876

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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
modules/Ubuntu/Components/AbstractButton.qml
ActionItem
    signal clicked()
    signal pressAndHold()
    property bool pressed
    property bool hovered
    property bool __acceptEvents
    property internal __mouseArea
modules/Ubuntu/Components/Action.qml
UnityActions.Action
    property url iconSource
    property string iconName
    property bool visible
    property Component itemHint
modules/Ubuntu/Components/ActionItem.qml
StyledItem
    property Action action
    property string text
    property url iconSource
    property string iconName
    signal triggered(var value)
    function trigger(value)
modules/Ubuntu/Components/ActionList.qml
QtObject
    default property list<Action> children
    property list<Action> actions
modules/Ubuntu/Components/ActivityIndicator.qml
AnimatedItem
    property bool running
modules/Ubuntu/Components/Button.qml
AbstractButton
    property color color
    property Gradient gradient
    property string iconPosition
modules/Ubuntu/Components/CheckBox.qml
AbstractButton
    property bool checked
modules/Ubuntu/Components/Colors/UbuntuColors.qml
QtObject
    readonly property color orange
    readonly property color lightAubergine
    readonly property color midAubergine
    readonly property color darkAubergine
    readonly property color warmGrey
    readonly property color coolGrey
    property Gradient orangeGradient
    property Gradient greyGradient
modules/Ubuntu/Components/CrossFadeImage.qml
Item
    property url source
    property int fillMode
    property int fadeDuration
    readonly property bool running
    property size sourceSize
    readonly property int status
modules/Ubuntu/Components/Header.qml
StyledItem
    property bool animate
    function show()
    function hide()
    property string title
    property Item contents
    property Flickable flickable
modules/Ubuntu/Components/Icon.qml
Item
    property string name
    property color color
    property color keyColor
modules/Ubuntu/Components/Label.qml
Text
    property string fontSize
modules/Ubuntu/Components/ListItems/Base.qml
Empty
    property variant icon
    property url iconSource
    property string iconName
    property url fallbackIconSource
    property string fallbackIconName
    property bool progression
    property bool iconFrame
    property real __iconWidth
    property real __iconHeight
    property real __leftIconMargin
    property real __rightIconMargin
    property bool __iconIsItem
    property internal children
modules/Ubuntu/Components/ListItems/Caption.qml
Item
    property string text
modules/Ubuntu/Components/ListItems/Divider.qml
Image
modules/Ubuntu/Components/ListItems/Empty.qml
AbstractButton
    property bool selected
    property bool highlightWhenPressed
    property bool removable
    property bool confirmRemoval
    readonly property string swipingState
    readonly property bool waitingConfirmationForRemoval
    signal itemRemoved
    property int __height
    property bool showDivider
    default property internal children
    property internal __contents
    property list<Item> backgroundIndicator
    property ThinDivider divider
    property real __contentsMargins
    function cancelItemRemoval()
modules/Ubuntu/Components/ListItems/Expandable.qml
Empty
    property bool expanded
    property real collapsedHeight
    property real expandedHeight
    property bool collapseOnClick
    default property QtObject children
modules/Ubuntu/Components/ListItems/ExpandablesColumn.qml
Flickable
    readonly property Item expandedItem
    function expandItem(item)
    function collapse()
    default property QtObject children
modules/Ubuntu/Components/ListItems/Header.qml
Item
    property string text
    property internal __foregroundColor
modules/Ubuntu/Components/ListItems/ItemSelector.qml
ListItem.Empty
    property var model
    property bool expanded
    property bool multiSelection
    property bool colourImage
    property real containerHeight
    property int selectedIndex
    property bool currentlyExpanded
    readonly property real itemHeight
    signal delegateClicked(int index)
    signal expansionCompleted()
modules/Ubuntu/Components/ListItems/MultiValue.qml
Base
    property variant values
modules/Ubuntu/Components/ListItems/SingleControl.qml
Empty
    property Item control
    function __updateControl()
modules/Ubuntu/Components/ListItems/SingleValue.qml
Base
    property string value
modules/Ubuntu/Components/ListItems/Standard.qml
Empty
    property variant icon
    property url iconSource
    property string iconName
    property url fallbackIconSource
    property string fallbackIconName
    property bool progression
    property real __iconWidth
    property real __iconHeight
    property real __leftIconMargin
    property real __rightIconMargin
    property Item control
    property bool iconFrame
    property bool __controlAreaPressed
    property bool __iconIsItem
    property internal __foregroundColor
modules/Ubuntu/Components/ListItems/Subtitled.qml
Base
    property string text
    property string subText
modules/Ubuntu/Components/ListItems/ThinDivider.qml
Image
modules/Ubuntu/Components/ListItems/ValueSelector.qml
Empty
    property variant icon
    property url iconSource
    property string iconName
    property url fallbackIconSource
    property string fallbackIconName
    property real __iconWidth
    property real __iconHeight
    property real __leftIconMargin
    property real __rightIconMargin
    property bool iconFrame
    property variant values
    property int selectedIndex
    property bool expanded
modules/Ubuntu/Components/MainView.qml
PageTreeNode
    property string applicationName
    property bool anchorToKeyboard
    property color headerColor
    property color backgroundColor
    property color footerColor
    property bool automaticOrientation
    default property internal contentsItem
    property list<Action> actions
    property UnityActions.ActionManager actionManager
modules/Ubuntu/Components/Object.qml
QtObject
    default property internal children
modules/Ubuntu/Components/OptionSelector.qml
ListItem.Empty
    property var model
    property bool expanded
    property bool multiSelection
    property bool colourImage
    property real containerHeight
    property int selectedIndex
    property bool currentlyExpanded
    readonly property real itemHeight
    signal delegateClicked(int index)
    signal expansionCompleted()
modules/Ubuntu/Components/OptionSelectorDelegate.qml
ListItem.Standard
    property string text
    property string subText
    property url icon
    property url iconSource
    property string iconName
    property bool constrainImage
    property bool colourImage
    property color assetColour
    readonly property ListView listView
    readonly property string fragColourShader
modules/Ubuntu/Components/OrientationHelper.qml
Item
    property bool automaticOrientation
    property bool transitionEnabled
    property alias rotating
    property int __orientationAngle
    property int orientationAngle
modules/Ubuntu/Components/Page.qml
PageTreeNode
    property string title
    property Flickable flickable
    property list<Action> actions
modules/Ubuntu/Components/PageStack.qml
PageTreeNode
    property bool __showHeader
    property int depth
    property Item currentPage
    function push(page, properties)
    function pop()
    function clear()
modules/Ubuntu/Components/Panel.qml
Item
    default property list<Object> contents
    property int align
    property bool opened
    function open()
    function close()
    property int hideTimeout
    property bool locked
    property real hintSize
    property real triggerSize
    readonly property real position
    property bool animate
    readonly property bool animating
    property bool __closeOnContentsClicks
    property bool pressed
modules/Ubuntu/Components/Pickers/DatePicker.qml
StyledItem
    property string mode
    property date date
    property date minimum
    property date maximum
    readonly property int year
    readonly property int month
    readonly property int day
    readonly property int week
    readonly property int hours
    readonly property int minutes
    readonly property int seconds
    property var locale
    readonly property bool moving
modules/Ubuntu/Components/Pickers/Dialer.qml
StyledItem
    property real minimumValue
    property real maximumValue
    property real size
    property real handSpace
    readonly property Item centerItem
    property list<var> centerContent
    readonly property list<DialerHands> hands
    signal handUpdated(var hand)
modules/Ubuntu/Components/Pickers/DialerHand.qml
StyledItem
    property real value
    property DialerHandGroup hand
    readonly property Dialer dialer
    default property list<QtObject> overlay
    readonly property int index
    property internal __grabber
modules/Ubuntu/Components/Pickers/Picker.qml
StyledItem
    property bool circular
    property var model
    property Component delegate
    property int selectedIndex
    property bool live
    readonly property bool moving
    function positionViewAtIndex(index)
    property int __clickedIndex
modules/Ubuntu/Components/Pickers/PickerDelegate.qml
AbstractButton
    readonly property Picker picker
modules/Ubuntu/Components/Pickers/PickerPanel.qml
Object
    function openDatePicker(caller, property, mode)
modules/Ubuntu/Components/Popups/ActionSelectionPopover.qml
Popover
    property Item target
    property var actions
    property Component delegate
modules/Ubuntu/Components/Popups/ComposerSheet.qml
SheetBase
    signal cancelClicked
    signal confirmClicked
modules/Ubuntu/Components/Popups/DefaultSheet.qml
SheetBase
    property bool doneButton
    signal closeClicked
    signal doneClicked
modules/Ubuntu/Components/Popups/Dialog.qml
PopupBase
    default property list<Object> contents
    property string title
    property string text
    property Item caller
    property Item pointerTarget
    property real edgeMargins
    property real callerMargin
    property bool modal
modules/Ubuntu/Components/Popups/Popover.qml
PopupBase
    default property list<Object> container
    property real contentWidth
    property real contentHeight
    property Item caller
    property Item pointerTarget
    property real edgeMargins
    property real callerMargin
    property bool autoClose
    property Component foregroundStyle
    function show()
    function hide()
    function __makeInvisible()
modules/Ubuntu/Components/Popups/PopupBase.qml
OrientationHelper
    property Item dismissArea
    property bool grabDismissAreaEvents
    function show()
    function hide()
    function __closeIfHidden()
    function __closePopup()
    property Item __foreground
    property bool __closeOnDismissAreaPress
    property internal __dimBackground
    property internal __eventGrabber
modules/Ubuntu/Components/Popups/SheetBase.qml
PopupBase
    default property list<Object> container
    property real contentsWidth
    property real contentsHeight
    property string title
    property bool modal
    property internal __leftButton
    property internal __rightButton
modules/Ubuntu/Components/ProgressBar.qml
AnimatedItem
    property bool indeterminate
    property real minimumValue
    property real maximumValue
    property real value
modules/Ubuntu/Components/Scrollbar.qml
StyledItem
    property Flickable flickableItem
    property int align
    property bool __interactive
    property internal __private
modules/Ubuntu/Components/Slider.qml
StyledItem
    property real minimumValue
    property real maximumValue
    property real value
    property bool live
    property bool pressed
    signal touched(bool onThumb)
    function formatValue(v)
    property internal __internals
modules/Ubuntu/Components/StyledItem.qml
FocusScope
    property Component style
    readonly property Item __styleInstance
modules/Ubuntu/Components/Switch.qml
CheckBox
modules/Ubuntu/Components/Tab.qml
PageTreeNode
    property string title
    property url iconSource
    property Item page
    readonly property int index
    property internal __protected
modules/Ubuntu/Components/TabBar.qml
StyledItem
    property Item tabsItem
    property var model
    readonly property bool pressed
    property bool selectionMode
    property int selectedIndex
    property bool alwaysSelectionMode
    property bool animate
modules/Ubuntu/Components/Tabs.qml
PageTreeNode
    property int selectedTabIndex
    readonly property Tab selectedTab
    readonly property Item currentPage
    property TabBar tabBar
    default property list<Item> tabChildren
    readonly property int count
    signal modelChanged()
modules/Ubuntu/Components/TextArea.qml
StyledItem
    property bool highlighted
    property string placeholderText
    readonly property string displayText
    property bool selectByMouse
    property bool autoExpand
    property bool autoSize
    property int maximumLineCount
    property real contentWidth
    property real contentHeight
    property var popover
    property bool activeFocusOnPress
    property url baseUrl
    property bool canPaste
    property bool canRedo
    property bool canUndo
    property color color
    property Component cursorDelegate
    property int cursorPosition
    property rectangle cursorRectangle
    property bool cursorVisible
    property enumeration effectiveHorizontalAlignment
    property font font
    property enumeration horizontalAlignment
    property bool inputMethodComposing
    property enumeration inputMethodHints
    property int length
    property int lineCount
    property enumeration mouseSelectionMode
    property enumeration persistentSelection
    property bool readOnly
    property enumeration renderType
    property string selectedText
    property color selectedTextColor
    property color selectionColor
    property int selectionEnd
    property int selectionStart
    property string text
    property enumeration textFormat
    property enumeration verticalAlignment
    property enumeration wrapMode
    signal linkActivated(string link)
    function copy()
    function cut()
    function deselect()
    function insert(position, text)
    function positionAt(x, y)
    function isRightToLeft(start, end)
    function moveCursorSelection(position, mode)
    function paste(data)
    function positionToRectangle(position)
    function redo()
    function select(start, end)
    function selectAll()
    function selectWord()
    function getFormattedText(start, end)
    function getText(start, end)
    function remove(start, end)
    function undo()
    function forceActiveFocus()
    property internal __internal
modules/Ubuntu/Components/TextField.qml
ActionItem
    property bool highlighted
    property string placeholderText
    property bool hasClearButton
    property Component customSoftwareInputPanel
    property var popover
    property list<Object> primaryItem
    property list<Object> secondaryItem
    property bool errorHighlight
    property bool acceptableInput
    property bool activeFocusOnPress
    property bool autoScroll
    property bool canPaste
    property bool canRedo
    property bool canUndo
    property color color
    property real contentHeight
    property real contentWidth
    property Component cursorDelegate
    property int cursorPosition
    property rectangle cursorRectangle
    property bool cursorVisible
    property string displayText
    property enumeration echoMode
    property font font
    property string inputMask
    property bool inputMethodComposing
    property enumeration inputMethodHints
    property int length
    property int maximumLength
    property enumeration mouseSelectionMode
    property bool persistentSelection
    property bool readOnly
    property enumeration renderType
    property bool selectByMouse
    readonly property string selectedText
    property int selectionStart
    property int selectionEnd
    property string text
    property Validator validator
    property enumeration horizontalAlignment
    property enumeration effectiveHorizontalAlignment
    property enumeration verticalAlignment
    property string passwordCharacter
    property color selectionColor
    property color selectedTextColor
    signal accepted()
    function copy()
    function cut()
    function paste(data)
    function deselect()
    function insert(position, text)
    function positionAt(x, position)
    function positionToRectangle(pos)
    function select(start, end)
    function selectAll()
    function selectWord()
    function forceActiveFocus()
    function isRightToLeft(start, end)
    function moveCursorSelection(position, mode)
    function redo()
    function undo()
    function remove(start, end)
    function getText(start, end)
    property internal __internal
modules/Ubuntu/Components/Themes/Palette.qml
QtObject
    property PaletteValues normal
    property PaletteValues selected
modules/Ubuntu/Components/Themes/PaletteValues.qml
QtObject
    property color background
    property color backgroundText
    property color base
    property color baseText
    property color foreground
    property color foregroundText
    property color overlay
    property color overlayText
    property color field
    property color fieldText
modules/Ubuntu/Components/ToolbarButton.qml
ActionItem
modules/Ubuntu/Components/ToolbarItems.qml
Item
    default property list<Object> contents
    property Item back
    property Item pageStack
    property bool opened
    property bool locked
modules/Ubuntu/Components/UbuntuListView.qml
ListView
    property int expandedIndex
modules/Ubuntu/Components/UbuntuNumberAnimation.qml
NumberAnimation
modules/Ubuntu/Components/UbuntuShape.qml
Item
    property color color
    property color gradientColor
    property string radius
    property Item image
    property url borderSource
modules/Ubuntu/PerformanceMetrics/PerformanceOverlay.qml
Item
    property bool active
modules/Ubuntu/Test/UbuntuTestCase.qml
TestCase
    function findChild(obj,objectName)
    function findInvisibleChild(obj,objectName)
    function mouseMoveSlowly(item,x,y,dx,dy,steps,stepdelay)
    function tryCompareFunction(func, expectedResult, timeout)
plugins.qmltypes
    name: "InverseMouseAreaType"
    prototype: "QQuickMouseArea"
    exports: ["InverseMouseArea 0.1"]
    Property { name: "sensingArea"; type: "QQuickItem"; isPointer: true }
    Property { name: "topmostItem"; type: "bool" }
    Method {
    name: "contains"
    Parameter { name: "point"; type: "QPointF" }
    name: "ShapeItem"
    prototype: "QQuickItem"
    exports: ["Shape 0.1"]
    name: "HAlignment"
    name: "VAlignment"
    Property { name: "color"; type: "QColor" }
    Property { name: "gradientColor"; type: "QColor" }
    Property { name: "radius"; type: "string" }
    Property { name: "image"; type: "QVariant" }
    Property { name: "stretched"; type: "bool" }
    Property { name: "horizontalAlignment"; type: "HAlignment" }
    Property { name: "verticalAlignment"; type: "VAlignment" }
    Property { name: "borderSource"; type: "string" }
    Signal { name: "borderChanged" }
    Method { name: "gridUnitChanged" }
    name: "UCAlarm"
    prototype: "QObject"
    exports: ["Alarm 0.1"]
    name: "Status"
    name: "Operation"
    name: "Error"
    name: "AlarmType"
    name: "DayOfWeek"
    name: "DaysOfWeek"
    Property { name: "enabled"; type: "bool" }
    Property { name: "message"; type: "string" }
    Property { name: "date"; type: "QDateTime" }
    Property { name: "type"; type: "AlarmType" }
    Property { name: "daysOfWeek"; type: "DaysOfWeek" }
    Property { name: "sound"; type: "QUrl" }
    Property { name: "error"; type: "int"; isReadonly: true }
    Property { name: "status"; type: "Status"; isReadonly: true }
    Signal {
    name: "statusChanged"
    Parameter { name: "operation"; type: "Operation" }
    Method { name: "save" }
    Method { name: "cancel" }
    Method { name: "reset" }
    name: "UCAlarmModel"
    prototype: "QAbstractListModel"
    exports: ["AlarmModel 0.1"]
    Property { name: "count"; type: "int"; isReadonly: true }
    Method {
    name: "get"
    Parameter { name: "index"; type: "int" }
    name: "UCArgument"
    prototype: "QObject"
    exports: ["Argument 0.1"]
    Property { name: "name"; type: "string" }
    Property { name: "help"; type: "string" }
    Property { name: "required"; type: "bool" }
    Property { name: "valueNames"; type: "QStringList" }
    Method {
    name: "at"
    Parameter { name: "i"; type: "int" }
    name: "UCArguments"
    prototype: "QObject"
    exports: ["Arguments 0.1"]
    Property { name: "defaultArgument"; type: "UCArgument"; isPointer: true }
    Property { name: "arguments"; type: "UCArgument"; isList: true; isReadonly: true }
    Property { name: "values"; type: "QQmlPropertyMap"; isReadonly: true; isPointer: true }
    Property { name: "error"; type: "bool"; isReadonly: true }
    Property { name: "errorMessage"; type: "string"; isReadonly: true }
    Method { name: "printUsage" }
    Method {
    name: "quitWithError"
    Parameter { name: "errorMessage"; type: "string" }
    Method { name: "quitWithError" }
    name: "UCInverseMouse"
    prototype: "UCMouse"
    exports: ["InverseMouse 0.1"]
    name: "UCMouse"
    prototype: "QObject"
    exports: ["Mouse 0.1"]
    name: "Priority"
    Property { name: "enabled"; type: "bool" }
    Property { name: "acceptedButtons"; type: "Qt::MouseButtons"; isReadonly: true }
    Property { name: "hoverEnabled"; type: "bool"; isReadonly: true }
    Property { name: "clickAndHoldThreshold"; type: "int" }
    Property { name: "forwardTo"; type: "QQuickItem"; isList: true; isReadonly: true }
    Property { name: "priority"; type: "Priority" }
    Signal {
    name: "pressed"
    Parameter { name: "mouse"; type: "QQuickMouseEvent"; isPointer: true }
    Signal {
    name: "released"
    Parameter { name: "mouse"; type: "QQuickMouseEvent"; isPointer: true }
    Signal {
    name: "clicked"
    Parameter { name: "mouse"; type: "QQuickMouseEvent"; isPointer: true }
    Signal {
    name: "pressAndHold"
    Parameter { name: "mouse"; type: "QQuickMouseEvent"; isPointer: true }
    Signal {
    name: "doubleClicked"
    Parameter { name: "mouse"; type: "QQuickMouseEvent"; isPointer: true }
    Signal {
    name: "positionChanged"
    Parameter { name: "mouse"; type: "QQuickMouseEvent"; isPointer: true }
    Signal {
    name: "entered"
    Parameter { name: "event"; type: "QQuickMouseEvent"; isPointer: true }
    Signal {
    name: "exited"
    Parameter { name: "event"; type: "QQuickMouseEvent"; isPointer: true }
    name: "UCQQuickImageExtension"
    prototype: "QQuickImageBase"
    exports: ["QQuickImageBase 0.1"]
    Property { name: "source"; type: "QUrl" }
    Signal {
    name: "sourceChanged"
    Parameter { type: "QUrl" }
    Signal {
    name: "sourceChanged"
    Parameter { type: "QUrl" }
    name: "UCStateSaver"
    prototype: "QObject"
    exports: ["StateSaver 0.1"]
    name: "UCStateSaverAttached"
    prototype: "QObject"
    Property { name: "enabled"; type: "bool" }
    Property { name: "properties"; type: "string" }
    name: "UCUbuntuAnimation"
    prototype: "QObject"
    exports: ["UbuntuAnimation 0.1"]
    Property { name: "SnapDuration"; type: "int"; isReadonly: true }
    Property { name: "FastDuration"; type: "int"; isReadonly: true }
    Property { name: "BriskDuration"; type: "int"; isReadonly: true }
    Property { name: "SlowDuration"; type: "int"; isReadonly: true }
    Property { name: "SleepyDuration"; type: "int"; isReadonly: true }
    Property { name: "StandardEasing"; type: "QEasingCurve"; isReadonly: true }
    Property { name: "StandardEasingReverse"; type: "QEasingCurve"; isReadonly: true }
    name: "UCUnits"
    prototype: "QObject"
    exports: ["UCUnits 0.1"]
    Property { name: "gridUnit"; type: "float" }
    Method {
    name: "dp"
    Parameter { name: "value"; type: "float" }
    Method {
    name: "gu"
    Parameter { name: "value"; type: "float" }
    name: "UCUriHandler"
    prototype: "QObject"
    exports: ["UriHandler 0.1"]
    Signal {
    name: "opened"
    Parameter { name: "uris"; type: "QStringList" }
    name: "UbuntuI18n"
    prototype: "QObject"
    exports: ["i18n 0.1"]
    Property { name: "domain"; type: "string" }
    Property { name: "language"; type: "string" }
    Method {
    name: "bindtextdomain"
    Parameter { name: "domain_name"; type: "string" }
    Parameter { name: "dir_name"; type: "string" }
    Method {
    name: "tr"
    Parameter { name: "text"; type: "string" }
    Method {
    name: "tr"
    Parameter { name: "singular"; type: "string" }
    Parameter { name: "plural"; type: "string" }
    Parameter { name: "n"; type: "int" }
    Method {
    name: "dtr"
    Parameter { name: "domain"; type: "string" }
    Parameter { name: "text"; type: "string" }
    Method {
    name: "dtr"
    Parameter { name: "domain"; type: "string" }
    Parameter { name: "singular"; type: "string" }
    Parameter { name: "plural"; type: "string" }
    Parameter { name: "n"; type: "int" }
    name: "ULConditionalLayout"
    prototype: "QObject"
    exports: ["ConditionalLayout 0.1"]
    Property { name: "name"; type: "string" }
    Property { name: "when"; type: "QQmlBinding"; isPointer: true }
    Property { name: "layout"; type: "QQmlComponent"; isPointer: true }
    name: "ULItemLayout"
    prototype: "QQuickItem"
    exports: ["ItemLayout 0.1"]
    Property { name: "item"; type: "string" }
    name: "ULLayouts"
    prototype: "QQuickItem"
    exports: ["Layouts 0.1"]
    Property { name: "currentLayout"; type: "string"; isReadonly: true }
    Property { name: "layouts"; type: "ULConditionalLayout"; isList: true; isReadonly: true }
    name: "ULLayoutsAttached"
    prototype: "QObject"
    Property { name: "item"; type: "string" }
    name: "UPMCpuUsage"
    prototype: "QQuickItem"
    exports: ["CpuUsage 0.1"]
    Property { name: "graphModel"; type: "UPMGraphModel"; isReadonly: true; isPointer: true }
    Property { name: "period"; type: "int" }
    Property { name: "samplingInterval"; type: "int" }
    name: "UPMGraphModel"
    prototype: "QObject"
    Property { name: "image"; type: "QImage"; isReadonly: true }
    Property { name: "shift"; type: "int"; isReadonly: true }
    Property { name: "samples"; type: "int" }
    Property { name: "currentValue"; type: "int"; isReadonly: true }
    name: "UPMRenderingTimes"
    prototype: "QQuickItem"
    exports: ["RenderingTimes 0.1"]
    Property { name: "period"; type: "int" }
    Property { name: "samples"; type: "int" }
    Property { name: "graphModel"; type: "UPMGraphModel"; isReadonly: true; isPointer: true }
    Property { name: "timerType"; type: "RenderTimer::TimerType" }
    Signal {
    name: "frameRendered"
    Parameter { name: "renderTime"; type: "qlonglong" }
    name: "UPMTextureFromImage"
    prototype: "QQuickItem"
    exports: ["TextureFromImage 0.1"]
    Property { name: "image"; type: "QImage" }