Skip to content

Latest commit

 

History

History
69 lines (55 loc) · 2.91 KB

README.md

File metadata and controls

69 lines (55 loc) · 2.91 KB

Dialog Examples

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.

Build and run

To build this project, open "Terminal" and type following lines:

Windows

mkdir build && cd build
cmake ..
start Dialogs.sln

Select any project and type Ctrl+F5 to build and run it.

macOS :

mkdir build && cd build
cmake .. -G "Xcode"
open ./Dialogs.xcodeproj

Select any project and type Cmd+R to build and run it.

Linux with Code::Blocks :

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.

Linux :

mkdir build
cd build
cmake ..
cmake --build . --config Debug
./AnyProject