~bzoltan/ubuntu-ui-toolkit/new_list_item_01

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
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
AbstractButton 0.1 1.0
ActionItem
    signal clicked()
    signal pressAndHold()
    property bool pressed
    property bool hovered
    property bool __acceptEvents
    property internal __mouseArea
Action 0.1 1.0
UnityActions.Action
    property url iconSource
    property string iconName
    property bool visible
    property Component itemHint
ActionItem 0.1 1.0
StyledItem
    property Action action
    property string text
    property url iconSource
    property string iconName
    signal triggered(var value)
    function trigger(value)
ActionList 0.1 1.0
QtObject
    default property list<Action> children
    property list<Action> actions
ActivityIndicator 0.1 1.0
AnimatedItem
    property bool running
Button 0.1 1.0
AbstractButton
    property color color
    property Gradient gradient
    property font font
    property string iconPosition
Button 1.1
AbstractButton
    property color strokeColor
    property color color
    property Gradient gradient
    property font font
    property string iconPosition
CheckBox 0.1 1.0
AbstractButton
    property bool checked
ComboButton 1.1
Button
    property bool expanded
    property real collapsedHeight
    property real expandedHeight
    readonly property real comboListHeight
    default property list<Item> comboList
    property color dropdownColor
CrossFadeImage 0.1 1.0
Item
    property url source
    property int fillMode
    property int fadeDuration
    property size sourceSize
    readonly property bool running
    readonly property int status
CrossFadeImage 1.1
Item
    property url source
    property int fillMode
    property int fadeDuration
    property size sourceSize
    property string fadeStyle
    readonly property bool running
    readonly property int status
Header 0.1 1.0
AppHeader
    property string _for_autopilot
Icon 0.1 1.0
Item
    property string name
    property color color
    property color keyColor
Icon 1.1
Icon10
    property url source
Label 0.1 1.0
Text
    property string fontSize
Base 0.1 1.0
Empty
    property variant icon
    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
    default property internal children
Caption 0.1 1.0
Item
    property string text
Divider 0.1 1.0
Image
Empty 0.1 1.0
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()
Expandable 0.1 1.0
Empty
    property bool expanded
    property real collapsedHeight
    property real expandedHeight
    property bool collapseOnClick
    default property QtObject children
ExpandablesColumn 0.1 1.0
Flickable
    readonly property Item expandedItem
    function expandItem(item)
    function collapse()
    default property QtObject children
Header 0.1 1.0
Item
    property string text
    property internal __foregroundColor
ItemSelector 0.1 1.0
ListItem.Empty
    property var model
    property bool expanded
    property bool multiSelection
    property bool colourImage
    property Component delegate
    property real containerHeight
    property int selectedIndex
    property bool currentlyExpanded
    readonly property real itemHeight
    signal delegateClicked(int index)
    signal expansionCompleted()
MultiValue 0.1 1.0
Base
    property variant values
SingleControl 0.1 1.0
Empty
    property Item control
    function __updateControl()
SingleValue 0.1 1.0
Base
    property string value
Standard 0.1 1.0
Empty
    property variant icon
    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
Subtitled 0.1 1.0
Base
    property string subText
ThinDivider 0.1 1.0
Rectangle
    property bool __lightBackground
ValueSelector 0.1 1.0
Empty
    property variant icon
    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
MainView 0.1 1.0
PageTreeNode
    property string applicationName
    property bool anchorToKeyboard
    property color headerColor
    property color backgroundColor
    property color footerColor
    property bool automaticOrientation
    property bool useDeprecatedToolbar
    default property internal contentsItem
    property list<Action> actions
    property UnityActions.ActionManager actionManager
Object 0.1 1.0
QtObject
    default property internal children
    property list<QtObject> __defaultPropertyFix
OptionSelector 0.1 1.0
ListItem.Empty
    property var model
    property bool expanded
    property bool multiSelection
    property bool colourImage
    property Component delegate
    property real containerHeight
    property int selectedIndex
    property bool currentlyExpanded
    readonly property real itemHeight
    signal delegateClicked(int index)
    signal expansionCompleted()
OptionSelectorDelegate 0.1 1.0
ListItem.Empty
    property string subText
    property url icon
    property bool constrainImage
    property bool colourImage
    property color assetColour
    readonly property ListView listView
    readonly property string fragColourShader
