RE: Windows without traffic lights
RE: Windows without traffic lights
- Subject: RE: Windows without traffic lights
- From: "Phil Barrett" <email@hidden>
- Date: Fri, 10 Aug 2001 13:34:03 +0100
Answering my own question after some judicious peeking at the hidden innards
of AppKit...
To remove the zoom button:
[ [ [ [ win _borderView ] zoomButton ] retain ] removeFromSuperview ];
repeat with minimizeButton and closeButton.
You gotta love the way Objective C lets you send arbitrary messages to
unknown objects!
Phil