Initial commit
This commit is contained in:
commit
f38ff5fbc2
18 changed files with 1016 additions and 0 deletions
21
QtGui/QtGuiApplication.h
Normal file
21
QtGui/QtGuiApplication.h
Normal file
|
@ -0,0 +1,21 @@
|
|||
#import "QtCoreApplication.h"
|
||||
|
||||
#include <QGuiApplication>
|
||||
|
||||
@interface QtGuiApplication: QtCoreApplication
|
||||
@property (readonly) QGuiApplication *qGuiApplication;
|
||||
@property (copy) OFString *applicationDisplayName;
|
||||
@property (copy) OFString *desktopFileName;
|
||||
@property Qt::LayoutDirection layoutDirection;
|
||||
@property (readonly, copy) OFString *platformName;
|
||||
@property (readonly) QScreen *primaryScreen;
|
||||
@property bool quitOnLastWindowClosed;
|
||||
@property QIcon windowIcon;
|
||||
|
||||
- initWithQGuiApplication: (QGuiApplication*)qGuiApplication;
|
||||
- (double)devicePixelRatio;
|
||||
- (bool)isSavingSession;
|
||||
- (bool)isSessionRestored;
|
||||
- (OFString*)sessionID;
|
||||
- (OFString*)sessionKey;
|
||||
@end
|
Loading…
Add table
Add a link
Reference in a new issue