Book Image

Mastering Qt 5

By : Guillaume Lazar, Robin Penea
Book Image

Mastering Qt 5

By: Guillaume Lazar, Robin Penea

Overview of this book

Qt 5.7 is an application development framework that provides a great user experience and develops full-capability applications with Qt Widgets, QML, and even Qt 3D. This book will address challenges in successfully developing cross-platform applications with the Qt framework. Cross-platform development needs a well-organized project. Using this book, you will have a better understanding of the Qt framework and the tools to resolve serious issues such as linking, debugging, and multithreading. Your journey will start with the new Qt 5 features. Then you will explore different platforms and learn to tame them. Every chapter along the way is a logical step that you must take to master Qt. The journey will end in an application that has been tested and is ready to be shipped.
Table of Contents (20 chapters)
Mastering Qt 5
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Preface

Searching with the Locator


Another way to improve your productivity with Qt Creator is to use keyboard shortcuts. Qt Creator provides a lot of great keyboard shortcuts. Here is our selection:

One of our favorites is the Locator. Press CtrlK to activate it. Then you can enjoy several features:

  • Enter a filename (you can even use a partial entry) and press Enter to open this file. If the Locator suggests multiple files, you can use the arrows up and down to navigate.

  • Prefix your search by .  (a dot followed by a space) to search C++ symbols in the current document. For example, on the Task.cpp file of the first chapter, try to use the Locator with . set and press Enter to go to the  Task::setName() function.

  • Enter l  (L followed by a space) to go to a specific line. For example, "l 37" will bring us to line 37 of the current file

The Locator provides plenty of features; take a look when you press CtrlK the next time!