/* * Copyright (c) 2010-2012 OTClient * * 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 PLATFORMWINDOW_H #define PLATFORMWINDOW_H #include #include #include class PlatformWindow { enum { KEY_PRESS_REPEAT_INTERVAL = 30, KEY_PRESS_REPEAT_DELAY = 500 }; typedef std::function OnResizeCallback; typedef std::function OnInputEventCallback; public: virtual void init() = 0; virtual void terminate() = 0; virtual void move(const Point& pos) = 0; virtual void resize(const Size& size) = 0; virtual void show() = 0; virtual void hide() = 0; virtual void maximize() = 0; virtual void poll() = 0; virtual void swapBuffers() = 0; virtual void restoreMouseCursor() = 0; virtual void showMouse() = 0; virtual void hideMouse() = 0; virtual void displayFatalError(const std::string& message) { } virtual void setMouseCursor(const std::string& file, const Point& hotSpot) = 0; virtual void setTitle(const std::string& title) = 0; virtual void setMinimumSize(const Size& minimumSize) = 0; virtual void setFullscreen(bool fullscreen) = 0; virtual void setVerticalSync(bool enable) = 0; virtual void setIcon(const std::string& iconFile) = 0; virtual void setClipboardText(const std::string& text) = 0; virtual Size getDisplaySize() = 0; virtual std::string getClipboardText() = 0; virtual std::string getPlatformType() = 0; int getDisplayWidth() { return getDisplaySize().width(); } int getDisplayHeight() { return getDisplaySize().width(); } Size getUnmaximizedSize() { return m_unmaximizedSize; } Size getSize() { return m_size; } int getWidth() { return m_size.width(); } int getHeight() { return m_size.height(); } Point getUnmaximizedPos() { return m_unmaximizedPos; } Point getPosition() { return m_position; } int getX() { return m_position.x; } int getY() { return m_position.y; } Point getMousePosition() { return m_inputEvent.mousePos; } int getKeyboardModifiers() { return m_inputEvent.keyboardModifiers; } bool isKeyPressed(Fw::Key keyCode) { return m_keysState[keyCode]; } bool isVisible() { return m_visible; } bool isFullscreen() { return m_fullscreen; } virtual bool isMaximized() = 0; bool hasFocus() { return m_focused; } void setOnClose(const SimpleCallback& onClose) { m_onClose = onClose; } void setOnResize(const OnResizeCallback& onResize) { m_onResize = onResize; } void setOnInputEvent(const OnInputEventCallback& onInputEvent) { m_onInputEvent = onInputEvent; } protected: void updateUnmaximizedCoords(); void processKeyDown(Fw::Key keyCode); void processKeyUp(Fw::Key keyCode); void releaseAllKeys(); void fireKeysPress(); std::map m_keyMap; std::map> m_keysState; std::map m_firstKeysPress; std::map m_lastKeysPress; Timer m_keyPressTimer; Size m_size; Point m_position; Size m_unmaximizedSize; Point m_unmaximizedPos; InputEvent m_inputEvent; Boolean m_created; Boolean m_visible; Boolean m_focused; Boolean m_fullscreen; SimpleCallback m_onClose; OnResizeCallback m_onResize; OnInputEventCallback m_onInputEvent; }; extern PlatformWindow& g_window; #endif