Flocked
Flocked

Reputation: 1890

How to change the height of an NSWindow titlebar?

I want to change the height of an NSWindow titlebar.

Here are some examples: alt text

And…

alt text

I could use an NSToolbar, but the problem is that I can't place views very height (For example: I can't place the segmentedControl higher than in the picture because there is still the titlebar) alt text

If I remove the titlebar I can't place a NSToolbar and the window isn't movable.

Have you any ideas?

Upvotes: 10

Views: 18472

Answers (4)

bo zhang
bo zhang

Reputation: 33

There are a few new solutions based on INAppStoreWindow and without warning and log message, for anyone who wants to change the height of NStitlebar, change the position of traffic light, add an item(e.g. a NSbutton) on NStitlebar and change its position, please check below.

WAYWindow: https://github.com/weAreYeah/WAYWindow

NStitlebar_with_item: https://github.com/ZHANGneuro/NStitlebar_with_item

Upvotes: 3

Arvin
Arvin

Reputation: 2616

This is much easier than one would think. I too went on a quest to do something similar for my app.

Real App Store app: Here is the App Store app...

My App Store app look-alike: My App Store look-alike...

No disrespect to INAppStoreWindow, it is a very good implementation and solid. The only draw back I saw from it though was that there was a lot of drawing code along with hardcoded settings for the TitleBar colors which Apple can adjust at anytime.

So here is how I did it:

A) Create a standard window with a Title Bar, Close, Minimize, Shadow, Resize, Full Screen - Primary Window all set. Note: You do not need a textured window nor should you set a title

B) Next add a standard toolbar with these settings:

  • Icon Only
  • Visible at Launch - ON
  • Customizable - OFF
  • Separator - ON
  • Size - Regular

Remove all the Toolbar Items and add only these in the following order

NSSegmentControl (51 x 24) -- | Flexible Space | -- NSSearchField (150 x 25)

C) In your content View directly under the toolbar add a regular sized NSButton set like so:

  • Bordered - OFF
  • Transparent - OFF
  • Title -
  • Image -
  • Position - Text below the button
  • Font - System Small 11

Ok, pretty easy so far, right?!

In your Window Controller or app delegate.... setup IBOutlet(s) to your NSButton(s)

Note: Remember to hook up your IBOutlet in interface builder

Ok don't be scared we have to write a tiny bit of code now:

In awakeFromNib or windowDidLoad....

  1. Get the content views' superview (aka NSThemeView)
  2. Remove your button from its superView
  3. Set the frame of your button
  4. Add the button back to the theme view

So the code would look similar to this:

NSView *themeView = [self.contentView superview];
NSUInteger adj = 6;

[self.btnFeatured removeFromSuperview];
self.btnFeatured.frame = NSMakeRect( self.btnFeatured.frame.origin.x,
                              self.window.frame.size.height - self.btnFeatured.frame.size.height - adj,
                              self.btnFeatured.frame.size.width, self.btnFeatured.frame.size.height);
[themeView addSubview:self.btnFeatured];

That's it! You can use your outlet to enable/disable your button, setup a mask image when selected, enable/disable the toolbar or even hide everything and add a window title. All of this without worry if Apple changes their standard Window Titlebars.

P.S. No private frameworks were used in this posting whatsoever!

Upvotes: 23

damo
damo

Reputation: 939

INAppStoreWindow is a NSWindow subclass, it tell you how to change the height of title bar.

https://github.com/indragiek/INAppStoreWindow

http://iloveco.de/adding-a-titlebar-accessory-view-to-a-window/
This example tells you how to add buttons in the title bar.

Upvotes: 5

Eimantas
Eimantas

Reputation: 49354

You'd have to subclass NSWindow and do a custom window frame drawing. It's not only about a titlebar. It's about whole window frame (so you can, actually, put close/minimize/zoom buttons at the bottom if you wish).

A good starter is at "Cocoa with love" website.

Upvotes: 4

Related Questions