How to change the height of an NSWindow titlebar?

后端 未结 4 823
执念已碎
执念已碎 2020-12-13 04:59

I want to change the height of an NSWindow titlebar.

Here are some examples: \"alt

And…

相关标签:
4条回答
  • 2020-12-13 05:39

    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.

    0 讨论(0)
  • 2020-12-13 05:47

    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!

    0 讨论(0)
  • 2020-12-13 05:47

    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

    0 讨论(0)
  • 2020-12-13 05:53

    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.

    0 讨论(0)
提交回复
热议问题