36 lines
1.2 KiB
Plaintext
36 lines
1.2 KiB
Plaintext
|
#include "StatusWindow.h"
|
||
|
|
||
|
#include <Foundation/Foundation.h>
|
||
|
#include <AppKit/NSView.h>
|
||
|
#include <AppKit/NSWindow.h>
|
||
|
#include <AppKit/NSColor.h>
|
||
|
#include <AppKit/NSToolbar.h>
|
||
|
#include <AppKit/NSButton.h>
|
||
|
#include <AppKit/AppKit.h>
|
||
|
|
||
|
void StatusWindow::removeTitleBar()
|
||
|
{
|
||
|
NSView *nsView = reinterpret_cast<NSView*>(this->winId());
|
||
|
NSWindow *window = [nsView window];
|
||
|
|
||
|
window.titlebarAppearsTransparent = true;
|
||
|
window.titleVisibility = NSWindowTitleHidden;
|
||
|
window.styleMask |= NSWindowStyleMaskFullSizeContentView;
|
||
|
NSButton* close = [window standardWindowButton:NSWindowCloseButton];
|
||
|
NSView* titleBarContainerView = close.superview.superview;
|
||
|
[titleBarContainerView setHidden:YES];
|
||
|
}
|
||
|
|
||
|
void StatusWindow::showTitleBar()
|
||
|
{
|
||
|
NSView *nsView = reinterpret_cast<NSView*>(this->winId());
|
||
|
NSWindow *window = [nsView window];
|
||
|
|
||
|
window.titlebarAppearsTransparent = true;
|
||
|
window.titleVisibility = NSWindowTitleHidden;
|
||
|
window.styleMask |= NSWindowStyleMaskFullSizeContentView;
|
||
|
NSButton* close = [window standardWindowButton:NSWindowCloseButton];
|
||
|
NSView* titleBarContainerView = close.superview.superview;
|
||
|
[titleBarContainerView setHidden:NO];
|
||
|
}
|