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:
authorDiego Borghetti <bdiego@gmail.com>2008-09-22 23:09:46 +0400
committerDiego Borghetti <bdiego@gmail.com>2008-09-22 23:09:46 +0400
commit4e731c5ab5ba9e12748a5632329dcc0854def928 (patch)
tree6653494c134950a4c40d537c0c448b258e58845c /intern/ghost/intern/GHOST_WindowX11.h
parent48c54c275b10e6cb2e26d488e26820703f0ee67b (diff)
Revert full screen, maximized and minimized code (rev 16543).
Revert this because don't work "fine" with dual-monitor. The problem is not the code, this work fine, but full screen for a window manager is not both monitor (until set xinerama or whatever..).
Diffstat (limited to 'intern/ghost/intern/GHOST_WindowX11.h')
-rw-r--r--intern/ghost/intern/GHOST_WindowX11.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/intern/ghost/intern/GHOST_WindowX11.h b/intern/ghost/intern/GHOST_WindowX11.h
index 1d73faaf3f6..abb5c131cb7 100644
--- a/intern/ghost/intern/GHOST_WindowX11.h
+++ b/intern/ghost/intern/GHOST_WindowX11.h
@@ -212,15 +212,6 @@ public:
const GHOST_TabletData* GetTabletData()
{ return &m_xtablet.CommonData; }
-
- /*
- * Need this in case that we want start the window
- * in FullScreen or Maximized state.
- * Check GHOST_WindowX11.cpp
- */
- bool m_post_init;
- GHOST_TWindowState m_post_state;
-
protected:
/**
* Tries to install a rendering context in this window.
@@ -336,18 +327,6 @@ private :
/* Tablet devices */
XTablet m_xtablet;
-
- void icccmSetState(int state);
- int icccmGetState() const;
-
- void netwmMaximized(bool set);
- bool netwmIsMaximized() const;
-
- void netwmFullScreen(bool set);
- bool netwmIsFullScreen() const;
-
- void motifFullScreen(bool set);
- bool motifIsFullScreen() const;
};