summaryrefslogtreecommitdiff
path: root/avmedia/source/vlc/wrapper/EventManager.hxx
blob: 751c0e8c20f061f3f5e63ab2f30e3a01fa8adabc (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
/* -*- 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/.
 */

#ifndef _WRAPPER_EVENT_MANAGER_HXX
#define _WRAPPER_EVENT_MANAGER_HXX

#include <boost/function.hpp>
#include <boost/shared_ptr.hpp>

#include "Player.hxx"

struct libvlc_event_manager_t;
struct libvlc_event_t;

namespace VLC
{
    class EventHandler;
    class EventManager
    {

    public:
        static bool LoadSymbols();
        typedef boost::function<void()> Callback;

        EventManager( VLC::Player& player, boost::shared_ptr<VLC::EventHandler> eh );
        virtual ~EventManager();

        void onPaused( const Callback& callback = Callback() );
        void onEndReached( const Callback& callback = Callback() );

    private:
        boost::shared_ptr<VLC::EventHandler> mEventHandler;
        typedef boost::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 );
    };
}

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */