qml QtDesktop and a custom GLWidget.
I have successfully created a project that merges both but the open gl is not being displayed to the window? WIP [dropbox.com] EDIT: I think it has something to do with QTDesktop redrawing over our window
View ArticleItem::mapToItem(): wrong returned values
Hi all! I’d like to write my very first message in this forum since the acquisition by Digia and creation of the Qt Project. My problem is that Item::mapToItem(null, x, y) is giving wrong values. As...
View Articlecustom button bug
I think binding function call to a text property is ok, like any expression. Problem is that containsMouse is not updated when MouseArea is disabled and enabled again. There is a simpler program to...
View ArticleUndefined reference to `_imp___ZN7CxImageC1Ej'
I have just done that and have the .pro file in the following manner: HEADERS += \ pcxfilter.h \ pcxfilter_global.h \ color.h \...
View ArticleQML big memory consumption?
simple answer to your question; use a smaller font. For instance there are apps out there that remove all the glyphs in a font you dont use. All the cyrillic ones when you have an english app, for...
View ArticleQtQuick-Plugin - get QmlViewer object
Hi Mark, In Qt4, QtQuick items are a subclass of QDeclarativeItem. QDeclarativeItem has a member function: QGraphicsScene * QGraphicsItem::scene () const which returns the scene your item is created...
View ArticleQtWebView + D3 Javascript Visualization Library
Just realized i should have posted this in Qt WebKit. Will move it there.
View ArticleUndefined reference to `_imp___ZN7CxImageC1Ej'
Please be patient. As soon as I or somebody from this forum will have some free time, we will try to help you with solving your problem. For now look at the *.pro file from imagelib, as you can see not...
View ArticleHow to debug transition in a QML applications
When i read ‘Debugging QML Applications’ the document in Qt5.0.1. There is a paragraph titled ‘Debugging Transitions’ , i confused how to ‘Show Down Animations’? I didn’t found the menu name ‘Show Down...
View Article[Solved] Component::createObject(): bindings don't work
Thank you very much! It works without problems! I had tried with the old QtQuick1 way, not the new QtQuick2 way.
View ArticleQT QML with OpenGL
Hi, I want to know wether my code use OpenGl or not? I am using QT 4.8.1 on iMAX53 board. Freescale GPU driver is loaded on BSP. I have configured QT with opengl ES option. my code is below: class...
View Articledisplay here maps in qml + webview (QtWebKit 3.0)
Hi All, I want show routeinfo from here maps in qml + webview how can achieve it using javascript. Any clues…:)
View ArticleQT QML with OpenGL
Code: class CApplication : public QMainWindow @{ @Q_OBJECT @public: QmlApplicationViewer m_ViewObj; /** Holds View object */ } CApplication : CApplication () @{ @// Create GLWidget @QGLFormat format =...
View ArticleHow to draw text in QQuickItem?
Hi, I want to implement my custom QQuickItem subclass and I want it to draw some text. I found out that there is a QQuickTextNode class, but it seems to be private. So my question is: how can I do text...
View ArticleComplex 2D graphics in QtQuick via C++
Hi, my goal is to implement custom QML element in C++. The purpose of this element is to draw rather complex 2D graphics (curves, polygons and polylines, text labels). And I also need to support mouse...
View ArticleProblems with showing facebook page in Qml WebView in qt5 for windows
Im trying to show facebook page in my Qt5 WebView using qml. On MacOs everything is fine but on Windows I’ve got a problem: “SSL handshake failed” I’ve installed openSSL from 0.9.8y to 1.0.1e but still...
View ArticleProblems with showing facebook page in Qml WebView in qt5 for windows
The problems seems to be in openSSL. When I’m performing command openssl s_client -connect www.facebook.com:443 it ruins with error: unable to get local issuer certificate
View ArticleGet the original string source in a QML file from an url property
Sorry for being slow, but as far as I know things like “../foo” do not get resolved, they show up in the url as such. Do you mean you see them resolved? Maybe you mean you want to remove the prefix,...
View ArticleComplex 2D graphics in QtQuick via C++
If you want to expose visual elements from C++ to QML you will end up subclassing QQuickItem anyway. Whether you do that from your own application or from a plugin depends on the usecase, if you don’t...
View ArticleWhere are Qml components?
Hi, all components available ‘out of box’ are only those listed here: http://doc.qt.digia.com/stable/qdeclarativeelements.html ? What about buttons, progress bars, menus? What with cpp classes like...
View Article