OrientationHelper 0.1 1.0
Item
    property bool automaticOrientation
    property bool transitionEnabled
    property alias rotating
    property int __orientationAngle
    property int orientationAngle
    property bool anchorToKeyboard
Page 0.1 1.0
PageTreeNode
    property string title
    property Item tools
    property Item __customHeaderContents
    property Flickable flickable
    property list<Action> actions
Page 1.1
Page10
    readonly property PageHeadConfiguration head
PageHeadConfiguration 1.1
Object
    property list<Action> actions
    property Action backAction
    property Item contents
    readonly property PageHeadSections sections
    property color foregroundColor
PageHeadSections 1.1
QtObject
    property bool enabled
    property var model
    property int selectedIndex
PageHeadState 1.1
State
    property PageHeadConfiguration head
    property list<Action> actions
    property Action backAction
    property Item contents
PageStack 0.1 1.0
PageTreeNode
    property bool __showHeader
    property int depth
    property Item currentPage
    function push(page, properties)
    function pop()
    function clear()
    default property list<Object> data
Panel 0.1 1.0
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 __openOnHover
    property bool pressed
DatePicker 0.1 1.0
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
Dialer 0.1 1.0
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)
DialerHand 0.1 1.0
StyledItem
    property real value
    property DialerHandGroup hand
    readonly property Dialer dialer
    default property list<QtObject> overlay
    readonly property int index
    property internal __grabber
Picker 0.1 1.0
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
PickerDelegate 0.1 1.0
AbstractButton
    readonly property Picker picker
PickerPanel 0.1 1.0
Object
    function openDatePicker(caller, property, mode)
ActionSelectionPopover 0.1 1.0
Popover
    property Item target
    property var actions
    property Component delegate
ComposerSheet 0.1 1.0
SheetBase
    signal cancelClicked
    signal confirmClicked
DefaultSheet 0.1 1.0
SheetBase
    property bool doneButton
    signal closeClicked
    signal doneClicked
Dialog 0.1 1.0
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
Popover 0.1 1.0
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()
PopupBase 0.1 1.0
OrientationHelper
    property Item dismissArea
    property bool grabDismissAreaEvents
    property PropertyAnimation fadingAnimation
    function show()
    function hide()
    function __closeIfHidden()
    function __closePopup()
    property Item __foreground
    property bool __closeOnDismissAreaPress
    property internal __dimBackground
    property internal __eventGrabber
SheetBase 0.1 1.0
PopupBase
    default property list<Object> container
    property real contentsWidth
    property real contentsHeight
    property string title
    property bool modal
    property internal __leftButton
    property internal __rightButton
ProgressBar 0.1 1.0
AnimatedItem
    property bool indeterminate
    property real minimumValue
    property real maximumValue
    property real value
ProgressBar 1.1
ProgressBar
    property bool showProgressPercentage
PullToRefresh 1.1
StyledItem
    readonly property bool releaseToRefresh
    readonly property real offset
    property Component content
    property Flickable target
    property bool refreshing
    signal refresh()
Scrollbar 0.1 1.0
StyledItem
    property Flickable flickableItem
    property int align
    property bool __interactive
    property internal __private
Slider 0.1 1.0
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
StyledItem 0.1 1.0 1.1
StyledItemBase
    property Component style
    readonly property Item __styleInstance
ComboButtonStyle 1.1
Item
    property real dropDownWidth
    property real dropDownSeparatorWidth
    property real comboListMargin
    property Item comboListHolder
    property Item comboListPanel
    property color defaultColor
    property Gradient defaultGradient
    property color defaultDropdownColor
    property font defaultFont
PageHeadStyle 1.1
Item
    property real contentHeight
    property url separatorSource
    property url separatorBottomSource
    property string fontSize
    property int fontWeight
    property color textColor
    property real textLeftMargin
    property int maximumNumberOfActions
PullToRefreshStyle 1.1
Item
    property Component defaultContent
    property real activationThreshold
    property bool releaseToRefresh
Switch 0.1 1.0
CheckBox
Tab 0.1 1.0
PageTreeNode
    property string title
    property url iconSource
    property Item page
    readonly property int index
    property internal __protected
TabBar 0.1 1.0
StyledItem
    property Item tabsItem
    property var model
    readonly property bool pressed
    property bool selectionMode
    property int selectedIndex
    property bool alwaysSelectionMode
    property bool animate
