История изменений
Исправление deep-purple, (текущая версия) :
В рантайме — нет.
https://stackoverflow.com/questions/582185/how-to-disable-landscape-mode-in-a...
QML(?)
transform: Rotation {
angle: 180
origin.x: root.width / 2
origin.y: root.height / 2
}
Qt(?)
QGraphicsScene *scene = new QGraphicsScene();
QGraphicsView *view = new QGraphicsView(parent);
view->setGeometry(0,0,X,Y); // actual Display size
view->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
view->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
QGraphicsProxyWidget *proxy = scene->addWidget(this);
view->setScene(scene);
view->show();
view->rotate(90);
Короче гугли: qt change screen orientation
Исправление deep-purple, :
В рантайме — нет.
https://stackoverflow.com/questions/582185/how-to-disable-landscape-mode-in-a...
QML(?)
transform: Rotation {
angle: 180
origin.x: root.width / 2
origin.y: root.height / 2
}
Исходная версия deep-purple, :