2002-10-04 19:54:05 +00:00
|
|
|
#if defined(__APPLE_CC__) // compiling with gcc
|
2001-10-19 19:41:13 +00:00
|
|
|
#include <Carbon/Carbon.r>
|
2002-10-04 19:54:05 +00:00
|
|
|
#else // compiling with CodeWarrior, __MWERKS__
|
|
|
|
#include <Carbon.r>
|
2001-10-19 19:41:13 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*** FILE MENU ***/
|
|
|
|
resource 'MENU' (2001)
|
|
|
|
{
|
|
|
|
2001,
|
|
|
|
textMenuProc,
|
|
|
|
0xFFFFFFFF,
|
|
|
|
enabled,
|
|
|
|
"Rectangle Style",
|
|
|
|
{
|
|
|
|
"Bottom Right", noIcon, noKey, noMark, plain,
|
|
|
|
"Width & Height", noIcon, noKey, noMark, plain,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
resource 'xmnu' (2001, purgeable)
|
|
|
|
{
|
|
|
|
versionZero
|
|
|
|
{
|
|
|
|
{
|
|
|
|
dataItem { 'rela', kMenuNoModifiers, currScript, 0, 0, noHierID, sysFont, naturalGlyph },
|
|
|
|
dataItem { 'abso', kMenuNoModifiers, currScript, 0, 0, noHierID, sysFont, naturalGlyph }
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|