You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
713B

  1. #ifndef __options__
  2. #define __options__
  3. /**
  4. @file
  5. Subclass of dialog_Options, which is generated by wxFormBuilder.
  6. */
  7. #include "optionsGUI.h"
  8. #include "config.h"
  9. //// end generated include
  10. /** Implementing dialog_Options */
  11. class options : public dialog_Options
  12. {
  13. protected:
  14. config* configuration;
  15. // Handlers for dialog_Options events.
  16. void OnToggleProxy( wxCommandEvent& event );
  17. void OnCancel( wxCloseEvent& event );
  18. void OnCancel( wxCommandEvent& event );
  19. void OnOk( wxCommandEvent& event );
  20. void updatefields();
  21. public:
  22. /** Constructor */
  23. options( wxWindow* parent );
  24. ~options();
  25. config* GetConfiguration() {return configuration;}
  26. //// end generated class members
  27. };
  28. #endif // __options__