Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/ghost/intern/GHOST_WindowManager.h')
-rw-r--r--intern/ghost/intern/GHOST_WindowManager.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/intern/ghost/intern/GHOST_WindowManager.h b/intern/ghost/intern/GHOST_WindowManager.h
index 8297e4d24d2..e868a9b0416 100644
--- a/intern/ghost/intern/GHOST_WindowManager.h
+++ b/intern/ghost/intern/GHOST_WindowManager.h
@@ -55,7 +55,7 @@ public:
/**
* Destructor.
*/
- virtual ~GHOST_WindowManager();
+ ~GHOST_WindowManager();
/**
* Add a window to our list.
@@ -63,67 +63,67 @@ public:
* \param window Pointer to the window to be added.
* \return Indication of success.
*/
- virtual GHOST_TSuccess addWindow(GHOST_IWindow *window);
+ GHOST_TSuccess addWindow(GHOST_IWindow *window);
/**
* Remove a window from our list.
* \param window Pointer to the window to be removed.
* \return Indication of success.
*/
- virtual GHOST_TSuccess removeWindow(const GHOST_IWindow *window);
+ GHOST_TSuccess removeWindow(const GHOST_IWindow *window);
/**
* Returns whether the window is in our list.
* \param window Pointer to the window to query.
* \return A boolean indicator.
*/
- virtual bool getWindowFound(const GHOST_IWindow *window) const;
+ bool getWindowFound(const GHOST_IWindow *window) const;
/**
* Returns whether one of the windows is fullscreen.
* \return A boolean indicator.
*/
- virtual bool getFullScreen(void) const;
+ bool getFullScreen(void) const;
/**
* Returns pointer to the full-screen window.
* \return The full-screen window (NULL if not in full-screen).
*/
- virtual GHOST_IWindow *getFullScreenWindow(void) const;
+ GHOST_IWindow *getFullScreenWindow(void) const;
/**
* Activates fullscreen mode for a window.
* \param window The window displayed fullscreen.
* \return Indication of success.
*/
- virtual GHOST_TSuccess beginFullScreen(GHOST_IWindow *window, const bool stereoVisual);
+ GHOST_TSuccess beginFullScreen(GHOST_IWindow *window, const bool stereoVisual);
/**
* Closes fullscreen mode down.
* \return Indication of success.
*/
- virtual GHOST_TSuccess endFullScreen(void);
+ GHOST_TSuccess endFullScreen(void);
/**
* Sets new window as active window (the window receiving events).
* There can be only one window active which should be in the current window list.
* \param window The new active window.
*/
- virtual GHOST_TSuccess setActiveWindow(GHOST_IWindow *window);
+ GHOST_TSuccess setActiveWindow(GHOST_IWindow *window);
/**
* Returns the active window (the window receiving events).
* There can be only one window active which should be in the current window list.
* \return window The active window (or NULL if there is none).
*/
- virtual GHOST_IWindow *getActiveWindow(void) const;
+ GHOST_IWindow *getActiveWindow(void) const;
/**
* Set this window to be inactive (not receiving events).
* \param window The window to deactivate.
*/
- virtual void setWindowInactive(const GHOST_IWindow *window);
+ void setWindowInactive(const GHOST_IWindow *window);
/**
@@ -140,7 +140,7 @@ public:
* \param osWindow The OS window object/handle
* \return The associated window, null if none corresponds
*/
- virtual GHOST_IWindow *getWindowAssociatedWithOSWindow(void *osWindow);
+ GHOST_IWindow *getWindowAssociatedWithOSWindow(void *osWindow);
/**
* Return true if any windows has a modified status