-
Notifications
You must be signed in to change notification settings - Fork 5
/
Blabble.h
73 lines (58 loc) · 2.31 KB
/
Blabble.h
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
/**********************************************************\
Auto-generated Blabble.h
This file contains the auto-generated main plugin object
implementation for the BlabblePhone project
\**********************************************************/
#ifndef H_BlabblePLUGIN
#define H_BlabblePLUGIN
#include "PluginWindow.h"
#include "PluginEvents/MouseEvents.h"
#include "PluginEvents/AttachedEvent.h"
#include "PluginCore.h"
#include <pjlib.h>
#include <pjlib-util.h>
#include <pjnath.h>
#include <pjsip.h>
#include <pjsip_ua.h>
#include <pjsip_simple.h>
#include <pjsua-lib/pjsua.h>
#include <pjmedia.h>
#include <pjmedia-codec.h>
FB_FORWARD_PTR(Blabble)
FB_FORWARD_PTR(PjsuaManager)
class Blabble : public FB::PluginCore
{
public:
static void StaticInitialize();
static void StaticDeinitialize();
public:
Blabble();
virtual ~Blabble();
public:
void onPluginReady();
void shutdown();
virtual FB::JSAPIPtr createJSAPI();
// If you want your plugin to always be windowless, set this to true
// If you want your plugin to be optionally windowless based on the
// value of the "windowless" param tag, remove this method or return
// FB::PluginCore::isWindowless()
virtual bool isWindowless() { return false; }
virtual void getLoggingMethods(FB::Log::LogMethodList& outMethods);
BEGIN_PLUGIN_EVENT_MAP()
EVENTTYPE_CASE(FB::MouseDownEvent, onMouseDown, FB::PluginWindow)
EVENTTYPE_CASE(FB::MouseUpEvent, onMouseUp, FB::PluginWindow)
EVENTTYPE_CASE(FB::MouseMoveEvent, onMouseMove, FB::PluginWindow)
EVENTTYPE_CASE(FB::MouseMoveEvent, onMouseMove, FB::PluginWindow)
EVENTTYPE_CASE(FB::AttachedEvent, onWindowAttached, FB::PluginWindow)
EVENTTYPE_CASE(FB::DetachedEvent, onWindowDetached, FB::PluginWindow)
END_PLUGIN_EVENT_MAP()
/** BEGIN EVENTDEF -- DON'T CHANGE THIS LINE **/
virtual bool onMouseDown(FB::MouseDownEvent *evt, FB::PluginWindow *);
virtual bool onMouseUp(FB::MouseUpEvent *evt, FB::PluginWindow *);
virtual bool onMouseMove(FB::MouseMoveEvent *evt, FB::PluginWindow *);
virtual bool onWindowAttached(FB::AttachedEvent *evt, FB::PluginWindow *);
virtual bool onWindowDetached(FB::DetachedEvent *evt, FB::PluginWindow *);
/** END EVENTDEF -- DON'T CHANGE THIS LINE **/
private:
};
#endif // H_BlabblePLUGIN