PolycodeWinIDEView.h 448 B

123456789101112131415161718192021222324
  1. #pragma once
  2. #include <winsock2.h>
  3. #include <windows.h>
  4. #include "PolyCore.h"
  5. #include "PolycodeWinIDEView.h"
  6. using namespace Polycode;
  7. class PolycodeIDEApp;
  8. namespace Polycode {
  9. class _PolyExport PolycodeWinIDEView : public PolycodeViewBase {
  10. public:
  11. PolycodeWinIDEView(HINSTANCE hInstance, int nCmdShow, LPCTSTR windowTitle, bool resizable = false, bool showDebugConsole = false);
  12. ~PolycodeWinIDEView();
  13. HWND hwnd;
  14. HACCEL haccel;
  15. };
  16. }