[Qt5] How to make a QQuickView TranslucentBackground?
I compiled with -opengl desktop. Now using your code, the program will not crash, but still not transparent. The area should be transparent has a black background. So it is because transparent OpenGL...
View ArticleError in compiling ELF functions
I want to know when i compile in qt ceator elf_begin() function error comes: Undefined reference to elf_begin in ubuntu terminal i use “-lelf.now in qt creator what i do ?????? plz help
View ArticleError in compiling ELF functions
This thread is duplicated with Error in compiling ELF functions in qt Creator [qt-project.org]
View ArticleStylesheets and QML - widget application being changed to QML, what is the...
Dolphin can you write links to articles where I could read about making Qt C++ application with gui in Qt Quick/QML? Maybe you known about example code? What’s wrong with...
View ArticleHow to import a QML component from resource file in a Qt Quick application...
Hello, I wrote a Qt Quick QML application loading all QML resources from a resource file. All files are on the same directory level and everything works well. Now I want to add a QML Component with sub...
View ArticleHow to import a QML component from resource file in a Qt Quick application...
import ":/mycomponent" // or import "qrc:/mycomponent" // or: import "qrc:/qml/myapp/mycomponent" Sorry for so many possible answers, I don’t...
View ArticleQtDesktop Components crash when mouse move
I’m trying to use Qt 5 with QtDesktop components and when I build and run application,once mouse move on any component , application crashing with this message: ...
View Articlesending INT from dialog back to main.cpp
And this thread belongs to General and Desktop [qt-project.org] category :)
View ArticleQML Videos
Good .Thank you for Putting the screen shot. It will help me and others in future.
View ArticleHow to append new elements at the top of ListView
By default when an element is appended to the ListView, it goes to the bottom of the list. Is there any easy way to do the opposite? I’ve tried this example...
View ArticleStylesheets and QML - widget application being changed to QML, what is the...
Dolphin – thank you! I will study this code in near future :)
View Article[Qt5, Windows] Qt::Tool / Qt::Popup flag does not work properly on QQuickView
I also post this thread at: https://bugreports.qt-project.org/browse/QTBUG-29294 There are screenshots there. The first QQuickView is the father of the second QQuickView, the second view is set a...
View ArticleHow to append new elements at the top of ListView
I personally would use insert on ListView’s model to insert in beginning and ListView’s method positionViewAtBeginning() (I have not tested if that works but it should). That example you have pointed...
View ArticleQtDesktop Components crash when mouse move
This was actually fixed yesterday. See https://codereview.qt-project.org/#change,45422 for details.
View Articlenewbie question :flipable ListElement
hello pls help me i want to know how can i flip a Listelement in a gridview i tried it on a example: Rectangle { id: rectangle2 x: 0 y:...
View ArticleStylesheets and QML - widget application being changed to QML, what is the...
So, if my option is to style in the QML what is my best bet for custom styling? The app is very simple but needs to allow the user to change colour/font/font style/font size and retain those settings....
View Articleint to char conversion
The Ascii value of the characters should get the related character. I am searching for any function which does that, example for i=65, I get ‘A’.
View ArticleUbuntu qt components installation error
I’ve tried to install ubuntu qt components on archlinux, i’ve created a build script and it builds fine, basically it builds like this: qmake-qt5 -r ubuntu-sdk.pro make --quiet make...
View Article[Solved]QtDesktop Components crash when mouse move
This was actually fixed yesterday. See https://codereview.qt-project.org/#change,45422 for details. thanks very much,I’ll try it immediatly。
View Articleint to char conversion
char a = (char)i; This is a C style cast and in C++ code it is high recommend to use static_cast. Example: int nMyInt = 65; char nMyChar = static_cast<char>(nMyInt); QChar char(nMyChar);...
View Article