elide of tab title in TabView
I am newbie… Just tried to modify the Qt example “Qt Quick Controls – gallery” for my needs. Its Styles.qml comes with the following code, and I just added one line to define the “elide” property of...
View ArticleListView, TableView under one tab
another newbie’s question…… I would like to put a few lists, and tables under a tab of a TabView. This mimics my EXCEL sheet layout. But my tries only leads to errors. Any suggestions? ...
View ArticleMouseArea.pressed name collision
Hi all, I am trying to access the MouseArea.pressed signal as part of a chain of signals but have so far not been able to as there also exists a boolean property on MouseArea with the same name. Here’s...
View Articlefrom widgets to quick2
Sorry for the confusion. My response was to this problem: That would be a good future step. But right now I am blocked because I cannot get simple mouse events to propagate to my handling class...
View ArticleQtQuick deployment - blank screen
Hello, I Just created a simple project with QtQuick. main.cpp is; import QtQuick 2.0 Rectangle { width: 360 height: 360 ...
View ArticleSplashscreen during initialization
After a good night of sleep… I still cannot find a solution :/ I found this example [developer.nokia.com] but It’s a QT4 example, and some objects/methods do not exist anymore in Qt5 I don’t understand...
View Articlegetting status code 0 for HTTP post request in qt 5.2
Hi, I have built the web services in Ruby on Rails returning Json data, I have checked it through chrome addin and it is working good, returning correct status code on success. So, here I am trying to...
View Articlegetting status code 0 for HTTP post request in qt 5.2
wait to complete post means shall I put some counter before starting analyzing the reply..correct me if I did not understand your point well.
View Articlegetting status code 0 for HTTP post request in qt 5.2
Use the finished signal and analyze the result in a slot connected to it
View ArticleCrop an image with an irregular shape
I want to crop the visualization of an image using an irregular shape (not a simple rectangle), using a Path item for example. It is possible ?? I cannot find a solution looking into the documentation....
View ArticleMouseArea.pressed name collision
A workaround could be to add to the MouseArea another signal with a name that doesn’t conflict. For ex: MouseArea { id: bluemouse...
View ArticleIssue with Qt Controls signals inside ListView
Did you try “bool QObject::blockSignals(bool block)” ?
View ArticleCrop an image with an irregular shape
Thank you for pointing me to Graphical Effects. I think that OpacityMask is best suited for me.
View ArticleSplashscreen during initialization
Gianluca, thanks a lot for your example and explanations! That’s exactly what I needed! Your example is working well for my use case. I just added one think: I call the Init() function from my C++...
View ArticleHide cursor on Raspberry Pi in Qt Quick Application
Thanks for your replay. I found solution few minutes ago. The problem was I had to run my program with root permissions so I used sudo. I thought I tested it without sudo but I was wrong. In sudo’s...
View ArticleQtQuick deployment - blank screen
I think you’re missing libEGL.dll. You may also want to add libGLESv2.dll.
View Articleelide of tab title in TabView
text: styleData.title – what is the size of this ? Is it multi-line ? Can you look at the following bug ?...
View ArticleQML and SelectionDialog
Is there any way to use SelectionDialog in .qml? Some documents say Yes, some say No: http://archive.is/7gepe I found SelectionDialog.qml on:...
View ArticleAdding a tab in Widget from a class
I have one tabwidget in which i am adding tab like this tabWidget = new QTabWidget; tabWidget->addTab(new First_Tab(),...
View ArticleGridview with Horizontally placed elements and Horizontal Scrolling
Hi, I wanted the QML GridView to display the elements horizontally and also make the GridView Scroll Horizontally. picture below depicts how I want the Gridview to be displayed. Grid.png...
View Article