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
|
{
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;
CFBundleIdentifier = org.gnustep.Ink;
NSServices = (
{
NSMenuItem = { default = "Ink/Open Selection"; };
NSMessage = openSelection;
NSPortName = Ink;
NSSendTypes = (
NSStringPboardType,
NSRTFPboardType,
NSRTFDPboardType
);
},
{
NSMenuItem = { default = "Ink/Open File"; };
NSMessage = openFile;
NSPortName = Ink;
NSSendTypes = (
NSStringPboardType,
NSFilenamesPboardType
);
}
);
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;
}
);
}
|