Simple Qt Widgets
Playing with the widgets in Qt Creator is the best way to get a feel for what's available, but it's worth commenting on a few of the classes you're likely to use the most. We've already talked about menus; next, let's look at buttons text input, and comboboxes. If you're curious what any of these widgets look like, fire up Qt Designer and make one!
Qt's button classes that implement push buttons, checkboxes, and radio buttons all inherit from the QAbstractButton
class. You can drag out any of the concrete subclasses of QAbstractButon
in Qt Creator's Designer or instantiate them programmatically. Through QAbstractButton
, all buttons have the following properties:
checkable
: This is a Boolean flag indicating whether the button has ...
Get Application Development with Qt Creator - Second Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.