Merge pull request #4687 from ruuk/textboxgettext
[vuplus_xbmc] / xbmc / guilib / IWindowManagerCallback.h
1 /*!
2 \file IWindowManagerCallback.h
3 \brief
4 */
5
6 #pragma once
7
8 /*
9  *      Copyright (C) 2005-2013 Team XBMC
10  *      http://xbmc.org
11  *
12  *  This Program is free software; you can redistribute it and/or modify
13  *  it under the terms of the GNU General Public License as published by
14  *  the Free Software Foundation; either version 2, or (at your option)
15  *  any later version.
16  *
17  *  This Program is distributed in the hope that it will be useful,
18  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
19  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  *  GNU General Public License for more details.
21  *
22  *  You should have received a copy of the GNU General Public License
23  *  along with XBMC; see the file COPYING.  If not, see
24  *  <http://www.gnu.org/licenses/>.
25  *
26  */
27
28 /*!
29  \ingroup winman
30  \brief
31  */
32 class IWindowManagerCallback
33 {
34 public:
35   IWindowManagerCallback(void);
36   virtual ~IWindowManagerCallback(void);
37
38   virtual void FrameMove(bool processEvents, bool processGUI = true) = 0;
39   virtual void Render() = 0;
40   virtual void Process() = 0;
41 };