-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathInfo.plist
538 lines (538 loc) · 17.8 KB
/
Info.plist
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleDisplayName</key>
<string>User Interface Plugin</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>com.blacktree.Quicksilver.QSUIAccessPlugIn</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>User Interface Plugin</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>2.3.1</string>
<key>CFBundleVersion</key>
<string>24D</string>
<key>NSPrincipalClass</key>
<string>QSUIAccessPlugIn</string>
<key>QSActions</key>
<dict>
<key>ActivateWindow</key>
<dict>
<key>runInMainThread</key>
<true/>
<key>actionClass</key>
<string>QSUIAccessPlugIn_Action</string>
<key>actionSelector</key>
<string>activateWindow:</string>
<key>alternateAction</key>
<string>CloseWindow</string>
<key>directTypes</key>
<array>
<string>WindowsType</string>
</array>
<key>name</key>
<string>Activate Window</string>
<key>precedence</key>
<integer>3</integer>
<key>validatesObjects</key>
<false/>
</dict>
<key>CloseWindow</key>
<dict>
<key>runInMainThread</key>
<true/>
<key>actionClass</key>
<string>QSUIAccessPlugIn_Action</string>
<key>actionSelector</key>
<string>closeWindow:</string>
<key>alternateAction</key>
<string>ActivateWindow</string>
<key>directTypes</key>
<array>
<string>WindowsType</string>
</array>
<key>name</key>
<string>Close Window</string>
<key>validatesObjects</key>
<false/>
</dict>
<key>CurrentDocumentForApp</key>
<dict>
<key>runInMainThread</key>
<true/>
<key>actionClass</key>
<string>QSUIAccessPlugIn_Action</string>
<key>actionSelector</key>
<string>currentDocumentForApp:</string>
<key>directTypes</key>
<array>
<string>qs.process</string>
</array>
<key>displaysResult</key>
<true/>
<key>icon</key>
<string>Document</string>
<key>name</key>
<string>Current Document</string>
<key>validatesObjects</key>
<false/>
</dict>
<key>FocusedWindowForApp</key>
<dict>
<key>runInMainThread</key>
<true/>
<key>actionClass</key>
<string>QSUIAccessPlugIn_Action</string>
<key>actionSelector</key>
<string>focusedWindowForApp:</string>
<key>directTypes</key>
<array>
<string>qs.process</string>
</array>
<key>displaysResult</key>
<true/>
<key>name</key>
<string>Focused Window</string>
<key>validatesObjects</key>
<false/>
</dict>
<key>GetWindowsForApp</key>
<dict>
<key>runInMainThread</key>
<true/>
<key>actionClass</key>
<string>QSUIAccessPlugIn_Action</string>
<key>actionSelector</key>
<string>getWindowsForApp:</string>
<key>directTypes</key>
<array>
<string>qs.process</string>
</array>
<key>displaysResult</key>
<true/>
<key>name</key>
<string>Show Windows</string>
<key>validatesObjects</key>
<false/>
</dict>
<key>ListWindowsForApp</key>
<dict>
<key>runInMainThread</key>
<true/>
<key>actionClass</key>
<string>QSUIAccessPlugIn_Action</string>
<key>actionSelector</key>
<string>appWindows:activateWindow:</string>
<key>directTypes</key>
<array>
<string>qs.process</string>
</array>
<key>name</key>
<string>Windows…</string>
</dict>
<key>MinimizeWindow</key>
<dict>
<key>runInMainThread</key>
<true/>
<key>actionClass</key>
<string>QSUIAccessPlugIn_Action</string>
<key>actionSelector</key>
<string>minimizeWindow:</string>
<key>alternateAction</key>
<string>ZoomWindow</string>
<key>directTypes</key>
<array>
<string>WindowsType</string>
</array>
<key>name</key>
<string>Minimize Window</string>
<key>validatesObjects</key>
<false/>
</dict>
<key>QSPickMenuItemsAction</key>
<dict>
<key>runInMainThread</key>
<true/>
<key>actionClass</key>
<string>QSUIAccessPlugIn_Action</string>
<key>actionSelector</key>
<string>appMenus:pickItem:</string>
<key>directTypes</key>
<array>
<string>WindowsType</string>
<string>qs.process</string>
</array>
<key>name</key>
<string>Menu Bar Items…</string>
</dict>
<key>QSSearchMenuItemsAction</key>
<dict>
<key>actionClass</key>
<string>QSUIAccessPlugIn_Action</string>
<key>actionSelector</key>
<string>searchAppMenus:</string>
<key>directTypes</key>
<array>
<string>qs.process</string>
<string>WindowsType</string>
</array>
<key>name</key>
<string>Show Menu Items</string>
<key>runInMainThread</key>
<true/>
</dict>
<key>QSUIElementDoActionAction</key>
<dict>
<key>runInMainThread</key>
<true/>
<key>actionClass</key>
<string>QSUIAccessPlugIn_Action</string>
<key>actionSelector</key>
<string>uiElement:performAction:</string>
<key>directTypes</key>
<array>
<string>qs.ui.element</string>
</array>
<key>name</key>
<string>Perform Action…</string>
<key>validatesObjects</key>
<false/>
</dict>
<key>QSUIElementPickAction</key>
<dict>
<key>runInMainThread</key>
<true/>
<key>actionClass</key>
<string>QSUIAccessPlugIn_Action</string>
<key>actionSelector</key>
<string>pickUIElement:</string>
<key>directTypes</key>
<array>
<string>qs.ui.element</string>
</array>
<key>name</key>
<string>Select</string>
<key>validatesObjects</key>
<true/>
</dict>
<key>QSUIElementPressAction</key>
<dict>
<key>runInMainThread</key>
<true/>
<key>actionClass</key>
<string>QSUIAccessPlugIn_Action</string>
<key>actionSelector</key>
<string>pressUIElement:</string>
<key>directTypes</key>
<array>
<string>qs.ui.element</string>
</array>
<key>name</key>
<string>Press</string>
<key>precedence</key>
<integer>3</integer>
<key>validatesObjects</key>
<true/>
</dict>
<key>RaiseWindow</key>
<dict>
<key>runInMainThread</key>
<true/>
<key>actionClass</key>
<string>QSUIAccessPlugIn_Action</string>
<key>actionSelector</key>
<string>raiseWindow:</string>
<key>alternateAction</key>
<string>CloseWindow</string>
<key>directTypes</key>
<array>
<string>WindowsType</string>
</array>
<key>enabled</key>
<false/>
<key>name</key>
<string>Raise Window</string>
<key>validatesObjects</key>
<false/>
</dict>
<key>UISelectApplication</key>
<dict>
<key>runInMainThread</key>
<true/>
<key>actionClass</key>
<string>QSUIAccessPlugIn_Action</string>
<key>actionSelector</key>
<string>showWindowApplication:</string>
<key>directTypes</key>
<array>
<string>WindowsType</string>
</array>
<key>displaysResult</key>
<true/>
<key>name</key>
<string>Select Application</string>
<key>precedence</key>
<integer>1</integer>
<key>validatesObjects</key>
<false/>
</dict>
<key>ZoomWindow</key>
<dict>
<key>runInMainThread</key>
<true/>
<key>actionClass</key>
<string>QSUIAccessPlugIn_Action</string>
<key>actionSelector</key>
<string>zoomWindow:</string>
<key>alternateAction</key>
<string>MinimizeWindow</string>
<key>directTypes</key>
<array>
<string>WindowsType</string>
</array>
<key>name</key>
<string>Zoom Window</string>
<key>validatesObjects</key>
<false/>
</dict>
</dict>
<key>QSLoadImmediately</key>
<true/>
<key>QSPlugIn</key>
<dict>
<key>author</key>
<string>Blacktree, Inc.</string>
<key>categories</key>
<array>
<string>System</string>
</array>
<key>description</key>
<string>Access the menus and windows of running applications.</string>
<key>extendedDescription</key>
<string><h2>User Interface Plugin</h2>
<p>This plugin adds the ability to search for and manipulate running applications (processes), application windows, and application menu items from Quicksilver.</p>
<p>Access for assistive devices <strong>must</strong> be enabled in 'Universal Access' pane of System Preferences to use this plugin.</p>
<h3>Processes</h3>
<p>Processes represent applications which are currently running on your Mac. Any application in Quicksilver's catalog can be used as a process if that app is running. The following actions are available for processes:</p>
<ul>
<li><strong>Show Menu Items</strong> – Generates and displays a searchable list of the app's menu items.</li>
<li><strong>Show Windows</strong> – Generates and displays a list of the app's windows, searchable by window title.</li>
<li><strong>Focused Window</strong> – Fetches and displays the app's focused window – this is usually the most recently used window, and the window which would get keyboard input if you started typing.</li>
<li><strong>Current Document</strong> – Fetches and displays the file which corresponds with the document open in the app's focused window.</li>
</ul>
<p>Selecting these objects in the second pane causes the third pane to display the results:</p>
<ul>
<li><strong>Windows…</strong> – Generates a list of the app's windows, searchable by window title. Pressing return on one of these windows is equivalent to using the Activate action on it.</li>
<li><strong>Menu Bar Items…</strong> – Generates a searchable list of the app's menu items. Pressing return on one of these menu items is equivalent to using the Press action on it.</li>
</ul>
<h3>Windows</h3>
<p>Windows can also have several actions performed on them (you can view a full list in the <a href="qs://preferences#QSActionsPrefPane">Actions preferences</a> by selecting 'Application Windows' from the dropdown types list). Several of the actions also have alternate actions (which can be executed with ⌘↩), you can see these in the same place in the Actions preferences:</p>
<ul>
<li><strong>Select Application</strong> - shows the application for the selected window in Quicksilver</li>
<li><strong>Activate Window</strong> – Focuses the window, then makes all windows belonging to the app appear in front of all other windows.</li>
<li><strong>Raise</strong> – Makes the window appear in front of all other windows, without changing which app is focused.</li>
<li><strong>Close</strong> – The same as pressing the red Close button in the window's title bar.</li>
<li><strong>Minimize Window</strong> – The same as pressing the amber Minimize button in the window's title bar.</li>
<li><strong>Zoom</strong> – The same as pressing the green Zoom button in the window's title bar.</li>
<li><strong>Show Menu Items &amp; Menu Bar Items...</strong> - See above (Processes section). These actions work just the same as for processes, except they show the menu bar items for a specific window. Menu bar items may be different for each window, so this is useful for selecting items specific to one window.</li>
</ul>
<p><em>Note: The 'Close', 'Minimize' and 'Zoom' actions work with the comma trick, allowing you to manage multiple windows at once</em></p>
<h3>Menu Items</h3>
<p>Menu Items only have one action available: <strong>Press</strong>. This has the same effect as clicking the menu item.
To better indicate where Menu Items have come from, their details will show the full Menu path. For example: "Edit ▸ Find ▸ Find…"</p>
<h3>Triggers</h3>
<p>When this plugin is installed, the following triggers are available in the UI Access section of the Triggers preference pane:</p>
<ul>
<li><strong>Show All Menus</strong> – Generates and displays a searchable list of the menu items of all running apps, grouped by app.</li>
<li><strong>Show All Windows</strong> – Generates and displays a list of the windows of all running apps, searchable by window title and app name.</li>
<li><strong>Current Application</strong> – Fetches the current app, places it in the first pane of the command window, and selects the second pane of the command window.</li>
<li><strong>Current Focused Window</strong> – Fetches the current app's focused window, places it in the first pane of the command window, and selects the second pane of the command window.</li>
<li><strong>Current Document</strong> – Fetches the document open in the current app's focused window, places it in the first pane of the command window, and selects the second pane of the command window.</li>
</ul>
<h3>Proxy Objects</h3>
<p>When this plugin is installed, the following proxy objects are available in the Proxy Objects source in the Quicksilver section of the Catalog preference pane:</p>
<ul>
<li><strong>Current Focused Window</strong> – Represents the current app's focused window. The current app is whichever app currently has it's name in the menu bar. The focused window is usually the most recently used window, and the window which would get keyboard input if you started typing.</li>
<li><strong>Current Document</strong> – Represents the file which corresponds with the document open in the current app's focused window.</li>
</ul></string>
<key>icon</key>
<string>UniversalAccessPref</string>
</dict>
<key>QSRegistration</key>
<dict>
<key>QSActionProviders</key>
<dict>
<key>QSUIAccessPlugIn_Action</key>
<string>QSUIAccessPlugIn_Action</string>
</dict>
<key>QSCommands</key>
<dict>
<key>ShowAllAppMenusCommand</key>
<dict>
<key>command</key>
<dict>
<key>actionID</key>
<string>QSObjCSendMessageAction</string>
<key>directID</key>
<string>AllAppMenusMessage</string>
<key>name</key>
<string>Show All Menus</string>
</dict>
</dict>
<key>ShowAllAppWindowsCommand</key>
<dict>
<key>command</key>
<dict>
<key>actionID</key>
<string>QSObjCSendMessageAction</string>
<key>directID</key>
<string>AllAppWindowsMessage</string>
<key>name</key>
<string>Show All Windows</string>
</dict>
</dict>
</dict>
<key>QSInternalMessages</key>
<dict>
<key>AllAppMenusMessage</key>
<dict>
<key>actionClass</key>
<string>QSUIAccessPlugIn_Action</string>
<key>actionSelector</key>
<string>allAppMenus:</string>
<key>icon</key>
<string>Object</string>
<key>name</key>
<string>Show All Menus</string>
<key>runInMainThread</key>
<true/>
</dict>
<key>AllAppWindowsMessage</key>
<dict>
<key>actionClass</key>
<string>QSUIAccessPlugIn_Action</string>
<key>actionSelector</key>
<string>allAppWindows:</string>
<key>icon</key>
<string>WindowIcon</string>
<key>name</key>
<string>Show All Windows</string>
<key>runInMainThread</key>
<true/>
</dict>
</dict>
<key>QSObjectHandlers</key>
<dict>
<key>WindowsType</key>
<string>QSUIAccessPlugIn_Source</string>
<key>qs.ui.action</key>
<string>QSUIAccessPlugIn_Source</string>
<key>qs.ui.element</key>
<string>QSUIAccessPlugIn_Source</string>
</dict>
<key>QSProxies</key>
<dict>
<key>CurrentDocument</key>
<dict>
<key>icon</key>
<string>GenericDocumentIcon</string>
<key>name</key>
<string>Current Document</string>
<key>providerClass</key>
<string>QSUIAccessPlugIn_Action</string>
<key>types</key>
<array>
<string>NSFilenamesPboardType</string>
<string>Apple URL pasteboard type</string>
</array>
</dict>
<key>CurrentFocusedWindow</key>
<dict>
<key>icon</key>
<string>WindowIcon</string>
<key>name</key>
<string>Current Focused Window</string>
<key>providerClass</key>
<string>QSUIAccessPlugIn_Action</string>
<key>types</key>
<array>
<string>WindowsType</string>
</array>
</dict>
</dict>
<key>QSTriggerSets</key>
<dict>
<key>UIAccess</key>
<dict>
<key>icon</key>
<string>UniversalAccessPref</string>
<key>name</key>
<string>UI Access</string>
</dict>
</dict>
<key>QSTypeDefinitions</key>
<dict>
<key>WindowsType</key>
<dict>
<key>icon</key>
<string>WindowIcon</string>
<key>name</key>
<string>Application Windows</string>
</dict>
</dict>
</dict>
<key>QSRequirements</key>
<dict>
<key>version</key>
<string>4001</string>
</dict>
<key>QSResourceAdditions</key>
<dict>
<key>UniversalAccessPref</key>
<dict>
<key>bundle</key>
<string>com.blacktree.Quicksilver.QSUIAccessPlugIn</string>
<key>resource</key>
<string>UniversalAccessPref.tiff</string>
</dict>
<key>WindowIcon</key>
<dict>
<key>bundle</key>
<string>com.blacktree.Quicksilver.QSUIAccessPlugIn</string>
<key>resource</key>
<string>WindowIcon.png</string>
</dict>
</dict>
<key>QSTriggerAdditions</key>
<array>
<dict>
<key>ID</key>
<string>ShowAllAppWindowsCommand</string>
<key>command</key>
<string>ShowAllAppWindowsCommand</string>
<key>set</key>
<string>UI Access</string>
<key>type</key>
<string>QSHotKeyTrigger</string>
</dict>
<dict>
<key>ID</key>
<string>ShowAllAppMenusCommand</string>
<key>command</key>
<string>ShowAllAppMenusCommand</string>
<key>set</key>
<string>UI Access</string>
<key>type</key>
<string>QSHotKeyTrigger</string>
</dict>
</array>
</dict>
</plist>