calling a number and getting the answer *101#
Hello, how can I call a number (not with QML, but real Qt with C++ code – a QtQuick Widget application) , and then catch the response? For example *101# outputs the balance, I want to return it, e.g....
View ArticleQt Quick 1.1 ScrollBar
i know there is no built-in solution that’s why i post this such that if anyone have the source code for Scrollbar then they would share this…
View ArticleQDeclarativeImageProvider and asynchronous image loading
Hi there, I’m wondering how asynchronous image loading regards deleting of the image provider since I didn’t find any clue in the docs. For example, we have some provider and have been loading some...
View ArticleQt Quick 1.1 ScrollBar
This might be a start: http://qt-project.org/forums/viewthread/15283
View ArticleValgrind profiler
Then you’re out of luck, Valgrind for windows is in pre-alpha stage according to the current project status
View ArticleDOM Access to Qt5 QML WebView
I want to use a Qt5 QML WebView (QtWebKit 3.0) and access the DOM of the document in the WebView. Specifically, I want to select a word in the WebView and get some DOM attributes associated with that...
View ArticleQML Drag Outside of Window
I have a simple rectangle that drags on the x axis. My window size is 800×480. I have a white Rectangle that is able to drag on the X axis. When pressed (onPressed) the Rectangle changes to red and...
View ArticleGet object, which have received signal
Hello. How to get object, which have received signal? Look at that code: for (var idx=0;idx<leftButtonSettings.length;idx++) { ...
View ArticleHow to RUN MAPViewer example from qtlocation
This error is caused because the parameters property is not being set. I recently fixed this in qtlocation commit 966e2b7cb14aebe89589af77c68980dfba8d1b82. You could update to the latest Qt Location,...
View ArticleHow to show swf file in webview!
I have an application which has to load an swf in a qml application! I had successfully loaded youtube etc by specifying url in the url field inside webview! but when I add my swf file I cannot see my...
View ArticleGet object, which have received signal
Just use QObject::sender() [qt-project.org], if the code you posted above is inside a slot that received a signal and the object you’re looking for is the sender of the signal. Then you could do...
View ArticleQt Desktop Components - build for MS Windows
Hello, please, could anyone help me with building Qt Desktop Components for Qt 4.8.4 on MS Windows 7? (I don’t know how much backwards compatible Qt 5.0 is) I know this is not the best favor to ask and...
View ArticleQML component assignation
Is it possible to assign 1 component to another of the same type in this way? MyQml.qml Item{ property int var1 property string var 2 property int var3 } and in another file: main.qml...
View ArticleQt Desktop Components - build for MS Windows
I honestly think that it has nothing to do with the Qt Creator experience (I just tried compiling it in Qt Creator and it compiles without a problem, but then still does not work), but compiler...
View ArticleQML, QtQuick2 performance, How to get the best of OpenGL?
Make sure you follow the guide [qt-project.org]. I don’t use windows much, but I think the output you’ve got means you don’t have Perl in PATH.
View ArticlePlaying video in a loop
Hi guys, I’m trying to play a video in an endless loop, using QtQuick 2.0 and QtMultimedia 5.0 on Win8/32Bit. The video plays until it reaches the end. The debug message is thenshown, but the video...
View Article