Vertical Header in TabelView
After reading this thread I still don’t really know how to achieve this. Could you short list the things what to do to achieve this? I’m quite new to QtQuick,,, Thank you,
View ArticleQt Quick TextField: is there a text rendering setting?
I have an interesting tidbit to add for consideration. My coworker’s hardware configuration is identical to mine (except his 2.6GHz CPU vs. my 2.3GHz), we’re both running OS X 10.8.4, and I’m actually...
View Articleqmlqtimeexampleplugin not working
Hello, Please paste the exact error you are facing. Or in your case which plugins is it not able to find, mention them clearly.
View Articleqt creator - designer mode doesn't show
Hello, What is the file extension of the scenes that you have made with the “qml controls”? Is it .ui ( – is your scene file name)? If it is it opens up in the design section of the Qt Creator. If not...
View ArticleAdvise on multiple top level QQuickView's
Yes. If you check the Window api here: http://doc-snapshot.qt-project.org/qt5-stable/qtquick/qml-qtquick-window2-window.html
View ArticleHow can I add element to Qt Quick Controls Combobox?
Ok, no errors… QStandardItemModel* m = new QStandardItemModel(); QStandardItem* it = new QStandardItem(); ...
View ArticleProblem with deployment on windows
Hei there I´ve written a game in qml and tried to deploy it on windows. But it seems to only run on my own computer. The problem is i´m linux user and so i have (almost) no idea how to deploy programs...
View ArticleQML Controls FileDialog "folder" property not working in Windows to set...
Hey, Setting the FileDialog.folder [qt-project.org] property in QML before calling FileDialog.open() does not seem to set the startup path correctly. Qt: 5.1 OS: Win-8 Documentation states: Setting...
View ArticleProblem with deployment on windows
Well yes. I deployed it with all necessary qt libs, the mingw libs, and the icu* libs.
View ArticlePassing signal from C++ to object in loader
If I understood you correctly, you would like to dynamically load a file using the Loader component and then connect the loaded object to a signal that is emitted from the C++ layer. Why don’t you try...
View ArticleshadowOffsetX, shadowOffsetY, shadowBlur of Context2D
Hi These all work great in 5.1 on OSX but for the life of me I can’t get them to work on Ubuntu 12.04 or Gentoo on 5.0. Does anyone have experience with them working? BTW, 5.1 with the new QtQuick...
View ArticleQtCreator Designer - Qt Quick controls don't show up
Hi all, I am using Qt 4.8.1 and Qt Creator 2.7.0. When I create a simple Qt Quick 1 UI project and go to design mode the Qt Quick Basic, Qt Quick Positioner, and Qt Quick Views controls don’t show up...
View ArticleQt5. Embed QWidget object in QML
Is this possible in Qt5? My last aproach was to use a QGraphicsProxyWidget and a QDeclarativeItem. But for Qt 5 I had to make the change of QDeclarativeItem -> QQuickItem And the conversion from...
View Articlehow should i do if i wanna give my flickable Listview model a flickable boundry
…i have used QML for only a month,and when i set a listview and its model ,it extends the property of Flickable so that it can be drag at a correct orientation,but how to set its boundry?- –
View ArticleProblem with deployment on windows
I’m can see that you are missing: platforms/qwindows.dll QtQuick.2/qtquick2plugin.dll QtQuick.2/qmldir They need to be present as those two folders alongside your main .exe
View ArticleUpdating a QML listview title when the model data changes
My listview is updating fine from c++ code. Problem I have is with the title, I need it to update to a title relevant to the current data – I cannot find an example or seem to work out how to do it.
View ArticleQQuickView.rootObject() issues, dynamic signal/slot management design
Hi all, first what i’m trying to do: [maybe there is another (easier) ‘design pattern’ to this, since i can’t imagine this problem didn’t arise to anyone before] i have one single QQuickView Window...
View ArticlePossible bug in BorderImage
Creating a border pixel from a 3×3/4×4 pixel PNG where the center pixel/pixels is transparent gives a very strange result when put in a resizable “large” rectangle. The border only fills up the top...
View ArticleHow to use the date in QML files loaded by LOADER element in my main QML files
If you mean “data” instead of “date” then you are looking for “item” property. Loader { id: myLoader source: "someFile.qml" } // somewhere else in...
View Article