xbmc
GUIDialogVideoOSD.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 "guilib/GUIDialog.h"
12 
14 {
15 public:
16 
17  CGUIDialogVideoOSD(void);
18  ~CGUIDialogVideoOSD(void) override;
19 
20  void FrameMove() override;
21  bool OnMessage(CGUIMessage& message) override;
22  bool OnAction(const CAction &action) override;
23 protected:
24  EVENT_RESULT OnMouseEvent(const CPoint &point, const CMouseEvent &event) override;
25 };
void FrameMove() override
Main update function, called every frame prior to rendering Any window that requires updating on a fr...
Definition: GUIDialogVideoOSD.cpp:32
Definition: GUIDialogVideoOSD.h:13
EVENT_RESULT
Results of OnMouseEvent() Any value not equal to EVENT_RESULT_UNHANDLED indicates that the event was ...
Definition: GUIControl.h:60
EVENT_RESULT OnMouseEvent(const CPoint &point, const CMouseEvent &event) override
Perform a mouse action.
Definition: GUIDialogVideoOSD.cpp:63
class encapsulating information regarding a particular user action to be sent to windows and controls...
Definition: Action.h:22
Definition: GUIDialog.h:35
Definition: GUIMessage.h:365
Simple class for mouse events.
Definition: Key.h:114