qtwidgets and qtquick controls a comparison
play

QtWidgets and QtQuick.Controls - A Comparison Qt Developer Days - PowerPoint PPT Presentation

QtWidgets and QtQuick.Controls - A Comparison Qt Developer Days Europe 2014 Presented by Kevin Krammer kevin.krammer@kdab.com p.1 The Question The Queson Side-by-Side Comparison Conclusions The Question p.2 Common Question What should


  1. QtWidgets and QtQuick.Controls - A Comparison Qt Developer Days Europe 2014 Presented by Kevin Krammer kevin.krammer@kdab.com p.1

  2. The Question The Ques�on Side-by-Side Comparison Conclusions The Question p.2

  3. Common Question What should I use for a new project: QtWidgets or QtQuick.Controls ? The Question p.3

  4. Good Answer? It depends! The Question p.4

  5. Side-by-Side Comparison The Question Side-by-Side Comparison Conclusions Side-by-Side Comparison p.5

  6. Base Line Set of standard interface elements e.g. Button, CheckBox, Slider Layouting Styling Platform Look&Feel Custom Application Window Menu Bar, Tool Bar, Status Bar, etc Dialogs Standard Dialogs Base for Custom Dialogs Side-by-Side Comparison p.6

  7. Requirements QtWidgets QtQuick.Controls System System Graphics Buffers OpenGL Qt Version Qt Version basically any > 5.1 Programming Languages Programming Languages For Use For Use C++ QML + JavaScript (QML + JavaScript with QML For Extending registered widgets) QML + JavaScript (composition) For Extending C++ (custom rendering) C++ Side-by-Side Comparison p.7

  8. Layouting QtWidgets QtQuick.Controls Horizontal/Vertical Box Layout, Grid RowLayout, ColumnLayout, Layout, Form Layout GridLayout, Anchors (relative positioning) Layouts "fill" parent widget Layouts need to be explicitly sized Widgets provide: or anchored Size Hints Controls provide: Size Policies Implicit Size Developer can override size hint, set Developer can attach resize hints policy Side-by-Side Comparison p.8

  9. Layouting - Example QtWidgets 1 QVBoxLayout *layout = new QVBoxLayout(this); 2 3 QPushButton *one = new QPushButton("One"); 4 layout->addWidget(one); 5 6 QPushButton *two = new QPushButton("Two"); 7 layout->addWidget(two); 8 9 QPushButton *three = new QPushButton("Three"); 10 layout->addWidget(three); QtQuick.Controls 1 ColumnLayout { 2 anchors.fill: parent 3 4 Button { text: "One" } 5 Button { text: "Two" } 6 Button { text: "Three" } 7 } Side-by-Side Comparison p.9

  10. Styling QtWidgets QtQuick.Controls Platform Native Styling Platform Native Styling Qt Style Sheets (QSS) Style Component Replace parts of the control QStyle Plugins Side-by-Side Comparison p.10

  11. Styling - Example QtWidgets QPushButton *button = new QPushButton("Click Me!", window); button->setStyleSheet("QPushButton {background-color: white}"); QtQuick.Controls 1 Button { 2 x: 50; y: 50 3 text: "Click Me!" 4 5 style: ButtonStyle { 6 background: Rectangle { 7 color: "white" 8 border.color: "#ABABAB" 9 } 10 } 11 } Side-by-Side Comparison p.11

  12. Application Window QtWidgets QtQuick.Controls QMainWindow ApplicationWindow Menu Bar Menu Bar Status Bar Status Bar Any number of Tool Bars One Tool Bar Adding actions results in Tool Create Tool Buttons, then Buttons associate action Dock Widgets Content item needs explicit resize handling Central Widget resized with window Side-by-Side Comparison p.12

  13. Dialogs QtWidgets QtQuick.Controls Standard Dialogs Standard Dialogs Color, File, Font, MessagBox, Print, Color, File, Font, Message Progress, Wizard Custom Dialogs Custom Dialogs Base type Dialog Base type QDialog Modal and Non-modal Modal and Non-modal standardButtons for platform QDialogButtonBox for platform correct button handling correct button handling currently not access to buttons access to individual buttons All actions close the dialog possible accept/reject can be intercepted Side-by-Side Comparison p.13

  14. Tooling QtWidgets QtQuick.Controls Qt Designer in QtCreator and stand- QtQuick Designer in QtCreator alone Manipulates QML code directly Code generated by UIC Use by manual editing of the same Used by delegation in custom files classes Testing Testing QtTest for unit testing QtTest for unit testing Squish for UI testing Squish for UI testing Gammaray for runtime inspection Gammaray for runtime inspection QtCreator JS debugger/profiler C++ tools for debugging/analysis of custom code Side-by-Side Comparison p.14

  15. Conclusions The Question Side-by-Side Comparison Conclusions Conclusions p.15

  16. Conclusions Both technologies viable for wide range of projects QtQuick.Controls not as complete yet but rapidly evolving Knowledge of types easily transferable Knowledge of behavior not always applicable Conclusions p.16

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend