Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/libraries/core/WindowEventListener.cc @ 7874

Last change on this file since 7874 was 7874, checked in by landauf, 13 years ago

WindowEventListener now declares if the window's focus is active or not.
CEGUI stops highlighting menu items if the window's focus is lost, i.e. after pressing alt+tab

  • Property svn:eol-style set to native
File size: 2.1 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Reto Grieder
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#include "WindowEventListener.h"
30#include "CoreIncludes.h"
31
32namespace orxonox
33{
34    unsigned int WindowEventListener::windowWidth_s  = 0;
35    unsigned int WindowEventListener::windowHeight_s = 0;
36
37    WindowEventListener::WindowEventListener()
38    {
39        RegisterRootObject(WindowEventListener);
40    }
41
42    //! Calls all registered objects
43    /*static*/ void WindowEventListener::moveWindow()
44    {
45        for (ObjectList<WindowEventListener>::iterator it = ObjectList<WindowEventListener>::begin(); it; ++it)
46            it->windowMoved();
47    }
48
49    //! Calls all registered objects and sets the static variables
50    /*static*/ void WindowEventListener::resizeWindow(unsigned int newWidth, unsigned int newHeight)
51    {
52        windowWidth_s = newWidth;
53        windowHeight_s = newHeight;
54        for (ObjectList<WindowEventListener>::iterator it = ObjectList<WindowEventListener>::begin(); it; ++it)
55            it->windowResized(newWidth, newHeight);
56    }
57
58    //! Calls all registered objects
59    /*static*/ void WindowEventListener::changeWindowFocus(bool bFocus)
60    {
61        for (ObjectList<WindowEventListener>::iterator it = ObjectList<WindowEventListener>::begin(); it; ++it)
62            it->windowFocusChanged(bFocus);
63    }
64}
Note: See TracBrowser for help on using the repository browser.