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.

38 lines
830B

  1. #ifndef __cosmos__
  2. #define __cosmos__
  3. /**
  4. @file
  5. Subclass of cosmosGUI, which is generated by wxFormBuilder.
  6. */
  7. #include "cosmosGUI.h"
  8. #include "options.h"
  9. #include "bdd.h"
  10. //// end generated include
  11. /** Implementing cosmosGUI */
  12. class cosmos : public cosmosGUI
  13. {
  14. protected:
  15. options* fenetre_options;
  16. class_bdd* bdd;
  17. // Handlers for cosmosGUI events.
  18. void OnImport( wxCommandEvent& event );
  19. void OnExport( wxCommandEvent& event );
  20. void OnQuit( wxCommandEvent& event );
  21. void OnStart( wxCommandEvent& event );
  22. void OnOptionsRche( wxCommandEvent& event );
  23. void OnOptionsProg( wxCommandEvent& event );
  24. void OnCorrections( wxCommandEvent& event );
  25. void OnSearch( wxCommandEvent& event );
  26. public:
  27. /** Constructor */
  28. cosmos( wxWindow* parent );
  29. //// end generated class members
  30. };
  31. #endif // __cosmos__