xbmc
xbmc
windows
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
18
class
CGUIWindowSplash
:
public
CGUIWindow
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
};
CGUIWindowSplash
Definition:
GUIWindowSplash.h:18
GUIWindow.h
CGUIWindowSplash::OnInitWindow
void OnInitWindow() override
Called on window open.
Definition:
GUIWindowSplash.cpp:24
CGUITextLayout
Definition:
GUITextLayout.h:52
CAction
class encapsulating information regarding a particular user action to be sent to windows and controls...
Definition:
Action.h:22
CGUIImage
Definition:
GUIImage.h:27
CGUIWindow
Definition:
GUIWindow.h:58
Generated by
1.8.13