blob: 9a85154831b17b45d8421d65bcfd203d3c12f956 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#pragma once
#include <functional>
#include <wrapper/Player.hxx>
struct libvlc_event_manager_t;
struct libvlc_event_t;
namespace avmedia
{
namespace vlc
{
namespace wrapper
{
class EventHandler;
class EventManager
{
public:
EventManager(const EventManager&) = delete;
const EventManager& operator=(const EventManager&) = delete;
static bool LoadSymbols();
typedef std::function<void()> Callback;
EventManager( Player& player, EventHandler& eh );
void onPaused( const Callback& callback = Callback() );
void onEndReached( const Callback& callback = Callback() );
private:
EventHandler& mEventHandler;
typedef std::function< void() > TCallback;
libvlc_event_manager_t *mManager;
TCallback mOnPaused;
TCallback mOnEndReached;
void registerSignal( int signal, const Callback& callback );
static void Handler( const libvlc_event_t *event, void *pData );
};
}
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|