Transparent QQuickView on Windows 7, works with Qt5.0.2 but broken on Qt5.1
Hi! I have this effort on creating transparent window in fullscreen for QML apps (running on Windows 7 with aero enabled). I’m using this combination of viewer.setColor(QColor(Qt::transparent)) as...
View ArticleProgram doesn't generate QML
Hi Guys, I created a new Qt project but it doesn’t generate a QML file on it’s own. So, I clicked on File->New File->and created a new QML file for my project but if I make changes to...
View ArticleTransparent QQuickView on Windows 7, works with Qt5.0.2 but broken on Qt5.1
Please file bug reports [bugreports.qt-project.org] about regressions. Bugreports will be seen by the developer, while it takes a bit of luck for the issue to get noticed here.
View ArticleWhat is .qmlproject file?
.qmlproject is used by Qt Creator to handle projects that are QML-only. As Tomma already said, these kinds of projects use the Qmlviewer application to show QML files. This is rather convenient to play...
View ArticleProgram doesn't generate QML
I clicked on Applications(under Projects) and Qt GUI Application to create this new project.
View ArticleProgram doesn't generate QML
That’s the wrong template, you should create a new Qt Quick application
View ArticleHow to display items in a centered Flow-like way?
Hi, I was wondering if there was a way to display child items in the way the Flow item does (side by side as long as there is enough room and then on the following row/column depending on the...
View ArticleQtMultimediaKit in Windows XP
Hi, recently I downloaded Qt 5.1 beta binary for Windows and I wanted to try QtMultimedia in QML. Unfortunately it seems that this module is missing in the installation just like in 4.x versions. What...
View ArticleHow to display items in a centered Flow-like way?
For some of my projects I’m using a combination of Row/ Column with Flickable. Requires a bit more coding, but for some use cases is more flexible and useful.
View ArticleHow to access v8's debug API in QJSEngine
Hi, I was playing around with the new QJSEngine and wanted to access the v8’s Debug interface (eider start the building debug agent, or pass debug commands directly to the engine using the C API),...
View ArticleFont Loading Issues on OSX Qt5.1 Beta Qt Quick 2.0
FontLoader { id:flat_manteka_font name:“flat_manteka_font” source:“manteka.ttf” } Text { text: “MANTEKA” font.family: flat_manteka_font.name // metastream_flat_style.flat_style.flat_font_family...
View ArticleFont Loading Issues on OSX Qt5.1 Beta Qt Quick 2.0
Hey Thanks we can close this one as solved, I filed a bug report. Your right forums are bad places to post bugs. I will likely post if asking if someone gets similar behaviour and then file a bug...
View ArticleReferenceError: Can't find variable: because area is overlapped
Hi, I have an Item with: Connections { ignoreUnknownSignals : false target: tt0 //sender ...
View ArticleQtMultimediaKit in Windows XP
It works now, maybe a Windows restart was needed. Anyway thanks for your help.
View ArticleReferenceError: Can't find variable: because area is overlapped
The signal is being emitted, prompting slot function execution, but the reference error concerns lack of specification for both the object and the signal. Apparently this does not rule out expected...
View ArticleReferenceError: Can't find variable: because area is overlapped
Thanks. Yes, there is more code, not relevant to this issue. When I show all, it becomes hard to read/find the relevant code. Meanwhile I have made some more signal/functions. They all generate errors,...
View ArticleHow to QML Graph layout ?
Hello, Let’s talk “graph visualization” : I’ve a list of “Nodes” (QQuikItem derived) that must be spread and organized within a squared area. An external graph layout engine computes the position of...
View ArticleHow to QML Graph layout ?
I see. In this case it might get cumbersome to customize QtQuick elements to your preference, and drawing each item in a separate canvas will hurt performance. Perhaps you should take a closer look at...
View ArticleNeed help to make a smooth animation
Hello, I am working in my first QML application and need some help with an animation. The app starts with two centered icons and, when you click on them, they are supposed to move to the top left...
View ArticleSome kind of GridView with groupable items and subheaders???
GridView does not seem to handle visual grouping and sections as ListView does. On the other hand, laying items in a grid in a ListView might not be so straight-forward.
View Article