QML Camera problem
Dependencies? I didn’t think this could happen if the program is run from QtCreator. I know it can happen if I try to run the program outside of QtCreator, but this is not what I’m doing. As for the...
View ArticleNo mouse interaction with a delegate in TableViewColumn (QtQuick Controls)
Hello I’m using a QtQuick Controls TableView with a Slider delegate in a column. Something like that: ... TableView { TableViewColumn{ role: "value" ;...
View ArticleQML Camera problem
main.cpp #include <QtGui/QGuiApplication> #include "qtquick2applicationviewer.h" int main(int argc, char *argv[]) { QGuiApplication...
View Article[solved] QML2 files in resource file
I’ve created a simple Qt Quick application, added a resource file: <RCC> <qresource prefix="/"> ...
View ArticleQt Quick 5.0.1 Chapter 6 Example is not viewable
Thanks a lot for the answer. The example in the package was slightly outdated, it seems. The link that you provided me with works flawlessly :) The only extra thing that I had to do was to install the...
View ArticleTextInput & TextEdit mess up the text rendering when text is entered
I have a strange problem with the TextInput and TextEdit components: When I write letters that are not already displayed by my QML application, it will mess up the rendering of text in the entire...
View Article[solved] QML2 files in resource file
This fails with ..\QmlQrc01\main.cpp: In function 'int qMain(int, char**)': ..\QmlQrc01\main.cpp:10:73: error: no matching function for call to 'QtQuick2ApplicationViewer::setMainQmlFile(QUrl)'...
View ArticleProblem with ApplicationWindow on QT Quick 2 Application
Thank you very much. Now it’s work.
View ArticleProblem with qtquick 2 "Could not initialize GLX"
Currently i’m trying to compile a qtquick2 application on a pcduino (pcduino [pcduino.com]) but i obtain this error on qt creator 2.8 “Could not initialize GLX” when i tried to build an application. Do...
View ArticleMenu outside MenuBar?
Hi! documentation about Menu (http://qt-project.org/doc/qt-5.1/qtquickcontrols/qml-qtquick-controls1-menu.html#details) says I can use Menu as standalone component or context menu or as component in...
View Article[Solved] No mouse interaction with a delegate in TableViewColumn (QtQuick...
OK Jens, Thanks a lot for your answer
View ArticleTextInput & TextEdit mess up the text rendering when text is entered
Hi, thanks that works perfectly =) Is there some kind of “use this renderype appwide” option, so that you dont have to use this line for every input field you have in your app?
View ArticleQML export from Photoshop CS3 or CC
Hi, Does any one know a way to export qml from Photshop CS3? And if CS3 is not supported; will Photoshop CC support exporting qml? Thanks
View ArticleFastest way to interact with QML
Hi everyone, I’m having a question regarding interaction between C++ and QML. I’ve a set of button with different click behaviour (one is pulse, one have to switch state, one have to follow...
View ArticleMenu outside MenuBar?
Awesome, but in your solution each button is working separately – I mean typically (e.g. in MenuBar) when you press one of menu buttons, then until you clicked outside of the menu, when you move mouse...
View ArticleExternal dll for parsing XML file - reference in Qt Application is resulting...
I’m using Qt Creator 5.0.2 (MSVC version) on Windows XP and I’ve a Qt 2.0 application which uses an external .dll file. I’m able to reference the external library properly in my Qt project. However,...
View ArticleFastest way to interact with QML
You could make the behaviour a property on the c++ side, which uses a string. The string could then be used to call a method. // qml Buttton { onPressed: root['handle_' +...
View ArticleXML parser functionality in Qt project using libxml2
I’m working on Windows XP and downloaded libxml2-2.7.8.win32.zip, zlib-1.2.5.win32.zip, and iconv-1.9.2.win32.zip. I would like to read a .xml file in Qt project using libxml2. How to add these libxml...
View ArticleExternal dll for parsing XML file - reference in Qt Application is resulting...
IIRC you partial error code resembles to the one you get when a dll is not found. In the Run tab of QtCreator update the PATH variable and add the path to were your dll can be found
View Article