|
@@ -22,20 +22,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
#pragma once
|
|
|
-#include "PolycodeView.h"
|
|
|
|
|
#include "PolyGlobals.h"
|
|
#include "PolyGlobals.h"
|
|
|
#include "PolyCore.h"
|
|
#include "PolyCore.h"
|
|
|
-#include "PolyGLRenderer.h"
|
|
|
|
|
-#include "PolyGLSLShaderModule.h"
|
|
|
|
|
|
|
+#include "PolyInputKeys.h"
|
|
|
|
|
+#include "PolyRectangle.h"
|
|
|
|
|
+
|
|
|
#include <windows.h>
|
|
#include <windows.h>
|
|
|
#include <windowsx.h>
|
|
#include <windowsx.h>
|
|
|
#include <WinUser.h>
|
|
#include <WinUser.h>
|
|
|
-#include "PolyRectangle.h"
|
|
|
|
|
-#include <GL/wglext.h>
|
|
|
|
|
|
|
|
|
|
#include <vector>
|
|
#include <vector>
|
|
|
-using std::vector;
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
#ifndef VK_0
|
|
#ifndef VK_0
|
|
|
#define VK_0 '0'
|
|
#define VK_0 '0'
|
|
@@ -148,7 +144,7 @@ namespace Polycode {
|
|
|
|
|
|
|
|
void platformSleep(int msecs);
|
|
void platformSleep(int msecs);
|
|
|
|
|
|
|
|
- vector<Polycode::Rectangle> getVideoModes();
|
|
|
|
|
|
|
+ std::vector<Polycode::Rectangle> getVideoModes();
|
|
|
|
|
|
|
|
// NEED TO IMPLEMENT:
|
|
// NEED TO IMPLEMENT:
|
|
|
|
|
|
|
@@ -161,7 +157,7 @@ namespace Polycode {
|
|
|
void moveDiskItem(const String& itemPath, const String& destItemPath) {}
|
|
void moveDiskItem(const String& itemPath, const String& destItemPath) {}
|
|
|
String openFolderPicker() { return "";}
|
|
String openFolderPicker() { return "";}
|
|
|
void removeDiskItem(const String& itemPath) {}
|
|
void removeDiskItem(const String& itemPath) {}
|
|
|
- vector<string> openFilePicker(vector<CoreFileExtension> extensions, bool allowMultiple) { vector<string> ret; return ret;}
|
|
|
|
|
|
|
+ std::vector<String> openFilePicker(std::vector<CoreFileExtension> extensions, bool allowMultiple) { std::vector<String> ret; return ret;}
|
|
|
void resizeTo(int xRes, int yRes) { }
|
|
void resizeTo(int xRes, int yRes) { }
|
|
|
|
|
|
|
|
private:
|
|
private:
|
|
@@ -170,7 +166,7 @@ namespace Polycode {
|
|
|
|
|
|
|
|
CoreMutex *eventMutex;
|
|
CoreMutex *eventMutex;
|
|
|
|
|
|
|
|
- vector<Win32Event> win32Events;
|
|
|
|
|
|
|
+ std::vector<Win32Event> win32Events;
|
|
|
|
|
|
|
|
void initMultisample(int numSamples);
|
|
void initMultisample(int numSamples);
|
|
|
|
|
|