2 * Copyright (C) 2005-2013 Team XBMC
5 * This Program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2, or (at your option)
10 * This Program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with XBMC; see the file COPYING. If not, see
17 * <http://www.gnu.org/licenses/>.
21 #ifndef XBAPPLICATIONEX_H
22 #define XBAPPLICATIONEX_H
24 #include "guilib/IWindowManagerCallback.h"
26 // Do not change the numbering, external scripts depend on them
29 EXITCODE_POWERDOWN
= 64,
30 EXITCODE_RESTARTAPP
= 65,
34 class CXBApplicationEx
: public IWindowManagerCallback
40 // Variables for timing
46 // Overridable functions for the 3D scene created by the app
47 virtual bool Initialize() { return true; }
48 virtual bool Cleanup() { return true; }
49 virtual void SetRenderGUI(bool renderGUI
) {};
52 // Functions to create, run, and clean up the application
53 virtual bool Create();
60 #endif /* XBAPPLICATIONEX_H */