xbmc
IWindowManagerCallback.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2005-2018 Team Kodi
3  * This file is part of Kodi - https://kodi.tv
4  *
5  * SPDX-License-Identifier: GPL-2.0-or-later
6  * See LICENSES/README.md for more information.
7  */
8 
9 #pragma once
10 
21 {
22 public:
24  virtual ~IWindowManagerCallback(void);
25 
26  virtual void FrameMove(bool processEvents, bool processGUI = true) = 0;
27  virtual void Render() = 0;
28  virtual void Process() = 0;
29  virtual bool GetRenderGUI() const { return false; }
30 };
Definition: IWindowManagerCallback.h:20