xbmc
GUIWindowSplash.h
1 /*
2  * Copyright (C) 2015-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 
11 #include "guilib/GUIWindow.h"
12 
13 #include <memory>
14 
15 class CGUITextLayout;
16 class CGUIImage;
17 
19 {
20 public:
21  CGUIWindowSplash(void);
22  ~CGUIWindowSplash(void) override;
23  bool OnAction(const CAction& action) override { return false; }
24  void Render() override;
25 protected:
26  void OnInitWindow() override;
27 private:
28  std::unique_ptr<CGUIImage> m_image;
29 };
Definition: GUIWindowSplash.h:18
void OnInitWindow() override
Called on window open.
Definition: GUIWindowSplash.cpp:24
Definition: GUITextLayout.h:52
class encapsulating information regarding a particular user action to be sent to windows and controls...
Definition: Action.h:22
Definition: GUIImage.h:27
Definition: GUIWindow.h:58