54 lines
1.4 KiB
Plaintext
54 lines
1.4 KiB
Plaintext
#include "statuswindow.h"
|
|
|
|
#include <QColor>
|
|
|
|
#include <QDebug>
|
|
|
|
#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::toggleFullScreen()
|
|
{
|
|
if (m_isFullScreen) {
|
|
showNormal();
|
|
} else {
|
|
showFullScreen();
|
|
}
|
|
}
|
|
|
|
bool StatusWindow::isFullScreen() const
|
|
{
|
|
return m_isFullScreen;
|
|
}
|
|
|
|
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];
|
|
}
|