~mterry/+junk/u8.2

« back to all changes in this revision

Viewing changes to plugins/Unity/Launcher/Launcher.qmltypes

  • Committer: Michael Terry
  • Date: 2014-11-17 14:56:04 UTC
  • mfrom: (1317.1.118 unity8)
  • Revision ID: michael.terry@canonical.com-20141117145604-96dn9p5nwkifq2f4
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
        exports: ["Unity.Launcher/LauncherItem 0.1"]
14
14
        isCreatable: false
15
15
        exportMetaObjectRevisions: [0]
16
 
        Signal {
17
 
            name: "favoriteChanged"
18
 
            Parameter { name: "favorite"; type: "bool" }
19
 
        }
20
 
        Signal {
21
 
            name: "runningChanged"
22
 
            Parameter { name: "running"; type: "bool" }
23
 
        }
24
16
    }
25
17
    Component {
26
18
        name: "LauncherModel"
30
22
        isSingleton: true
31
23
        exportMetaObjectRevisions: [0]
32
24
        Method {
 
25
            name: "requestRemove"
 
26
            Parameter { name: "appId"; type: "string" }
 
27
        }
 
28
        Method {
33
29
            name: "get"
34
30
            type: "unity::shell::launcher::LauncherItemInterface*"
35
31
            Parameter { name: "index"; type: "int" }
49
45
            Parameter { name: "appId"; type: "string" }
50
46
        }
51
47
        Method {
52
 
            name: "requestRemove"
53
 
            Parameter { name: "appId"; type: "string" }
54
 
        }
55
 
        Method {
56
48
            name: "quickListActionInvoked"
57
49
            Parameter { name: "appId"; type: "string" }
58
50
            Parameter { name: "actionIndex"; type: "int" }
88
80
        Property { name: "recent"; type: "bool"; isReadonly: true }
89
81
        Property { name: "progress"; type: "int"; isReadonly: true }
90
82
        Property { name: "count"; type: "int"; isReadonly: true }
 
83
        Property { name: "countVisible"; type: "bool"; isReadonly: true }
91
84
        Property { name: "focused"; type: "bool"; isReadonly: true }
92
85
        Property {
93
86
            name: "quickList"
96
89
            isPointer: true
97
90
        }
98
91
        Signal {
 
92
            name: "nameChanged"
 
93
            Parameter { name: "name"; type: "string" }
 
94
        }
 
95
        Signal {
 
96
            name: "iconChanged"
 
97
            Parameter { name: "icon"; type: "string" }
 
98
        }
 
99
        Signal {
99
100
            name: "pinnedChanged"
100
101
            Parameter { name: "pinned"; type: "bool" }
101
102
        }
116
117
            Parameter { name: "count"; type: "int" }
117
118
        }
118
119
        Signal {
 
120
            name: "countVisibleChanged"
 
121
            Parameter { name: "countVisible"; type: "bool" }
 
122
        }
 
123
        Signal {
119
124
            name: "focusedChanged"
120
125
            Parameter { name: "focused"; type: "bool" }
121
126
        }