Creating a Menu Bar and Adding Actions
Understand how we create a menu bar for our GUI applications.
We'll cover the following...
We'll cover the following...
Menu bars for our applications
These are the steps we use while creating menus with PyQt:
Creating the main window with the
QMainWindowclass.Making
QMenubarandQMenuobjects.Using the
QActioncategory to add actions to menus.Configuring
QStatusBarto display information about activities in the status bar.Creating detachable widgets with
QDockWidgetto hold an application's tools.Understanding how to make checkable menu items and submenus.
Additional ideas and tools discussed include:
Using
QIconto set and modify icons on widgets and in the main window.New sorts of dialogs, such as the "About" dialog box in
QMessageBoxand theQInputDialog,QColorDialog...