• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: NSWindow With Only Close Button?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: NSWindow With Only Close Button?


  • Subject: Re: NSWindow With Only Close Button?
  • From: Gordon Apple <email@hidden>
  • Date: Mon, 12 Jan 2009 13:13:07 -0600
  • Thread-topic: NSWindow With Only Close Button?

Set the size to zero instead.  You can do it in a window controller:

        [[[self window] standardWindowButton:NSWindowMiniaturizeButton]
setFrame:NSZeroRect];
        [[[self window] standardWindowButton:NSWindowZoomButton]
setFrame:NSZeroRect];


On 1/12/09 12:03 PM, "email@hidden"
<email@hidden> wrote:

> On Jan 12, 2009, at 2:45 AM, Jean-Daniel Dupas wrote:
>
>>
>> Le 12 janv. 09 à 01:36, Kyle Sluder a écrit :
>>
>>> On Sun, Jan 11, 2009 at 7:18 PM, Chunk 1978 <email@hidden>
>>> wrote:
>>>> i noticed the window of the OS Install Assistant of Parallels 4.0
>>>> only
>>>> has a close button in the top left corner of the window.  i didn't
>>>> know this was possible.  how is this accomplished?
>>>
>>> I don't think you can do it in Cocoa; you certainly can't do it in
>>> IB.
>>> Parallels is a Carbon app.
>>
>>
>>
>> [[myWindow standardWindowButton: NSWindowZoomButton] setHidden:YES];
>> [[myWindow standardWindowButton: NSWindowMiniaturizeButton]
>> setHidden:YES];
>
>
> The last time I tried that (and it may have changed), this results in
> tracking "holes" where those buttons were - so if you click there
> (thinking that you can drag the title bar), nothing will happen (i.e.,
> you won't be able to drag the window like expected).  So at the very
> least, on some systems, this will cause frustrating bug-like behavior.
>
>
> Glenn Andreas                      email@hidden
>   <http://www.gandreas.com/> wicked fun!
> m.o.t.e.s. | minute object twisted environment simulation

G. Apple



_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Prev by Date: didReceiveMemoryWarning doesn't release view...
  • Next by Date: Re: Disabled button looks like enabled
  • Previous by thread: Re: NSWindow With Only Close Button?
  • Next by thread: What is the equivalent of a C++ pure-virtual function in Objective-C?
  • Index(es):
    • Date
    • Thread