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 […]

6c. wxWidgets- Using Bind

December 24, 2021 amit 0

OVERVIEW We take the example from the previous section and implement the same using Bind. SAMPLE CODE events-bind.h events-bind.cpp main.h main.cpp The output is shown […]

6b. wxWidgets – Using Connect

December 24, 2021 amit 0

OVERVIEW We now take the sample from the previous section and implement the event handling using Connect instead of an Event table SAMPLE CODE events-connect.h […]