将Qt应用程序定位为横向

时间:2019-02-12 14:51:01

标签: c++ windows qt qt5.11

在Windows平台上开发基于平板电脑的qt应用程序。根据我们的需求,需要将应用程序修复为横向模式,但不能修复该问题。我们正在使用QMainWindow。

引用了一些链接来解决此问题,但没有成功。

Reference1Reference2:覆盖函数进行了尝试。

Reference3:也在我们的qt应用程序中尝试了此操作,但没有用。

下面的代码是我们的示例代码:

mainwindow.h

#include <QMainWindow>
#include <QDebug>

namespace Ui {
class MainWindow;
}

class MainWindow : public QMainWindow
{
    Q_OBJECT

public:
    explicit MainWindow(QWidget *parent = nullptr);
    ~MainWindow();

    int heightForWidth(int w) const;
    QSize sizeHint() const;

private:
    Ui::MainWindow *ui;
};

main.cpp

#include "mainwindow.h"
#include <QApplication>
#include <QVBoxLayout>
#include <QDebug>

#include "windows.h"
#include "qt_windows.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);

//    typedef BOOL (WINAPI* SETAUTOROTATION)(BOOL bEnable);

//    SETAUTOROTATION SetAutoRotation = (SETAUTOROTATION)GetProcAddress(GetModuleHandle(TEXT("user32.dll")),
//                                                                      (LPCSTR)2507);
//    if (SetAutoRotation != nullptr)
//    {
//        qDebug() << "bEnable: " << SetAutoRotation;
//        SetAutoRotation(FALSE);
//    }

//    qDebug() << "bEnable: " << SetAutoRotation;

    MainWindow w;

    w.showMaximized();
    w.show();

    return a.exec();
}

mainwindow.cpp

#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "windows.h"
#include "qt_windows.h"


MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    QSizePolicy currPolicy = this->sizePolicy();
    currPolicy.setHeightForWidth(true);
    this->setSizePolicy(currPolicy);

    ui->setupUi(this);
}

MainWindow::~MainWindow()
{
    delete ui;
}

int MainWindow::heightForWidth(int w) const
{
    return (w * 240 )/320;
}

QSize MainWindow::sizeHint() const
{
    int w = 1366;
    return QSize(w, heightForWidth(w) );
}

任何人都可以帮助我解决此问题。请让我知道以上代码是否做错任何事情。

1 个答案:

答案 0 :(得分:0)

有同样的问题,不幸的是,最好的解决方案是禁用Windows设置中的旋转。我怀疑是否有合理的方法可以从应用程序中做到这一点,但我不确定100%。 我发现的唯一其他解决方案是根据Windows旋转绘制视图(这样就可以旋转绘制视图)。

Here is how to read Windows current rotation.