gpt4 book ai didi

qt4 - 横向模式损坏,显示不正确

转载 作者:行者123 更新时间:2023-12-04 22:34:13 25 4
gpt4 key购买 nike

大约一个月前,我开始了一个废弃的 Qt 应用程序的开发。它几乎完成了,但我正面临一个我无法修复的错误。当我模拟应用程序时,一切正常,无论是纵向还是横向。但是,当我在运行 nokia belle refresh (Qt 4.8) 的诺基亚 E7-00 上安装该应用程序时,横向模式中断。有什么解决办法吗?我找到了 1 个描述类似问题的主题,但没有找到真正的解决方案。

main.cpp中关于QmlApplicationViewer的代码:

QScopedPointer<QmlApplicationViewer> tQmlApplicationViewer(QmlApplicationViewer::create());
tQmlApplicationViewer->setResizeMode(QDeclarativeView::SizeRootObjectToView);

// Load the QML entrypoint
tQmlApplicationViewer->setMainQmlFile(QLatin1String("qml/BeTrains/main.qml"));

tQmlApplicationViewer->showFullScreen();

main.qml中的代码

import QtQuick 1.1
import com.nokia.symbian 1.1
import com.nokia.extras 1.1
import "pages"
import "components"
import "js/utils.js" as Utils
import "js/storage.js" as Storage
import QtQuick 1.0

Window{
id: window


property string __schemaIdentification: "2"

Component.onCompleted: {
Storage.initialize()
}

//
// Window structure
//

PageStackWindow {
id: pagestackwindow1
initialPage: mainPage
showStatusBar: true
showToolBar: true


onRotationChanged: console.log("rotated!")
Page {
id: mainPage
// orientationLock: PageOrientation.LockPortrait
tools: toolBarLayout

TabGroup {
id: tabGroup
currentTab: liveboardStack
anchors.fill: parent

PageStack {
id: liveboardStack
Component.onCompleted: liveboardStack.push(liveboardPage)
}

PageStack {
id: travelStack
Component.onCompleted: travelStack.push(travelPage)
}


}
}

}


//
// Toolbar
//

ToolBarLayout {
id: toolBarLayout

// Back buton
ToolButton {
property bool closeButton: tabGroup.currentTab.depth <= 1
flat: true
iconSource: closeButton ? "icons/close.svg" : "toolbar-back"
onClicked: closeButton ? Qt.quit() : tabGroup.currentTab.pop();
}

// Tab bar

ButtonRow {
TabButton { id: tabBtnLiveboard; tab: liveboardStack; iconSource: "toolbar-list" }
TabButton {id:tabBtnTravel;tab: travelStack; iconSource: "toolbar-search" }
}

// Menu
ToolButton {
iconSource: "toolbar-menu"
onClicked: {
if (!window.menu)
window.menu = Utils.loadObjectByComponent(menuComponent, window)
window.menu.open()
}
}

}


//
// Objects
//

// Statically loaded objects
property variant liveboardPage: LiveboardPage {}
property variant travelPage: TravelPage {}

// Dynamically loaded objects
property variant aboutDialog

// In-line defined menu component
property variant menu
Component {
id: menuComponent

Menu {
id: menu
content: MenuLayout {
// About
MenuItem {
text: qsTr("About")
onClicked: {
if (!aboutDialog)
aboutDialog = Utils.loadObjectByPath("components/AboutDialog.qml", menu)
aboutDialog.open()
}
}

// Quit
MenuItem {
text: qsTr("Quit")
onClicked: Qt.quit()
}
}
}
}

Text {
id: statustext
x: 2
y: 2
width: 230
height: 22
color: "#ffffff"
text: qsTr("BeTrains")
font.pixelSize: 20
}
}

最后一个文本对象用于测试目的,它按应有的方式旋转...显示问题的图像:

(我无法嵌入图片,所以这是链接:http://i.stack.imgur.com/LXsxe.jpg)

左侧是模拟器结果,右侧是我的 E7 的截图。问题以红色圈出。

最佳答案

不确定是什么原因,但你的 main.qml 很奇怪...... PageStackWindow 已经是一个窗口,为什么你用另一个窗口包装它?尝试删除窗口并使用 PageStackWindow 作为 main.qm 中的顶层

(@Dickson 评论的答案)

关于qt4 - 横向模式损坏,显示不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13788988/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com