This folder contains dialog examples.
- AboutBox shows how to create a AboutBox with wxAboutBox.
- BusyInfo shows how to create a BusyInfo with wxBusyInfo.
- ColourDialog shows how to create a ColourDialog with wxColourDialog.
- DirDialog shows how to create a DirDialog with wxDirDialog.
- FindReplaceDialog shows how to create a FindReplaceDialog with wxFindReplaceDialog.
- FontDialog shows how to create a FontDialog with wxFontDialog.
- GenericAboutBox shows how to create a GenericAboutBox with wxGenericAboutBox.
- GenericFindReplaceDialog shows how to create a GenericFindReplaceDialog with wxGeenericFindReplaceDialog.
- GenericProgressDialog shows how to create a GenericProgressDialog with wxGenericProgressDialog.
- MessageDialog shows how to create a MessageDialog with wxMessageDialog.
- MultiChoiceDialog shows how to create a MultiChoiceDialog with wxMultiChoiceDialog.
- NotificationMessage shows how to create a NotificationMessage with wxNotificationMessage.
- NumberEntryDialog shows how to create a NumberEntryDialog with wxNumberEntryDialog.
- OpenFileDialog shows how to create a OpenFileDialog with wxOpenFileDialog.
- PasswordEntryDialog shows how to create a PasswordEntryDialog with wxPasswordEntryDialog.
- ProgressDialog shows how to create a ProgressDialog with wxProgressDialog.
- RearrangeDialog shows how to create a RearrangeDialog with wxRearrangeDialog.
- SaveFileDialog shows how to create a SaveFileDialog with wxSaveFileDialog.
- SingleChoiceDialog shows how to create a DirDialog with wxSingleChoiceDialog.
- TextEntryDialog shows how to create a TextEntryDialog with wxTextEntryDialog.
- Wizard shows how to create a Wizard with wxWizard.
To build this project, open "Terminal" and type following lines:
mkdir build && cd build
cmake ..
start Dialogs.sln
Select any project and type Ctrl+F5 to build and run it.
mkdir build && cd build
cmake .. -G "Xcode"
open ./Dialogs.xcodeproj
Select any project and type Cmd+R to build and run it.
mkdir build
cd build
cmake .. -G "CodeBlocks - Unix Makefiles"
xdg-open ./Dialogs.cbp > /dev/null 2>&1
Select any project and type F10 to build and run it.
mkdir build
cd build
cmake ..
cmake --build . --config Debug
./AnyProject