blob: 08a86072f2718f31cf70a4e423a8aca49ee42ef7 (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Provides a class that can contain active TemporaryItem's on a desktop
* When the object is deleted, it also deletes the canvasitem it contains!
* This object should be created/managed by a TemporaryItemList.
* After its lifetime, it fires the timeout signal, afterwards *it deletes itself*.
*
* (part of code inspired by message-stack.cpp)
*
* Authors:
* Johan Engelen
*
* Copyright (C) Johan Engelen 2008 <j.b.c.engelen@utwente.nl>
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include <glib.h>
#include "canvas-temporary-item.h"
#include "canvas-item.h"
namespace Inkscape {
namespace Display {
/** lifetime is measured in milliseconds
*/
TemporaryItem::TemporaryItem(CanvasItem *item, guint lifetime, bool deselect_destroy)
: canvasitem(item),
timeout_id(0),
destroy_on_deselect(deselect_destroy)
{
if (lifetime > 0 && destroy_on_deselect) {
g_print ("Warning: lifetime should be 0 when destroy_on_deselect is true\n");
lifetime = 0;
}
// zero lifetime means stay forever, so do not add timeout event.
if (lifetime > 0) {
timeout_id = g_timeout_add(lifetime, &TemporaryItem::_timeout, this);
}
}
TemporaryItem::~TemporaryItem()
{
// when it has not expired yet...
if (timeout_id) {
g_source_remove(timeout_id);
timeout_id = 0;
}
if (canvasitem) {
// destroying the item automatically hides it
delete canvasitem;
canvasitem = nullptr;
}
}
/* static method */
int TemporaryItem::_timeout(void* data) {
TemporaryItem *tempitem = static_cast<TemporaryItem *>(data);
tempitem->timeout_id = 0;
tempitem->signal_timeout.emit(tempitem);
delete tempitem;
return FALSE;
}
} //namespace Display
} /* namespace Inkscape */
/*
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 :
|