tibia-client/src/framework/platform/win32window.h

104 lines
3.0 KiB
C
Raw Normal View History

2011-08-28 15:17:58 +02:00
/*
* Copyright (c) 2010-2013 OTClient <https://github.com/edubart/otclient>
2011-08-28 15:17:58 +02:00
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#ifndef WIN32WINDOW_H
#define WIN32WINDOW_H
2011-08-16 15:06:16 +02:00
#include "platformwindow.h"
2011-08-16 15:06:16 +02:00
2011-12-29 19:18:12 +01:00
#include <windows.h>
2012-06-10 20:52:08 +02:00
#ifdef OPENGL_ES
#include <EGL/egl.h>
#endif
2011-12-29 19:18:12 +01:00
struct WindowProcProxy;
class WIN32Window : public PlatformWindow
2011-08-16 15:06:16 +02:00
{
2011-12-29 19:18:12 +01:00
void internalCreateWindow();
void internalCreateGLContext();
2012-06-10 20:52:08 +02:00
void internalDestroyGLContext();
void internalRestoreGLContext();
2011-12-29 19:18:12 +01:00
void *getExtensionProcAddress(const char *ext);
bool isExtensionSupported(const char *ext);
LRESULT windowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
friend class WindowProcProxy;
2012-02-04 03:11:18 +01:00
Fw::Key retranslateVirtualKey(WPARAM wParam, LPARAM lParam);
2011-12-29 19:18:12 +01:00
public:
WIN32Window();
void init();
void terminate();
void move(const Point& pos);
void resize(const Size& size);
void show();
void hide();
void maximize();
void poll();
void swapBuffers();
void restoreMouseCursor();
2011-12-29 19:18:12 +01:00
void showMouse();
void hideMouse();
2012-01-06 21:15:41 +01:00
void displayFatalError(const std::string& message);
2011-12-29 19:18:12 +01:00
2012-01-20 03:48:38 +01:00
void setMouseCursor(const std::string& file, const Point& hotSpot);
2011-12-29 19:18:12 +01:00
void setTitle(const std::string& title);
void setMinimumSize(const Size& minimumSize);
void setFullscreen(bool fullscreen);
void setVerticalSync(bool enable);
void setIcon(const std::string& iconFile);
void setClipboardText(const std::string& text);
Size getDisplaySize();
std::string getClipboardText();
2011-12-30 05:50:19 +01:00
std::string getPlatformType();
2011-12-29 19:18:12 +01:00
private:
2012-08-20 23:53:06 +02:00
Rect getClientRect();
Rect getWindowRect();
Rect adjustWindowRect(const Rect& rect);
2011-12-29 19:18:12 +01:00
HWND m_window;
HINSTANCE m_instance;
HDC m_deviceContext;
2012-01-20 03:48:38 +01:00
HCURSOR m_cursor;
HCURSOR m_defaultCursor;
2012-08-20 23:53:06 +02:00
bool m_hidden;
2012-06-10 20:52:08 +02:00
#ifdef OPENGL_ES
EGLConfig m_eglConfig;
EGLContext m_eglContext;
EGLDisplay m_eglDisplay;
EGLSurface m_eglSurface;
#else
HGLRC m_wglContext;
#endif
2011-08-16 15:06:16 +02:00
};
#endif