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
89
90
91
|
/**
* Inkscape::Whiteboard::InkboardDocument - Inkboard document implementation
*
* Authors:
* David Yip <yipdw@rose-hulman.edu>
*
* Copyright (c) 2005 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <glib.h>
#include <glibmm.h>
#include "jabber_whiteboard/inkboard-document.h"
#include "xml/simple-session.h"
#include "jabber_whiteboard/inkboard-session.h"
#include "jabber_whiteboard/session-manager.h"
namespace Inkscape {
namespace Whiteboard {
InkboardDocument::InkboardDocument(int code, SessionType type, Glib::ustring const& to) :
XML::SimpleNode(code), _type(type), _recipient(to)
{
_initBindings();
}
void
InkboardDocument::_initBindings()
{
_bindDocument(*this);
_bindLogger(*(new XML::SimpleSession()));
}
void
InkboardDocument::setRecipient(Glib::ustring const& val)
{
this->_recipient = val;
}
Glib::ustring
InkboardDocument::getRecipient() const
{
return this->_recipient;
}
void
InkboardDocument::startSessionNegotiation()
{
SessionManager& sm = SessionManager::instance();
switch (_type) {
case INKBOARD_MUC:
sm.sendGroup(_recipient, CHATROOM_SYNCHRONIZE_REQUEST, " ");
break;
case INKBOARD_PRIVATE:
default:
sm.sendProtocol(_recipient, CONNECT_REQUEST_USER);
break;
}
}
void
InkboardDocument::terminateSession()
{
}
void
InkboardDocument::processInkboardEvent(MessageType mtype, unsigned int seqnum, Glib::ustring const& data)
{
g_log(NULL, G_LOG_LEVEL_DEBUG, "Processing Inkboard event: mtype=%d seqnum=%d data=%s\n", mtype, seqnum, data.c_str());
}
}
}
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
|