Advertisement
Snowsz

OTCMakerMain.h

Sep 28th, 2015
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. /***************************************************************
  2. * Name: OTCMakerMain.h
  3. * Purpose: Defines Application Frame
  4. * Author: Snowsz (snowsz10@hotmail.com)
  5. * Created: 2015-09-28
  6. * Copyright: Snowsz ()
  7. * License:
  8. **************************************************************/
  9.  
  10. #ifndef OTCMAKERMAIN_H
  11. #define OTCMAKERMAIN_H
  12.  
  13. //(*Headers(OTCMakerDialog)
  14. #include <wx/sizer.h>
  15. #include <wx/stattext.h>
  16. #include <wx/statline.h>
  17. #include <wx/button.h>
  18. #include <wx/dialog.h>
  19. //*)
  20.  
  21. class OTCMakerDialog: public wxDialog
  22. {
  23. public:
  24.  
  25. OTCMakerDialog(wxWindow* parent,wxWindowID id = -1);
  26. virtual ~OTCMakerDialog();
  27.  
  28. private:
  29.  
  30. //(*Handlers(OTCMakerDialog)
  31. void OnQuit(wxCommandEvent& event);
  32. void OnAbout(wxCommandEvent& event);
  33. //*)
  34.  
  35. //(*Identifiers(OTCMakerDialog)
  36. static const long ID_STATICTEXT1;
  37. static const long ID_BUTTON1;
  38. static const long ID_STATICLINE1;
  39. static const long ID_BUTTON2;
  40. //*)
  41.  
  42. //(*Declarations(OTCMakerDialog)
  43. wxButton* Button1;
  44. wxStaticText* StaticText1;
  45. wxBoxSizer* BoxSizer2;
  46. wxButton* Button2;
  47. wxStaticLine* StaticLine1;
  48. wxBoxSizer* BoxSizer1;
  49. //*)
  50.  
  51. DECLARE_EVENT_TABLE()
  52. };
  53.  
  54. #endif // OTCMAKERMAIN_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement