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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
/**
* Inkscape::Whiteboard::InkboardSession - Whiteboard implementation of XML::Session
*
* Authors:
* David Yip <yipdw@rose-hulman.edu>
*
* Copyright (c) 2005 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <glibmm.h>
#include <glib/gmessages.h>
#include <glib/gquark.h>
#include "jabber_whiteboard/inkboard-session.h"
#include "xml/node.h"
#include "xml/event.h"
#include "xml/element-node.h"
#include "xml/text-node.h"
#include "xml/comment-node.h"
#include "util/share.h"
namespace Inkscape {
namespace Whiteboard {
using XML::Node;
void
InkboardSession::beginTransaction()
{
g_assert(!_in_transaction);
_in_transaction = true;
}
void
InkboardSession::rollback()
{
g_assert(_in_transaction);
_in_transaction = false;
}
void
InkboardSession::commit()
{
g_assert(_in_transaction);
_in_transaction = false;
}
XML::Event*
InkboardSession::commitUndoable()
{
g_assert(_in_transaction);
_in_transaction = false;
return NULL;
}
XML::Node*
InkboardSession::createElementNode(char const* name)
{
g_log(NULL, G_LOG_LEVEL_DEBUG, "InkboardSession::createElementNode");
return new XML::ElementNode(g_quark_from_string(name));
}
XML::Node*
InkboardSession::createTextNode(char const* content)
{
g_log(NULL, G_LOG_LEVEL_DEBUG, "InkboardSession::createTextNode");
return new XML::TextNode(Util::share_string(content));
}
XML::Node*
InkboardSession::createCommentNode(char const* content)
{
g_log(NULL, G_LOG_LEVEL_DEBUG, "InkboardSession::createCommentNode");
return new XML::CommentNode(Util::share_string(content));
}
void InkboardSession::notifyChildAdded(Node &parent,
Node &child,
Node *prev)
{
if (_in_transaction) {
}
}
void InkboardSession::notifyChildRemoved(Node &parent,
Node &child,
Node *prev)
{
if (_in_transaction) {
}
}
void InkboardSession::notifyChildOrderChanged(Node &parent,
Node &child,
Node *old_prev,
Node *new_prev)
{
if (_in_transaction) {
}
}
void InkboardSession::notifyContentChanged(Node &node,
Util::SharedCStringPtr old_content,
Util::SharedCStringPtr new_content)
{
if (_in_transaction) {
}
}
void InkboardSession::notifyAttributeChanged(Node &node,
GQuark name,
Util::SharedCStringPtr old_value,
Util::SharedCStringPtr new_value)
{
if (_in_transaction) {
}
}
}
}
|