Shows how to use wxWidgets controls only by programming code (c++17).
"Hello World" The classic first application HelloWorld with wxStaticText.
Application Shows how to create a simple Gtkmm application with wxApp.
Button Shows how to create a Gtkmm Button and Event Click with wxButton.
CheckBox Shows how to create a Gtkmm CheckBox with wxCheckButton.
Label Shows how to create a Gtkmm Label with wxStaticText.
ProgressBar Shows how to create a Gtkmm ProgressBar with wxGauge.
RadioButton Shows how to create a Gtkmm RadioButton with wxRadioButton.
TextBox Shows how to create a Gtkmm TextBox with wxTextEntry.
TrackBar Shows how to create a Gtkmm TrackBar with wxSlider.
Form Shows how to create a simple Gtkmm Form with wxFrame.
GroupBox Shows how to create a simple Gtkmm GroupBox with wxRadioBox.
Panel Shows how to create a simple Gtkmm Panel with wxPanel.
TabControl Shows how to create a simple Gtkmm TabControl with TabPages with wxNotebook.
MainMenu Shows how to create a Gtkmm MainMenu with wxMenu.
Timer Shows how to create a simple Gtkmm Timer with wxTimer.
ColorDialog Shows how to create a ColorDialog with wxColourDialog.
MessageBox Shows how to create a MessageBox with wxMessageBox.
git clone https://github.com/gammasoft71/wxWidgetsExamples wxWidgetsExamplesTo build this project, open "Terminal" and type following lines:
mkdir build
cd build
cmake .. -G "Xcode"
open ./CocoaExamples.xcodeprojmkdir build
cd build
cmake ..
cmake --build . --config Debug