Tabs 0.1 1.0
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()
    property var __model
TextArea 0.1 1.0
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()
TextField 0.1 1.0
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 isRightToLeft(start, end)
    function moveCursorSelection(position, mode)
    function redo()
    function undo()
    function remove(start, end)
    function getText(start, end)
Palette 0.1
QtObject
    property PaletteValues normal
    property PaletteValues selected
PaletteValues 0.1
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
    property color selection
ToolbarButton 0.1 1.0
ActionItem
ToolbarItems 0.1 1.0
Item
    default property list<Object> contents
    property Item back
    property Item pageStack
    property bool opened
    property bool locked
UbuntuColors 1.1
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
    readonly property color lightGrey
    readonly property color darkGrey
    readonly property color red
    readonly property color green
    readonly property color blue
    readonly property color purple
UbuntuColors 0.1 1.0
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
UbuntuListView 0.1 1.0
ListView
    property int expandedIndex
UbuntuListView 1.1
Version10.UbuntuListView
    property PullToRefresh pullToRefresh
UbuntuListView 1.2
Version11.UbuntuListView
    property ListItemOptions leadingOptions
UbuntuNumberAnimation 0.1 1.0
NumberAnimation
PerformanceOverlay 0.1 1.0
Item
    property bool active
UbuntuTestCase 0.1 1.0
TestCase
    function findChild(obj,objectName)
    function findInvisibleChild(obj,objectName)
    function findChildWithProperty(item, property, value)
    function centerOf(item)
    function mouseMoveSlowly(item,x,y,dx,dy,steps,stepdelay)
    function flick(item, x, y, dx, dy, pressTimeout, steps, button, modifiers, delay)
    function mouseLongPress(item, x, y, button, modifiers, delay)
    function tryCompareFunction(func, expectedResult, timeout)
    function typeString(string)
