-
Notifications
You must be signed in to change notification settings - Fork 1
/
FTSavePanelPatch.xml
128 lines (126 loc) · 3.5 KB
/
FTSavePanelPatch.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>nodeAttributes</key>
<dict>
<key>name</key>
<string>Save Panel</string>
<key>categories</key>
<array>
<string>Kineme FileTools</string>
</array>
<key>copyright</key>
<string>Copyright 2010 Kosada Incorporated. All rights reserved.</string>
<key>description</key>
<string>This patch pops up a file "Save" panel.
In the interests of user safety, the panel will only appear inside the Quartz Composer Editor and inside Kineme QuartzBuilder applications.
http://kineme.net/</string>
<key>aliasNames</key>
<array>
<string>File Save</string>
<string>File Dialog</string>
<string>File Window</string>
<string>File Popup</string>
<string>File Pop-up</string>
<string>Save Dialog</string>
<string>Save Window</string>
<string>Save Popup</string>
<string>Save Pop-up</string>
</array>
</dict>
<key>inputAttributes</key>
<dict>
<key>inputStartSignal</key>
<dict>
<key>name</key>
<string>Start Signal</string>
<key>description</key>
<string>Causes the Save panel to appear and receive focus.</string>
</dict>
<key>inputInitialURL</key>
<dict>
<key>name</key>
<string>Initial URL</string>
<key>description</key>
<string>A local URL specifying the initial browsing folder.</string>
</dict>
<key>inputInitialFilename</key>
<dict>
<key>name</key>
<string>Initial Filename</string>
<key>description</key>
<string>The filename initially set in the Save panel.</string>
</dict>
<key>inputTitle</key>
<dict>
<key>name</key>
<string>Title</string>
<key>description</key>
<string>Window Title</string>
</dict>
<key>inputMessage</key>
<dict>
<key>name</key>
<string>Message</string>
<key>description</key>
<string>One-line message that appears below the window title.</string>
</dict>
<key>inputPrompt</key>
<dict>
<key>name</key>
<string>Prompt</string>
<key>description</key>
<string>The caption of the default button.</string>
</dict>
<key>inputNameFieldLabel</key>
<dict>
<key>name</key>
<string>Name Field Label</string>
<key>description</key>
<string>The string displayed in front of the filename text field.</string>
</dict>
<key>inputAllowedFileTypes</key>
<dict>
<key>name</key>
<string>Allowed File Types</string>
<key>description</key>
<string>A comma-separated list of either
common file extensions (for example, "png")
or UTIs (for example, "public.image").
If empty, the user can select any file type.</string>
</dict>
<key>inputCanCreateDirectories</key>
<dict>
<key>name</key>
<string>Can Create Directories</string>
<key>description</key>
<string>Can the user create directories in the Save panel?</string>
</dict>
</dict>
<key>outputAttributes</key>
<dict>
<key>outputOKSignal</key>
<dict>
<key>name</key>
<string>OK Signal</string>
<key>description</key>
<string>Outputs true when the user successfully completes the Open panel.</string>
</dict>
<key>outputCancelSignal</key>
<dict>
<key>name</key>
<string>Cancel Signal</string>
<key>description</key>
<string>Outputs true when the user cancels the Open panel.</string>
</dict>
<key>outputSelectedURL</key>
<dict>
<key>name</key>
<string>Selected URL</string>
<key>description</key>
<string>The URL the user has selected.</string>
</dict>
</dict>
</dict>
</plist>