How to change the height of an NSWindow titlebar?

后端 未结 4 831
执念已碎
执念已碎 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: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!

提交回复
热议问题