-
Notifications
You must be signed in to change notification settings - Fork 4
/
components.api
1840 lines (1840 loc) · 65.1 KB
/
components.api
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
Ubuntu.Components.AbstractButton 1.0 0.1: ActionItem
property bool hovered
signal clicked()
signal pressAndHold()
property bool pressed
Ubuntu.Components.AbstractButton 1.3 UCAbstractButton: ActionItem
readonly property bool hovered
signal clicked()
signal pressAndHold()
readonly property bool pressed
readonly property UCMargins sensingMargins
Ubuntu.Components.Action 1.3 1.0 0.1 UCAction: QtObject
property bool checkable 1.3
property bool checked 1.3
property string description
property bool enabled
property ExclusiveGroup exclusiveGroup 1.3
property string iconName
property url iconSource
property Component itemHint
property string keywords
signal triggered(var value)
signal toggled(bool value) 1.3
function trigger(var value)
function trigger()
property string name
property Type parameterType
property var shortcut 1.3
property string text
property bool visible
Ubuntu.Components.ActionBar 1.3: StyledItem
property list<Action> actions
property Component delegate
property int numberOfSlots
Ubuntu.Components.Styles.ActionBarStyle 1.3: Item
property color backgroundColor
readonly property ActionItemProperties buttons
property Component defaultDelegate
property int defaultNumberOfSlots
property string overflowIconName
property url overflowIconSource
property string overflowText
Ubuntu.Components.ActionContext 1.0 0.1 UCActionContext: QtObject
default property list<Action> actions
property bool active
function addAction(Action action)
function removeAction(Action action)
Ubuntu.Components.ActionItem 1.0 0.1 UCActionItem: StyledItem
property Action action
property string iconName
property url iconSource
signal triggered(var value)
function trigger(var value)
function trigger()
property string text
Ubuntu.Components.Styles.ActionItemProperties 1.3: QtObject
property color backgroundColor
property color disabledBackgroundColor
property color disabledForegroundColor
property color foregroundColor
property color pressedBackgroundColor
property color pressedForegroundColor
Ubuntu.Components.ActionList 1.0 0.1: QtObject
property list<Action> actions
default property list<Action> children
Ubuntu.Components.ActionList 1.3 ActionList: QtObject
property list<Action> actions
default property list<Action> children
signal added(Action action)
signal removed(Action action)
function addAction(Action action)
function removeAction(Action action)
Ubuntu.Components.ActionManager 1.0 0.1 UCActionManager: QtObject
default property list<Action> actions
readonly property ActionContext globalContext
property list<ActionContext> localContexts
signal quit()
function addAction(Action action)
function removeAction(Action action)
function addLocalContext(ActionContext context)
function removeLocalContext(ActionContext context)
Ubuntu.Components.Popups.ActionSelectionPopover 1.0 0.1: Popover
property var actions
property Component delegate
property Item target
Ubuntu.Components.Popups.ActionSelectionPopover 1.3: Popover
property var actions
property Component delegate
property Item target
Ubuntu.Components.ActivityIndicator 1.0 0.1: AnimatedItem
property bool onScreen
property bool running
Ubuntu.Components.ActivityIndicator 1.3: AnimatedItem
property bool onScreen
property bool running
Ubuntu.Components.AdaptivePageLayout 1.3: PageTreeNode
property bool asynchronous
readonly property int columns
property list<PageColumnsLayout> layouts
function var addPageToCurrentColumn(var sourcePage, var page, var properties)
function var addPageToNextColumn(var sourcePage, var page, var properties)
function var removePages(var page)
property Page primaryPage
property var primaryPageSource
Ubuntu.Components.Alarm 1.0 0.1 UCAlarm: QtObject
property QDateTime date
property DaysOfWeek daysOfWeek
property bool enabled
readonly property int error
property string message
signal statusChanged(Operation operation)
function save()
function cancel()
function reset()
property url sound
readonly property Status status
property AlarmType type
Ubuntu.Components.AlarmModel 1.0 0.1 UCAlarmModel: QAbstractListModel
readonly property int count
function refresh() 1.0
function Alarm get(int index)
Ubuntu.Components.AlarmType: Enum
OneTime
Repeating
Ubuntu.Metrics.ApplicationMonitor 1.0: QtObject singleton
property bool logging
property LoggingFilters loggingFilter
function bool logEvent(Event event)
property bool overlay
property int processUpdateInterval
Ubuntu.Components.Argument 1.0 0.1 UCArgument: QtObject
property string help
function var at(int i)
property string name
property bool required
property QStringList valueNames
Ubuntu.Components.Arguments 1.0 0.1 UCArguments: QtObject
default property list<Argument> arguments
property Argument defaultArgument
readonly property bool error
readonly property string errorMessage
function printUsage()
function quitWithError(string errorMessage)
function quitWithError()
readonly property QQmlPropertyMap values
Ubuntu.Components.Aspect: Enum
DropShadow
Flat
Inset
Ubuntu.Components.BackgroundMode: Enum
SolidColor
VerticalGradient
Ubuntu.Components.ListItems.Base 1.0 0.1: Empty
property string fallbackIconName
property url fallbackIconSource
property var icon
property bool iconFrame
property bool progression
Ubuntu.Components.ListItems.Base 1.3: Empty
property string fallbackIconName
property url fallbackIconSource
property var icon
property bool iconFrame
property bool progression
Ubuntu.Components.BottomEdge 1.3 UCBottomEdge: StyledItem
readonly property BottomEdgeRegion activeRegion
property Component contentComponent
readonly property Item contentItem
property url contentUrl
readonly property DragDirection dragDirection
readonly property double dragProgress
readonly property BottomEdgeHint hint
signal dragProgressChanged(double dragProgress)
signal dragDirectionChanged(DragDirection direction)
signal statusChanged(Status status)
signal contentChanged(url url)
signal contentComponentChanged(Component component)
signal activeRegionChanged(BottomEdgeRegion activeRegion)
signal commitStarted()
signal commitCompleted()
signal collapseStarted()
signal collapseCompleted()
function commit()
function collapse()
property bool preloadContent
property list<BottomEdgeRegion> regions
readonly property Status status
Ubuntu.Components.BottomEdgeHint 1.3 UCBottomEdgeHint: ActionItem
property int deactivateTimeout
property Flickable flickable
signal clicked()
property Status status
readonly property SwipeArea swipeArea
Ubuntu.Components.BottomEdgeRegion 1.3 UCBottomEdgeRegion: QtObject
property Component contentComponent
property url contentUrl
property bool enabled
property double from
signal contentChanged(url url)
signal contentComponentChanged(Component component)
signal entered()
signal exited()
signal dragEnded()
property double to
Ubuntu.Components.Styles.BottomEdgeStyle 1.3 UCBottomEdgeStyle: Item
property Item contentItem
property Item panel
property Animation panelAnimation
property double revealThreshold
Ubuntu.Components.Button 1.0 0.1: AbstractButton
property color color
property QFont font
property Gradient gradient
property string iconPosition
Ubuntu.Components.Button 1.1: AbstractButton
property color color
property QFont font
property Gradient gradient
property string iconPosition
property color strokeColor
Ubuntu.Components.Button 1.3: AbstractButton
property color color
property QFont font
property Gradient gradient
property string iconPosition
property color strokeColor
Ubuntu.Components.ListItems.Caption 1.0 0.1: Item
property string text
Ubuntu.Components.ListItems.Caption 1.3: Item
property string text
Ubuntu.Components.Captions 1.2: ColumnLayout
property int captionStyle
readonly property Label subtitle
readonly property Label title
Ubuntu.Components.Captions 1.3: ColumnLayout
property int captionStyle
readonly property Label subtitle
readonly property Label title
Ubuntu.Components.CaptionsStyle: Enum
SummaryCaptionStyle
TitleCaptionStyle
Ubuntu.Components.CheckBox 1.0 0.1: AbstractButton
property bool checked
Ubuntu.Components.CheckBox 1.3: AbstractButton
property bool checked
Ubuntu.Components.Clipboard 1.0 0.1: QtObject singleton
readonly property MimeData data
function push(var data)
function clear()
function MimeData newData()
Ubuntu.Components.ColorUtils 1.0 0.1: QtObject singleton
function double luminance(color color)
Ubuntu.Components.ComboButton 1.1: Button
property double collapsedHeight
default property list<QtObject> comboList
readonly property double comboListHeight
property color dropdownColor
property bool expanded
property double expandedHeight
Ubuntu.Components.ComboButton 1.3: AbstractButton
property double collapsedHeight
property color color
default property list<QtObject> comboList
readonly property double comboListHeight
property color dropdownColor
property bool expanded
property double expandedHeight
property QFont font
property Gradient gradient
property string iconPosition
property color strokeColor
Ubuntu.Components.Styles.ComboButtonStyle 1.1: Item
property Item comboListHolder
property double comboListMargin
property Item comboListPanel
property color defaultColor
property color defaultDropdownColor
property QFont defaultFont
property Gradient defaultGradient
property double dropDownSeparatorWidth
property double dropDownWidth
Ubuntu.Components.Popups.ComposerSheet 1.0 0.1: SheetBase
signal cancelClicked()
signal confirmClicked()
Ubuntu.Components.Popups.ComposerSheet 1.3: SheetBase
signal cancelClicked()
signal confirmClicked()
Ubuntu.Layouts.ConditionalLayout 1.0 0.1 ULConditionalLayout: QtObject
default property Component layout
property string name
property QQmlBinding when
Ubuntu.PerformanceMetrics.CpuUsage 1.0 0.1 UPMCpuUsage: Item
readonly property UPMGraphModel graphModel
property int period
property int samplingInterval
Ubuntu.Components.CrossFadeImage 1.0 0.1 CrossFadeImage10: Item
property int fadeDuration
property int fillMode
readonly property bool running
property url source
property QSizeF sourceSize
readonly property int status
Ubuntu.Components.CrossFadeImage 1.1 CrossFadeImage11: Item
property int fadeDuration
property string fadeStyle
property int fillMode
readonly property bool running
property url source
property QSizeF sourceSize
readonly property int status
Ubuntu.Components.CrossFadeImage 1.3: Item
property int fadeDuration
property string fadeStyle
property int fillMode
readonly property bool running
property url source
property QSizeF sourceSize
readonly property int status
Ubuntu.Components.Pickers.DatePicker 1.0 0.1: StyledItem
property QDateTime date
readonly property int day
readonly property int hours
property var locale
property QDateTime maximum
property QDateTime minimum
readonly property int minutes
property string mode
readonly property int month
readonly property bool moving
readonly property int seconds
readonly property int week
readonly property int year
Ubuntu.Components.Pickers.DatePicker 1.3: StyledItem
property QDateTime date
readonly property int day
readonly property int hours
property var locale
property QDateTime maximum
property QDateTime minimum
readonly property int minutes
property string mode
readonly property int month
readonly property bool moving
readonly property int seconds
readonly property int week
readonly property int year
Ubuntu.Components.DateUtils 0.1 1.0 1.3
Ubuntu.Components.DayOfWeek: Enum
AutoDetect
Daily
Friday
Monday
Saturday
Sunday
Thursday
Tuesday
Wednesday
Ubuntu.Components.DaysOfWeek: Flag
AutoDetect
Daily
Friday
Monday
Saturday
Sunday
Thursday
Tuesday
Wednesday
Ubuntu.Components.Popups.DefaultSheet 1.0 0.1: SheetBase
property bool doneButton
signal closeClicked()
signal doneClicked()
Ubuntu.Components.Popups.DefaultSheet 1.3: SheetBase
property bool doneButton
signal closeClicked()
signal doneClicked()
Ubuntu.Components.Pickers.Dialer 1.0 0.1: StyledItem
property list<QtObject> centerContent
readonly property Item centerItem
property double handSpace
readonly property var hands
property double maximumValue
signal handUpdated(var hand)
property double minimumValue
property double size
Ubuntu.Components.Pickers.Dialer 1.3: StyledItem
property list<QtObject> centerContent
readonly property Item centerItem
property double handSpace
readonly property var hands
property double maximumValue
signal handUpdated(var hand)
property double minimumValue
property double size
Ubuntu.Components.Pickers.DialerHand 1.0 0.1: StyledItem
readonly property Dialer dialer
property DialerHandGroup hand
readonly property int index
default property list<QtObject> overlay
property double value
Ubuntu.Components.Pickers.DialerHand 1.3: StyledItem
readonly property Dialer dialer
property DialerHandGroup hand
readonly property int index
default property list<QtObject> overlay
property double value
Ubuntu.Components.Popups.Dialog 1.0 0.1: PopupBase
property Item caller
property double callerMargin
default property list<QtObject> contents
property double edgeMargins
property bool modal
property Item pointerTarget
property string text
property string title
Ubuntu.Components.Popups.Dialog 1.3: PopupBase
property Item caller
property double callerMargin
property double contentHeight
property double contentWidth
default property list<QtObject> contents
property double edgeMargins
property bool modal
property Component style
property string styleName
property string text
property ThemeSettings theme
property string title
Ubuntu.Components.ListItems.Divider 1.0 0.1: QQuickImageBase
Ubuntu.Components.ListItems.Divider 1.3: QQuickImageBase
Ubuntu.Components.DragDirection: Enum
Downwards
Undefined
Upwards
Ubuntu.Components.ListItems.Empty 1.0 0.1: AbstractButton
property list<Item> backgroundIndicator
property bool confirmRemoval
readonly property ThinDivider divider
property bool highlightWhenPressed
signal itemRemoved()
function var cancelItemRemoval()
property bool removable
property bool selected
property bool showDivider
readonly property string swipingState
readonly property bool waitingConfirmationForRemoval
Ubuntu.Components.ListItems.Empty 1.3: AbstractButton
property list<Item> backgroundIndicator
property bool confirmRemoval
readonly property ThinDivider divider
property bool highlightWhenPressed
signal itemRemoved()
function var cancelItemRemoval()
property bool removable
property bool selected
property bool showDivider
readonly property string swipingState
readonly property bool waitingConfirmationForRemoval
Ubuntu.Components.Error: Enum
AdaptationError
EarlyDate
InvalidDate
InvalidEvent
NoDaysOfWeek
NoError
OneTimeOnMoreDays
OperationPending
Ubuntu.Metrics.Event: Enum
UserInterfaceReady
Ubuntu.Components.ExclusiveGroup 1.3 ExclusiveGroup: ActionList
readonly property QtObject current
function bindCheckable(QtObject object)
function unbindCheckable(QtObject object)
Ubuntu.Components.ListItems.Expandable 1.0 0.1: Empty
property bool collapseOnClick
property double collapsedHeight
property bool expanded
property double expandedHeight
Ubuntu.Components.ListItems.Expandable 1.3: Empty
property bool collapseOnClick
property double collapsedHeight
property bool expanded
property double expandedHeight
Ubuntu.Components.ListItems.ExpandablesColumn 1.0 0.1: Flickable
readonly property var expandedItem
function var expandItem(var item)
function var collapse()
Ubuntu.Components.ListItems.ExpandablesColumn 1.3: Flickable
readonly property var expandedItem
function var expandItem(var item)
function var collapse()
Ubuntu.Components.ExpansionFlag: Enum
CollapseOnOutsidePress
Exclusive
UnlockExpanded
Ubuntu.Components.FillMode: Enum
Pad
PreserveAspectCrop
PreserveAspectFit
Stretch
Ubuntu.Components.FilterBehavior 1.1: QtObject
property QRegExp pattern
property string property
Ubuntu.Components.Frequency: Enum
Disabled
Hour
Minute
Relative
Second
Ubuntu.Components.HAlignment: Enum
AlignHCenter
AlignLeft
AlignRight
Ubuntu.Components.Haptics 1.0 0.1: QtObject singleton
readonly property QtObject effect
readonly property bool enabled
function play(var customEffect)
function play()
Ubuntu.Components.ListItems.Header 1.0 0.1 ListItemHeader: Item
property string text
Ubuntu.Components.Header 1.0 0.1: AppHeader
property string _for_autopilot
property var actions
property bool animate
property PageHeadConfiguration config
property Item contents
property color dividerColor
property Flickable flickable
function var show()
function var hide()
readonly property bool moving
property var pageStack
property color panelColor
property var tabsModel
property string title
property bool useDeprecatedToolbar
Ubuntu.Components.ListItems.Header 1.3 ListItemHeader: Item
property string text
Ubuntu.Components.Header 1.3 UCHeader: StyledItem
property bool automaticHeight
property bool exposed
property Flickable flickable
readonly property bool moving
Ubuntu.Components.Icon 1.0 0.1: Item
property color color
property color keyColor
property string name
Ubuntu.Components.Icon 1.1: Icon
property url source
Ubuntu.Components.Icon 1.3: Item
property bool asynchronous
property color color
property color keyColor
property string name
property url source
Ubuntu.Components.InverseMouse 1.0 0.1 UCInverseMouse: Mouse
Ubuntu.Components.InverseMouseArea 1.0 0.1 InverseMouseAreaType: MouseArea
function bool contains(QPointF point)
property Item sensingArea
property bool topmostItem
Ubuntu.Layouts.ItemLayout 1.0 0.1 ULItemLayout: Item
property string item
Ubuntu.Components.ListItems.ItemSelector 1.0 0.1: Empty
property bool colourImage
property double containerHeight
property bool currentlyExpanded
property Component delegate
property bool expanded
readonly property double itemHeight
signal delegateClicked(int index)
signal expansionCompleted()
property var model
property bool multiSelection
property int selectedIndex
Ubuntu.Components.ListItems.ItemSelector 1.3: Empty
property bool colourImage
property double containerHeight
property bool currentlyExpanded
property Component delegate
property bool expanded
readonly property double itemHeight
signal delegateClicked(int index)
signal expansionCompleted()
property var model
property bool multiSelection
property int selectedIndex
Ubuntu.Components.Label 1.0 0.1: Text
property string fontSize
Ubuntu.Components.Label 1.3 UCLabel: Text
property string fontSize
property TextSize textSize
Ubuntu.Layouts.Layouts 1.0 0.1 ULLayouts: Item
readonly property string currentLayout
property list<ConditionalLayout> layouts
Ubuntu.Components.ListItem 1.3 1.2 UCListItem: StyledItem
property Action action
property color color
readonly property Item contentItem
readonly property bool contentMoving
readonly property UCListItemDivider divider
property bool dragMode
readonly property bool dragging
readonly property UCListItemExpansion expansion 1.3
property color highlightColor
readonly property bool highlighted
property ListItemActions leadingActions
property list<Item> listItemChildren
default property list<QtObject> listItemData
signal clicked()
signal pressAndHold()
signal contentMovementStarted()
signal contentMovementEnded()
property bool selectMode
property bool selected
property bool swipeEnabled 1.3
readonly property bool swiped 1.3
property ListItemActions trailingActions
Ubuntu.Components.ListItemActions 1.2 UCListItemActions: QtObject
property list<Action> actions
default property list<QtObject> data
property Component delegate
Ubuntu.Components.ListItemDrag 1.2: QtObject
property bool accept
readonly property int from
property int maximumIndex
property int minimumIndex
readonly property Status status
readonly property int to
Ubuntu.Components.ListItemLayout 1.3 UCListItemLayout: SlotsLayout
readonly property Label subtitle
readonly property Label summary
readonly property Label title
Ubuntu.Components.Styles.ListItemStyle 1.3 1.2 UCListItemStyle: Item
readonly property bool animatePanels
property Item dragPanel
property PropertyAnimation dropAnimation
readonly property Flickable flickable 1.3
readonly property int listItemIndex 1.3
function swipeEvent(SwipeEvent event)
function rebound()
property Animation snapAnimation
Ubuntu.Components.LiveTimer 1.3 LiveTimer: QtObject
property Frequency frequency
signal trigger()
property QDateTime relativeTime
Ubuntu.Metrics.LoggingFilters: Flag
AllEvents
FrameEvent
GenericEvent
ProcessEvent
WindowEvent
Ubuntu.Components.MainView 1.0 0.1: MainViewBase
property bool automaticOrientation
default property list<QtObject> contentsItem
property bool useDeprecatedToolbar
Ubuntu.Components.MainView 1.2 MainView12: MainViewBase
property bool automaticOrientation
default property list<QtObject> contentsItem
Ubuntu.Components.MainView 1.3: MainViewBase
property bool automaticOrientation
default property list<QtObject> contentsItem
Ubuntu.Components.MainViewBase 1.3 UCMainViewBase: PageTreeNode
readonly property PopupContext actionContext
readonly property ActionManager actionManager
property list<Action> actions
property bool anchorToKeyboard
property string applicationName
property color backgroundColor
property color footerColor
property color headerColor
signal applicationNameChanged(string applicationName)
signal anchorToKeyboardChanged(bool anchorToKeyboard)
signal headerColorChanged(color headerColor)
signal backgroundColorChanged(color backgroundColor)
signal footerColorChanged(color footerColor)
signal actionManagerChanged(ActionManager actionManager)
signal actionContextChanged(PopupContext actionContext)
Ubuntu.Components.MathUtils 1.0 0.1: QtObject singleton
function double clamp(double x, double min, double max)
function double lerp(double delta, double from, double to)
function double projectValue(double x, double xmin, double xmax, double ymin, double ymax)
function double clampAndProject(double x, double xmin, double xmax, double ymin, double ymax)
Ubuntu.Components.MimeData 1.0 0.1 QQuickMimeData: QtObject
property color color
property var data
readonly property QStringList formats
property string html
property string text
property list<url> urls
Ubuntu.Components.Mouse 1.0 0.1 UCMouse: QtObject
readonly property Qt.MouseButtons acceptedButtons
property int clickAndHoldThreshold
property bool enabled
property list<Item> forwardTo
readonly property bool hoverEnabled
property bool ignoreSynthesizedEvents
signal pressed(QQuickMouseEvent mouse, Item host)
signal released(QQuickMouseEvent mouse, Item host)
signal clicked(QQuickMouseEvent mouse, Item host)
signal pressAndHold(QQuickMouseEvent mouse, Item host)
signal doubleClicked(QQuickMouseEvent mouse, Item host)
signal positionChanged(QQuickMouseEvent mouse, Item host)
signal entered(QQuickMouseEvent event, Item host)
signal exited(QQuickMouseEvent event, Item host)
property Priority priority
Ubuntu.Test.MouseTouchAdaptor 1.0: QtObject singleton
property bool enabled
signal enabledChanged(bool value)
Ubuntu.Components.ListItems.MultiValue 1.0 0.1: Base
property var values
Ubuntu.Components.ListItems.MultiValue 1.3: Base
property var values
Ubuntu.Components.Object 1.0 0.1: QtObject
default property list<QtObject> children
Ubuntu.Components.Operation: Enum
Canceling
NoOperation
Reseting
Saving
Ubuntu.Components.OptionSelector 1.0 0.1: Empty
property bool colourImage
property double containerHeight
property bool currentlyExpanded
property Component delegate
property bool expanded
readonly property double itemHeight
signal delegateClicked(int index)
signal expansionCompleted()
property var model
property bool multiSelection
property int selectedIndex
Ubuntu.Components.OptionSelector 1.3: Empty
property bool colourImage
property double containerHeight
readonly property int count
property bool currentlyExpanded
property Component delegate
property bool expanded
readonly property double itemHeight
signal delegateClicked(int index)
signal expansionCompleted()
property var model
property bool multiSelection
property int selectedIndex
Ubuntu.Components.OptionSelectorDelegate 1.0 0.1: Empty
property color assetColour
property bool colourImage
property bool constrainImage
readonly property string fragColourShader
property url icon
readonly property ListView listView
property string subText
Ubuntu.Components.OptionSelectorDelegate 1.3: Empty
property color assetColour
property bool colourImage
property bool constrainImage
readonly property string fragColourShader
property url icon
readonly property ListView listView
property string subText
Ubuntu.Components.OrientationHelper 1.0 0.1: Item
property bool anchorToKeyboard
property bool automaticOrientation
property int orientationAngle
readonly property bool rotating
property bool transitionEnabled
Ubuntu.Components.OrientationHelper 1.3: Item
property bool anchorToKeyboard
property bool automaticOrientation
property int orientationAngle
readonly property bool rotating
property bool transitionEnabled
Ubuntu.Components.Page 1.0 0.1 Page10: PageTreeNode
property list<Action> actions
property Flickable flickable
property string title
property Item tools
Ubuntu.Components.Page 1.1 Page11: Page10
readonly property PageHeadConfiguration head
Ubuntu.Components.Page 1.3: PageTreeNode
readonly property ActionContext actionContext
property Flickable flickable
readonly property PageHeadConfiguration head
property Item header
property string title
Ubuntu.Components.PageColumn 1.3: QtObject
property bool fillWidth
property double maximumWidth
property double minimumWidth
property double preferredWidth
Ubuntu.Components.PageColumnsLayout 1.3: QtObject
default property list<PageColumn> data
property bool when
Ubuntu.Components.PageHeadConfiguration 1.1: Object
property list<Action> actions
property Action backAction
property Item contents
property color foregroundColor
property string preset
readonly property PageHeadSections sections
Ubuntu.Components.PageHeadConfiguration 1.3: Object
property list<Action> actions
property Action backAction
property Item contents
property Flickable flickable
property color foregroundColor
property bool locked
property string preset
readonly property PageHeadSections sections
property string title
property bool visible
Ubuntu.Components.PageHeadSections 1.1: QtObject
property bool enabled
property var model
property int selectedIndex
Ubuntu.Components.PageHeadSections 1.3: QtObject
property list<Action> actions
property bool enabled
property var model
property int selectedIndex
Ubuntu.Components.PageHeadState 1.1: State
property list<Action> actions
property Action backAction
property Item contents
property PageHeadConfiguration head
Ubuntu.Components.PageHeadState 1.3: State
property list<Action> actions
property Action backAction
property Item contents
property PageHeadConfiguration head
Ubuntu.Components.Styles.PageHeadStyle 1.1: Item
property double contentHeight
property string fontSize
property int fontWeight
property int maximumNumberOfActions
property url separatorBottomSource
property url separatorSource
property color textColor
property double textLeftMargin
Ubuntu.Components.Styles.PageHeadStyle 1.3: Item
property double contentHeight
property string fontSize
property int fontWeight
property int maximumNumberOfActions
property url separatorBottomSource
property url separatorSource
property color textColor
property double textLeftMargin
property int textSize
Ubuntu.Components.PageHeader 1.3: Header
property Item contents
property Item extension
readonly property ActionBar leadingActionBar
property list<Action> navigationActions
readonly property Sections sections
property string subtitle
property string title
readonly property ActionBar trailingActionBar
Ubuntu.Components.Styles.PageHeaderStyle 1.3: Item
property color backgroundColor
readonly property ActionItemProperties buttons
property double contentHeight
property Component defaultActionDelegate
property color disabledForegroundColor
property color dividerColor
property color foregroundColor
property color subtitleColor
property Component subtitleComponent
property Component titleComponent
Ubuntu.Components.PageStack 1.0 0.1: PageTreeNode
property Item currentPage
property int depth
function var push(var page, var properties)
function var pop()
function var clear()
Ubuntu.Components.PageStack 1.3: PageTreeNode
property Item currentPage
property int depth
function var push(var page, var properties)
function var pop()
function var clear()
Ubuntu.Components.PageTreeNode 1.3 UCPageTreeNode: StyledItem
property bool active
readonly property Item activeLeafNode
property bool isLeaf
signal isLeafChanged(bool isLeaf)
signal activeChanged(bool active)
signal parentNodeChanged(PageTreeNode parentNode)
signal pageStackChanged(Item pageStack)
signal activeLeafNodeChanged(Item activeLeafNode)
signal propagatedChanged(QtObject propagated)
signal toolbarChanged(Item toolbar)
signal isPageTreeNodeChanged(bool isPageTreeNode)
function dumpNodeTree()
property Item pageStack
property PageTreeNode parentNode
property Item toolbar
Ubuntu.Components.Themes.Palette 0.1: QtObject
property PaletteValues normal
property PaletteValues selected
Ubuntu.Components.Themes.Palette 1.3: QtObject
property PaletteValues disabled
property PaletteValues focused
property PaletteValues highlighted
property PaletteValues normal
property PaletteValues selected
property PaletteValues selectedDisabled
Ubuntu.Components.Themes.PaletteValues 0.1: QtObject
property color background
property color backgroundText
property color base
property color baseText
property color field
property color fieldText
property color foreground
property color foregroundText
property color overlay
property color overlayText
property color selection
Ubuntu.Components.Themes.PaletteValues 1.3: QtObject
property color activity
property color activityText
property color background
property color backgroundSecondaryText
property color backgroundTertiaryText
property color backgroundText
property color base
property color baseText
property color field
property color fieldText
property color focus
property color focusText
property color foreground
property color foregroundText
property color negative
property color negativeText
property color overlay
property color overlaySecondaryText
property color overlayText
property color position
property color positionText
property color positive
property color positiveText
property color raised
property color raisedSecondaryText
property color raisedText
property color selection
property color selectionText
Ubuntu.Components.Panel 1.0 0.1: Item
property int align
property bool animate
readonly property bool animating
default property list<QtObject> contents
property int hideTimeout
property double hintSize
property bool locked
function var open()
function var close()
property bool opened
readonly property double position
readonly property bool pressed
property double triggerSize
Ubuntu.Components.Panel 1.3: Item
property int align
property bool animate
readonly property bool animating
default property list<QtObject> contents
property int hideTimeout
property double hintSize
property bool locked
function var open()
function var close()
property bool opened
readonly property double position
readonly property bool pressed
property double triggerSize
Ubuntu.PerformanceMetrics.PerformanceOverlay 1.0 0.1: Item
property bool active
Ubuntu.Components.Pickers.Picker 1.0 0.1: StyledItem
property bool circular
property Component delegate
property bool live
function var positionViewAtIndex(var index)
property var model
readonly property bool moving
property int selectedIndex
Ubuntu.Components.Pickers.Picker 1.3: StyledItem
property bool circular
property Component delegate
property double itemHeight
property bool live
function var positionViewAtIndex(var index)
property var model
readonly property bool moving
property int selectedIndex
Ubuntu.Components.Pickers.PickerDelegate 1.0 0.1: AbstractButton
readonly property Picker picker
Ubuntu.Components.Pickers.PickerDelegate 1.3: AbstractButton
readonly property Picker picker
Ubuntu.Components.Pickers.PickerPanel 1.0 0.1: Object singleton
function var openDatePicker(var caller, var property, var mode)