blob: 40c8364acabdca5de0597dc265a323414172ef33 (
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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
|
/*
* Author:
* Gustav Broberg <broberg@kth.se>
*
* Copyright (c) 2006 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <glibmm/i18n.h>
#include "desktop.h"
#include "event-log.h"
namespace Inkscape {
EventLog::EventLog() :
UndoStackObserver(),
_connected (false),
_event_list_store (Gtk::TreeStore::create(_columns)),
_event_list_selection (NULL),
_event_list_view (NULL),
_curr_event_parent (NULL),
_notifications_blocked (false),
_callback_connections (NULL)
{
// add initial pseudo event
Gtk::TreeRow curr_row = *(_event_list_store->append());
_curr_event = _last_event = curr_row;
curr_row[_columns.description] = _("[Unchanged]");
curr_row[_columns.type] = SP_VERB_FILE_NEW;
}
EventLog::~EventLog() { }
void
EventLog::notifyUndoEvent(Event* log)
{
if ( !_notifications_blocked ) {
// if we're on the first child event...
if ( _curr_event->parent() &&
_curr_event == _curr_event->parent()->children().begin() )
{
// ...back up to the parent
_curr_event = _curr_event->parent();
_curr_event_parent = (iterator)NULL;
} else {
// if we're about to leave a branch, collapse it
if ( !_curr_event->children().empty() && _connected ) {
(*_callback_connections)[CALLB_COLLAPSE].block();
_event_list_view->collapse_row(_event_list_store->get_path(_curr_event));
(*_callback_connections)[CALLB_COLLAPSE].block(false);
}
--_curr_event;
// if we're entering a branch, move to the end of it
if (!_curr_event->children().empty()) {
_curr_event_parent = _curr_event;
_curr_event = _curr_event->children().end();
--_curr_event;
}
}
// update the view
if (_connected) {
(*_callback_connections)[CALLB_SELECTION_CHANGE].block();
(*_callback_connections)[CALLB_EXPAND].block();
Gtk::TreePath curr_path = _event_list_store->get_path(_curr_event);
_event_list_view->expand_to_path(curr_path);
_event_list_selection->select(curr_path);
_event_list_view->scroll_to_row(curr_path);
(*_callback_connections)[CALLB_EXPAND].block(false);
(*_callback_connections)[CALLB_SELECTION_CHANGE].block(false);
}
}
}
void
EventLog::notifyRedoEvent(Event* log)
{
if ( !_notifications_blocked ) {
// if we're on a parent event...
if ( !_curr_event->children().empty() ) {
// ...move to its first child
_curr_event_parent = _curr_event;
_curr_event = _curr_event->children().begin();
} else {
++_curr_event;
// if we are about to leave a branch...
if ( _curr_event->parent() &&
_curr_event == _curr_event->parent()->children().end() )
{
// ...collapse it
if (_connected) {
(*_callback_connections)[CALLB_SELECTION_CHANGE].block();
(*_callback_connections)[CALLB_COLLAPSE].block();
_event_list_view->collapse_row(_event_list_store->get_path(_curr_event->parent()));
(*_callback_connections)[CALLB_COLLAPSE].block(false);
(*_callback_connections)[CALLB_SELECTION_CHANGE].block(false);
}
// ...and move to the next event at parent level
_curr_event = _curr_event->parent();
_curr_event_parent = (iterator)NULL;
++_curr_event;
}
}
// update the view
if (_connected) {
Gtk::TreePath curr_path = _event_list_store->get_path(_curr_event);
(*_callback_connections)[CALLB_SELECTION_CHANGE].block();
(*_callback_connections)[CALLB_EXPAND].block();
_event_list_view->expand_to_path(curr_path);
_event_list_selection->select(curr_path);
_event_list_view->scroll_to_row(curr_path);
(*_callback_connections)[CALLB_EXPAND].block(false);
(*_callback_connections)[CALLB_SELECTION_CHANGE].block(false);
}
}
}
void
EventLog::notifyUndoCommitEvent(Event* log)
{
// If we're not at the last event in list then erase the previously undone events
if ( _last_event != _curr_event ) {
_last_event = _curr_event;
if ( !_last_event->children().empty() ) {
_last_event = _last_event->children().begin();
} else {
++_last_event;
}
while ( _last_event != _event_list_store->children().end() ) {
if (_last_event->parent()) {
while ( _last_event != _last_event->parent()->children().end() ) {
_last_event = _event_list_store->erase(_last_event);
}
_last_event = _last_event->parent();
(*_last_event)[_columns.child_count] = _last_event->children().size() + 1;
++_last_event;
} else {
_last_event = _event_list_store->erase(_last_event);
}
}
}
const unsigned int event_type = log->type;
Gtk::TreeRow curr_row;
// if the new event is of the same type as the previous then create a new branch
if ( event_type == (*_curr_event)[_columns.type] ) {
if ( !_curr_event_parent ) {
_curr_event_parent = _curr_event;
}
curr_row = *(_event_list_store->append(_curr_event_parent->children()));
(*_curr_event_parent)[_columns.child_count] = _curr_event_parent->children().size() + 1;
} else {
curr_row = *(_event_list_store->append());
curr_row[_columns.child_count] = 1;
_curr_event = _last_event = curr_row;
// collapse if we're leaving a branch
if (_curr_event_parent && _connected) {
(*_callback_connections)[CALLB_COLLAPSE].block();
_event_list_view->collapse_row(_event_list_store->get_path(_curr_event_parent));
(*_callback_connections)[CALLB_COLLAPSE].block(false);
}
_curr_event_parent = (iterator)(NULL);
}
_curr_event = _last_event = curr_row;
curr_row[_columns.type] = event_type;
curr_row[_columns.description] = log->description;
// update the view
if (_connected) {
Gtk::TreePath curr_path = _event_list_store->get_path(_curr_event);
(*_callback_connections)[CALLB_SELECTION_CHANGE].block();
(*_callback_connections)[CALLB_EXPAND].block();
_event_list_view->expand_to_path(curr_path);
_event_list_selection->select(curr_path);
_event_list_view->scroll_to_row(curr_path);
(*_callback_connections)[CALLB_EXPAND].block(false);
(*_callback_connections)[CALLB_SELECTION_CHANGE].block(false);
}
}
void
EventLog::connectWithDialog(Gtk::TreeView *event_list_view, CallbackMap *callback_connections)
{
_event_list_view = event_list_view;
_event_list_selection = event_list_view->get_selection();
_event_list_selection->set_mode(Gtk::SELECTION_SINGLE);
_callback_connections = callback_connections;
(*_callback_connections)[CALLB_SELECTION_CHANGE].block();
(*_callback_connections)[CALLB_EXPAND].block();
_event_list_view->expand_to_path(_event_list_store->get_path(_curr_event));
_event_list_selection->select(_curr_event);
(*_callback_connections)[CALLB_EXPAND].block(false);
(*_callback_connections)[CALLB_SELECTION_CHANGE].block(false);
_connected = true;
}
}
/*
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 :
|