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
|
{
ApplicationName = "Ink";
ApplicationDescription = "An Example of how to use NSTextView";
ApplicationRelease = "0.1";
Authors = ("Fred Kiefer <fredkiefer@gmx.de>");
Copyright = "Copyright (c) 2000 Fred Kiefer <fredkiefer@gmx.de>";
CopyrightDescription = "This program is released under the GNU General Public License";
NSIcon = Ink_app;
NSTypes = (
{
NSName = "rtf";
NSHumanReadableName = "RTF Document";
NSUnixExtensions = ("rtf");
NSDOSExtensions = ("rtf");
NSMIMETypes = ("text/rtf");
NSIcon = FileIcon_rtf;
NSRole = Editor;
NSDocumentClass = Document;
},
{
NSName = "rtfd";
NSHumanReadableName = "RTFD Document";
NSUnixExtensions = ("rtfd");
NSDOSExtensions = ("rtfd");
NSIcon = FileIcon_rtf;
NSRole = Editor;
NSDocumentClass = Document;
},
{
NSName = "text";
NSHumanReadableName = "Text Document";
NSUnixExtensions = ("txt");
NSDOSExtensions = ("txt");
NSMIMETypes = ("text/plain");
NSIcon = FileIcon_txt;
NSRole = Editor;
NSDocumentClass = Document;
}
);
}
|