Questions tagged «qt-creator»


1
(QML)Flickable无法正常工作
因此,在构建Ubuntu应用程序时,我需要使用它flickable进行滚动,所以现在我有了以下形式的代码 Page{ ... Flickable { anchors.fill: parent content.height: element1.height + element2.height ... ... } } 当我在手机上运行它时,可轻弹的默认位置比标题低几百个像素。当我轻弹它时,它会停留在应该从一开始就保持正确的位置。同样,当使用pagestack推入另一页时,再返回到该页面,它将停留在正确的位置。为什么会这样以及如何解决它,以便使其从一开始就处于正确的位置。 注意:我已经尝试了锚点,宽度,高度和其他所有组合。有一次我确实将其保持在该位置,但是轻弹时它与页眉重叠。

4
Ubuntu 14.04 QtCreator Qt5示例丢失
升级到Ubuntu 14.04之后,我删除了官方的qtcreator以便从软件中心安装修改后的版本,因为我想尝试SDK。 幸运的是,这些文档现已包含在官方安装中。不幸的是,仍然缺少一些东西:官方例子。幸运的是,我的旧版正式安装仍在硬盘上,然后经过一些尝试,我将示例复制到/usr/lib/x86_64-linux-gnu/qt5/examples并更改了权限。然后QtCreator检测到示例,我可以从示例部分中选择它们。 但是仍然存在两个问题: 首先,我无法找到所有示例,例如仍然缺少网络示例(例如fortuneclient)。为了进行测试,我将example文件夹的权限更改为777。因此,权限应该不是问题。 其次,缺少一些示例的帮助文档。因此,单击示例后,我得到了一个普通的编辑器和一个空白的右侧部分。

4
为什么QTCreator中缺少Ubuntu.Components 0.1?
首先,我需要使用QML和QT Creator创建一个“ hello world”应用程序,如此处所述 http://developer.ubuntu.com/get-started/gomobile/ 其次,当我尝试安装QML平台和依赖项时,我无法运行第2步(“安装Ubuntu QML工具包预览”),因为我有一个基于ubuntu 12.04的发行版(后备箱),但我可以通过以下方法解决这篇文章的说明:https : //askubuntu.com/questions/235440/how-do-i-install-the-qml-toolkit-on-12-04 第三,当我打开QTCreator并尝试执行CurrencyConverter(helloWorld应用)时,程序找不到以下程序包: import Ubuntu.Components 0.1 我该怎么办才能运行该应用程序? 提前致谢。 import QtQuick 2.0 import Ubuntu.Components 0.1 Rectangle { id: root width: units.gu(60) height: units.gu(80) color: "lightgray" property real margins: units.gu(2) property real buttonWidth: units.gu(9) Label { id: title ItemStyle.class: "title" text: i18n.tr("Currency Converter") height: …



4
如何在Qt Creator中使用gnome-terminal?
我可以调整设置以使用终端,而不仅仅是普通输出。但是,我似乎无法找出使用gnome-terminal输入的正确命令。我可以使用'xterm -e',这是一个很好的解决方案,但是我仍然想知道。 当我尝试使用'gnome-terminal -e'时,运行程序将导致空白终端快速打开和关闭。之后,我必须“中断”执行(有点像无限循环)。当使用'gnome-terminal -x'我得到: 无法连接创建者comm套接字/tmp/qt_temp.h17333/stub-socket:没有此类文件或目录

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.