8d.wxWidgets – wxStaticLine

January 6, 2022 amit 0

OVERVIEW wxStaticLine lets you draw horizontal or vertical lines in a window. The default style is horizontal unless your specify a wxLI_VERTICAL style. For both […]

8c.wxWidgets – wxToggleButton

January 6, 2022 amit 0

OVERVIEW wxToggleButtons are like checkboxes in that they represent two states- true or false. Except here, they generate a command event every time since they […]

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