Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qiosviewcontroller.h
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3// Qt-Security score:significant reason:default
4
5#import <UIKit/UIKit.h>
6#include <QtCore/QtGlobal>
7
8QT_BEGIN_NAMESPACE
9
10class QIOSScreen;
11
12QT_END_NAMESPACE
13
14@interface QIOSViewController : UIViewController
15
16- (instancetype)initWithWindow:(UIWindow*)window;
17- (void)updateStatusBarProperties;
18- (NSArray*)keyCommands;
19- (void)handleShortcut:(UIKeyCommand*)keyCommand;
20- (void)updatePlatformScreen;
21
22
23#ifndef Q_OS_TVOS
24// UIViewController
25@property (nonatomic, assign) BOOL prefersStatusBarHidden;
26@property (nonatomic, assign) UIStatusBarAnimation preferredStatusBarUpdateAnimation;
27@property (nonatomic, assign) UIStatusBarStyle preferredStatusBarStyle;
28#endif
29
30@end