xbmc
GUIDialogPlayEject.h
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 
11 #include "GUIDialogYesNo.h"
12 
14 {
15 public:
17  ~CGUIDialogPlayEject() override;
18  bool OnMessage(CGUIMessage& message) override;
19  void FrameMove() override;
20 
21  static bool ShowAndGetInput(const std::string& strLine1,
22  const std::string& strLine2,
23  unsigned int uiAutoCloseTime = 0);
24 
25 protected:
26  void OnInitWindow() override;
27 };
void FrameMove() override
Main update function, called every frame prior to rendering Any window that requires updating on a fr...
Definition: GUIDialogPlayEject.cpp:54
void OnInitWindow() override
Called on window open.
Definition: GUIDialogPlayEject.cpp:61
Definition: GUIDialogPlayEject.h:13
Definition: GUIMessage.h:365
Definition: GUIDialogYesNo.h:25