8.wxWidgets – Widgets Part 1

January 6, 2022 amit 0

OVERVIEW In this section we take a look at controls and widgets which are commonly used. 8a.wxCheckBox 8b.wxBitmapButton 8c.wxToggleButton 8d.wxStaticLine 8e.wxStaticText 8f.wxSlider

7a.wxWidgets – wxMessageDialog

January 3, 2022 amit 0

OVERVIEW In the sample code below, we will invoke 4 different kinds of system dialogs when a button is clicked. SAMPLE CODE dialog-messages.h dialog-messages.cpp main.h […]

7.wxWidgets – Dialogs

January 3, 2022 amit 0

OVERVIEW Dialogs are windows that require some interaction from the user. Generally dialogs are modal i.e until the user interacts with the dialog, the dialog […]

6e. wxWidgets – Vetoing Events

December 25, 2021 amit 0

OVERVIEW Continuing from the previous section where we looked at event propagation, in this section we see how to cancel processing events. Event processing may […]