qt5-cadaques icon indicating copy to clipboard operation
qt5-cadaques copied to clipboard

Repo for Qt5 Cadaques Project

Results 100 qt5-cadaques issues
Sort by recently updated
recently updated
newest added

Since the section instructs the reader to use Qt 5, the example given under 'Widget Application' is incorrect (but is correct for Qt 4). QWidget has been moved to QtWidgets...

back-link: ch04/index.html#simple-transformations

back-link: ch04/index.html#components This is my first time using qt and im using your qmlbook as a starting point(i cant complete tutorial from official doc from qt) Im stuck on how...

back-link: index.html#a-book-about-qt5 hi, I translate your book in chinese, it's here, https://github.com/cwc1987/Qt5-Cadaques-In-Chinese. thanks for your share, hope new chapter.

I love this book and what you're doing with it! Is there any way to show my support by making a small financial contribution?

When following the tutorial and adding Rectangle or Image as the root QML node, nothing is drawn. However, changing the root node to Window solves this. **Details:** Windows 8.1 Pro...

back-link: ch02/index.html#qt-quick-application `The declaration language is called QML and it needs to runtime to run it.` should be `The declaration language is called QML and it needs a runtime to...

back-link: ch02/index.html#get-started Under "Desktop Widgets" the code contains a small mistake at first glance: explicit CustomWidgetQWidget *parent = 0); Should be: explicit CustomWidget(QWidget *parent = 0);

back-link: ch04/index.html#positioning-elements In first code example should _id_ be equal to col instead of row? Column { id: row anchors.centerIn: parent spacing: 8 RedSquare { } GreenSquare { width: 96...

back-link: ch02/index.html#widget-application Another typo in Drawing Shapes cpp file you have : # include "customwidgetv2.h" CustomWidget::CustomWidget(QWidget *parent) : QWidget(parent) { should be : # include "customwidgetv2.h" CustomWidgetV2::CustomWidgetV2(QWidget *parent) : QWidget(parent)...