plugins.qmltypes
    name: "FilterBehavior"
    prototype: "QObject"
    exports: ["FilterBehavior 1.1"]
    Property { name: "property"; type: "string" }
    Property { name: "pattern"; type: "QRegExp" }
    name: "InverseMouseAreaType"
    prototype: "QQuickMouseArea"
    exports: ["InverseMouseArea 0.1", "InverseMouseArea 1.0"]
    Property { name: "sensingArea"; type: "QQuickItem"; isPointer: true }
    Property { name: "topmostItem"; type: "bool" }
    Method {
    name: "contains"
    Parameter { name: "point"; type: "QPointF" }
    name: "QAbstractProxyModel"
    prototype: "QAbstractItemModel"
    Property { name: "sourceModel"; type: "QAbstractItemModel"; isPointer: true }
    name: "QSortFilterProxyModel"
    prototype: "QAbstractProxyModel"
    Property { name: "filterRegExp"; type: "QRegExp" }
    Property { name: "filterKeyColumn"; type: "int" }
    Property { name: "dynamicSortFilter"; type: "bool" }
    Property { name: "filterCaseSensitivity"; type: "Qt::CaseSensitivity" }
    Property { name: "sortCaseSensitivity"; type: "Qt::CaseSensitivity" }
    Property { name: "isSortLocaleAware"; type: "bool" }
    Property { name: "sortRole"; type: "int" }
    Property { name: "filterRole"; type: "int" }
    Method {
    name: "setFilterRegExp"
    Parameter { name: "pattern"; type: "string" }
    Method {
    name: "setFilterWildcard"
    Parameter { name: "pattern"; type: "string" }
    Method {
    name: "setFilterFixedString"
    Parameter { name: "pattern"; type: "string" }
    Method { name: "clear" }
    Method { name: "invalidate" }
    name: "QSortFilterProxyModelQML"
    prototype: "QSortFilterProxyModel"
    exports: ["SortFilterModel 1.1"]
    Property { name: "model"; type: "QAbstractItemModel"; isPointer: true }
    Property { name: "count"; type: "int"; isReadonly: true }
    Property { name: "sort"; type: "SortBehavior"; isReadonly: true; isPointer: true }
    Property { name: "filter"; type: "FilterBehavior"; isReadonly: true; isPointer: true }
    Method {
    name: "get"
    Parameter { name: "row"; type: "int" }
    Method { name: "count"; type: "int" }
    name: "ShapeItem"
    prototype: "QQuickItem"
    exports: [
    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: "SortBehavior"
    prototype: "QObject"
    exports: ["SortBehavior 1.1"]
    Property { name: "property"; type: "string" }
    Property { name: "order"; type: "Qt::SortOrder" }
    name: "UCAlarm"
    prototype: "QObject"
    exports: ["Alarm 0.1", "Alarm 1.0"]
    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", "AlarmModel 1.0"]
    Property { name: "count"; type: "int"; isReadonly: true }
    Method {
    name: "get"
    Parameter { name: "index"; type: "int" }
    name: "UCArgument"
    prototype: "QObject"
    exports: ["Argument 0.1", "Argument 1.0"]
    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", "Arguments 1.0"]
    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", "InverseMouse 1.0"]
    name: "UCListItem"
    prototype: "UCStyledItemBase"
    exports: ["ListItem 1.2"]
    Property { name: "contentItem"; type: "QQuickItem"; isReadonly: true; isPointer: true }
    Property { name: "divider"; type: "UCListItemDivider"; isReadonly: true; isPointer: true }
    Property { name: "leadingOptions"; type: "UCListItemOptions"; isPointer: true }
    Property { name: "trailingOptions"; type: "UCListItemOptions"; isPointer: true }
    Property { name: "pressed"; type: "bool"; isReadonly: true }
    Property { name: "color"; type: "QColor" }
    Property { name: "pressedColor"; type: "QColor" }
    Property { name: "selectable"; type: "bool" }
    Property { name: "selected"; type: "bool" }
    Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
    Property { name: "children"; type: "QQuickItem"; isList: true; isReadonly: true }
    Signal { name: "clicked" }
    Signal { name: "pressAndHold" }
    name: "UCListItemDivider"
    prototype: "QObject"
    Property { name: "visible"; type: "bool" }
    Property { name: "leftMargin"; type: "double" }
    Property { name: "rightMargin"; type: "double" }
    Property { name: "colorFrom"; type: "QColor" }
    Property { name: "colorTo"; type: "QColor" }
    name: "UCListItemOptions"
    prototype: "QObject"
    exports: ["ListItemOptions 1.2"]
    name: "Status"
    Property { name: "delegate"; type: "QQmlComponent"; isPointer: true }
    Property { name: "options"; type: "QObject"; isList: true; isReadonly: true }
    Property { name: "panelItem"; type: "QQuickItem"; isReadonly: true; isPointer: true }
    Property { name: "status"; type: "Status"; isReadonly: true }
    Property { name: "connectedItem"; type: "UCListItem"; isReadonly: true; isPointer: true }
    Property { name: "panelColor"; type: "QColor" }
    Property { name: "iconColor"; type: "QColor" }
    name: "UCMouse"
    prototype: "QObject"
    exports: ["Mouse 0.1", "Mouse 1.0"]
    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 }
    Parameter { name: "host"; type: "QQuickItem"; isPointer: true }
    Signal {
    name: "released"
    Parameter { name: "mouse"; type: "QQuickMouseEvent"; isPointer: true }
    Parameter { name: "host"; type: "QQuickItem"; isPointer: true }
    Signal {
    name: "clicked"
    Parameter { name: "mouse"; type: "QQuickMouseEvent"; isPointer: true }
    Parameter { name: "host"; type: "QQuickItem"; isPointer: true }
    Signal {
    name: "pressAndHold"
    Parameter { name: "mouse"; type: "QQuickMouseEvent"; isPointer: true }
    Parameter { name: "host"; type: "QQuickItem"; isPointer: true }
    Signal {
    name: "doubleClicked"
    Parameter { name: "mouse"; type: "QQuickMouseEvent"; isPointer: true }
    Parameter { name: "host"; type: "QQuickItem"; isPointer: true }
    Signal {
    name: "positionChanged"
    Parameter { name: "mouse"; type: "QQuickMouseEvent"; isPointer: true }
    Parameter { name: "host"; type: "QQuickItem"; isPointer: true }
    Signal {
    name: "entered"
    Parameter { name: "event"; type: "QQuickMouseEvent"; isPointer: true }
    Parameter { name: "host"; type: "QQuickItem"; isPointer: true }
    Signal {
    name: "exited"
    Parameter { name: "event"; type: "QQuickMouseEvent"; isPointer: true }
    Parameter { name: "host"; type: "QQuickItem"; isPointer: true }
    name: "UCQQuickImageExtension"
    prototype: "QQuickImageBase"
    exports: ["QQuickImageBase 0.1", "QQuickImageBase 1.0"]
    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", "StateSaver 1.0"]
    name: "UCStateSaverAttached"
    prototype: "QObject"
    Property { name: "enabled"; type: "bool" }
    Property { name: "properties"; type: "string" }
    name: "UCStyledItemBase"
    prototype: "QQuickItem"
    exports: [
    Property { name: "activeFocusOnPress"; revision: 1; type: "bool" }
    Method {
    name: "requestFocus"
    Parameter { name: "reason"; type: "Qt::FocusReason" }
    Method { name: "requestFocus"; revision: 1; type: "bool" }
    name: "UCUbuntuAnimation"
    prototype: "QObject"
    exports: ["UbuntuAnimation 0.1", "UbuntuAnimation 1.0"]
    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", "UCUnits 1.0"]
    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", "UriHandler 1.0"]
    Signal {
    name: "opened"
    Parameter { name: "uris"; type: "QStringList" }
    name: "UbuntuI18n"
    prototype: "QObject"
    exports: ["i18n 0.1", "i18n 1.0"]
    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", "ConditionalLayout 1.0"]
    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", "ItemLayout 1.0"]
    Property { name: "item"; type: "string" }
    name: "ULLayouts"
    prototype: "QQuickItem"
    exports: ["Layouts 0.1", "Layouts 1.0"]
    Property { name: "currentLayout"; type: "string"; isReadonly: true }
    Property { name: "layouts"; type: "ULConditionalLayout"; isList: true; isReadonly: true }
    Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
    Property { name: "children"; type: "QQuickItem"; isList: true; isReadonly: true }
    name: "ULLayoutsAttached"
    prototype: "QObject"
    Property { name: "item"; type: "string" }
    name: "UPMCpuUsage"
    prototype: "QQuickItem"
    exports: ["CpuUsage 0.1", "CpuUsage 1.0"]
    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", "RenderingTimes 1.0"]
    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", "TextureFromImage 1.0"]
    Property { name: "image"; type: "QImage" }
    name: "UCTestExtras"
    prototype: "QObject"
    exports: ["TestExtras 1.0"]
    Property { name: "touchPresent"; type: "bool"; isReadonly: true }
    Method { name: "touchDevicePresent"; type: "bool" }
    Method { name: "registerTouchDevice" }
    Method {
    name: "touchPress"
    Parameter { name: "touchId"; type: "int" }
    Parameter { name: "item"; type: "QQuickItem"; isPointer: true }
    Parameter { name: "point"; type: "QPoint" }
    Method {
    name: "touchRelease"
    Parameter { name: "touchId"; type: "int" }
    Parameter { name: "item"; type: "QQuickItem"; isPointer: true }
    Parameter { name: "point"; type: "QPoint" }
    Method {
    name: "touchClick"
    Parameter { name: "touchId"; type: "int" }
    Parameter { name: "item"; type: "QQuickItem"; isPointer: true }
    Parameter { name: "point"; type: "QPoint" }
    Method {
    name: "touchLongPress"
    Parameter { name: "touchId"; type: "int" }
    Parameter { name: "item"; type: "QQuickItem"; isPointer: true }
    Parameter { name: "point"; type: "QPoint" }
    Method {
    name: "touchDoubleClick"
    Parameter { name: "touchId"; type: "int" }
    Parameter { name: "item"; type: "QQuickItem"; isPointer: true }
    Parameter { name: "point"; type: "QPoint" }
    Method {
    name: "touchMove"
    Parameter { name: "touchId"; type: "int" }
    Parameter { name: "item"; type: "QQuickItem"; isPointer: true }
    Parameter { name: "point"; type: "QPoint" }
    Method {
    name: "touchDrag"
    Parameter { name: "touchId"; type: "int" }
    Parameter { name: "item"; type: "QQuickItem"; isPointer: true }
    Parameter { name: "from"; type: "QPoint" }
    Parameter { name: "delta"; type: "QPoint" }
    Parameter { name: "steps"; type: "int" }
    Method {
    name: "touchDrag"
    Parameter { name: "touchId"; type: "int" }
    Parameter { name: "item"; type: "QQuickItem"; isPointer: true }
    Parameter { name: "from"; type: "QPoint" }
    Parameter { name: "delta"; type: "QPoint" }