PolycodePlayerView.h 473 B

1234567891011121314151617181920212223
  1. #pragma once
  2. #include <windows.h>
  3. #include <Polycode.h>
  4. #include <PolyWinCore.h>
  5. #include <PolycodePlayer.h>
  6. using namespace Polycode;
  7. namespace Polycode {
  8. class _PolyExport PolycodePlayerView : public PolycodeViewBase, public EventHandler {
  9. public:
  10. PolycodePlayerView(bool standaloneMode, HINSTANCE hInstance, int nCmdShow, LPCTSTR windowTitle);
  11. ~PolycodePlayerView();
  12. void handleEvent(Event *event);
  13. HWND consoleTextArea;
  14. HWND hwnd;
  15. };
  16. }