mirror of
https://github.com/jeremysrand/abCalc.git
synced 2024-11-27 05:49:44 +00:00
38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
/*
|
|
abCalcNDA.h
|
|
By: Jeremy Rand
|
|
*/
|
|
|
|
|
|
#include "types.rez"
|
|
#include "abCalcNda.defs"
|
|
|
|
|
|
resource rWindParam1 (ABCALC_WINDOW_NUM) {
|
|
$C0A5, /* wFrameBits */
|
|
nil, /* wTitle */
|
|
0, /* wRefCon */
|
|
{0,0,0,0}, /* ZoomRect */
|
|
ABCALC_LINED_COLORS, /* wColor ID */
|
|
{0,0}, /* Origin */
|
|
{0,0}, /* data size */
|
|
{0,0}, /* max height-width */
|
|
{0,0}, /* scroll ver hors */
|
|
{0,0}, /* page ver horiz */
|
|
0, /* winfoRefcon */
|
|
0, /* wInfoHeight */
|
|
{50,50,62,200}, /* wposition */
|
|
infront, /* wPlane */
|
|
nil, /* wStorage */
|
|
$0800 /* wInVerb */
|
|
};
|
|
|
|
|
|
resource rWindColor (ABCALC_LINED_COLORS) {
|
|
0x0000, /* frameColor */
|
|
0x0F00, /* titleColor */
|
|
0x020F, /* tbarColor */
|
|
0xF0F0, /* growColor */
|
|
0x00F0, /* infoColor */
|
|
};
|