blob: 931f0fa1c4dcd4395eb9e4651e5210437b35352a (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
#pragma once
#if defined(_WIN32)
# define CALLING_CONVENTION_SUFFIX_VOID_FUNCTION "@0"
# ifdef _MSC_VER
# error "No support for MSVC anymore"
#else
# define MAYBE_STDCALL_UNDERSCORE ""
# endif
#else
# define CALLING_CONVENTION_SUFFIX_VOID_FUNCTION ""
# define MAYBE_STDCALL_UNDERSCORE ""
#endif
#include <cstdio>
#include <QWidget>
#include <QDebug>
#include <QString>
#include <QLibrary>
#include <QFrame>
#include "ftnoir_tracker_base/ftnoir_tracker_base.h"
#include "ftnoir_filter_base/ftnoir_filter_base.h"
#include "ftnoir_protocol_base/ftnoir_protocol_base.h"
#if defined(_WIN32)
# define CALLING_CONVENTION __stdcall
#else
# define CALLING_CONVENTION
#endif
class IDynamicLibraryProvider;
struct SelectedLibraries {
public:
ITracker* pTracker;
ITracker* pSecondTracker;
IFilter* pFilter;
IProtocol* pProtocol;
SelectedLibraries(IDynamicLibraryProvider* main = NULL);
~SelectedLibraries();
bool correct;
};
extern SelectedLibraries* Libraries;
struct Metadata;
extern "C" typedef void* (CALLING_CONVENTION * CTOR_FUNPTR)(void);
extern "C" typedef Metadata* (CALLING_CONVENTION* METADATA_FUNPTR)(void);
extern "C" typedef void* (CALLING_CONVENTION* DIALOG_FUNPTR)(void);
class DynamicLibrary {
public:
DynamicLibrary(const QString& filename);
virtual ~DynamicLibrary();
DIALOG_FUNPTR Dialog;
CTOR_FUNPTR Constructor;
METADATA_FUNPTR Metadata;
QString filename;
private:
#if defined(_WIN32)
QLibrary* handle;
#else
void* handle;
#endif
};
struct Metadata
{
Metadata() {}
virtual ~Metadata() {}
virtual void getFullName(QString *strToBeFilled) = 0;
virtual void getShortName(QString *strToBeFilled) = 0;
virtual void getDescription(QString *strToBeFilled) = 0;
virtual void getIcon(QIcon *icon) = 0;
};
// merely to break a circular header dependency -sh
class IDynamicLibraryProvider {
public:
virtual DynamicLibrary* current_tracker1() = 0;
virtual DynamicLibrary* current_tracker2() = 0;
virtual DynamicLibrary* current_protocol() = 0;
virtual DynamicLibrary* current_filter() = 0;
virtual QFrame* get_video_widget() = 0;
};
|