-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDeleteButton.m
74 lines (60 loc) · 2.54 KB
/
DeleteButton.m
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
classdef DeleteButton < Interactable
properties
img
axes;
node;
end
methods
function obj = DeleteButton(pos,fcn, node)
[obj.img, map, alphachannel] = imread('Trashcan_icon.png');
obj.axes = axes('pos', [pos(1)+pos(3)/2.7 pos(5) 0.05 0.09]); %Use axes to position the image
image(obj.img, 'AlphaData', alphachannel);
obj.axes.Visible = 'off'; %Make the plot axes invisible to only show the image.
obj.node = node; %Reference to the node that created the delete button, so we can later delete the correct node
%Annotation is used to make the button interactable
obj.anno = annotation('ellipse','Position',[pos(1)+pos(3)/2.7 pos(2) 0.049 0.089],'ButtonDownFcn',fcn,'Color','r');
end
function removeNode(obj,node)
obj.removeButton();
global Interactables
delete(node.anno);
%Disconnect the lines attached to the node
node.inSocket.disconnectLine();
node.outSocket.disconnectLine();
%Remove the node and sockets from the interactables list
for i = 1:length(Interactables)
try
if Interactables{i}.anno == node.anno
Interactables(i) = []; %Remove the node from the interactables list
Interactables(i-1) = [];
Interactables(i-2) = [];
end
catch
end
end
%Delete everything related to that node
delete(node.inSocket.anno);
delete(node.outSocket.anno);
delete(node.inSocket);
delete(node.outSocket);
delete(node);
end
function removeButton(obj)
global Interactables
obj.img = [];
delete(obj.axes);
delete(obj.anno);
for i = 1:length(Interactables)
if Interactables{i} == obj
Interactables{i} = [];
end
end
end
function select(obj)
end
function drag(obj)
end
function drop(obj)
end
end
end