-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathTimeHandleProvider.java
202 lines (184 loc) · 7.05 KB
/
TimeHandleProvider.java
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
/****************************************************************************
**
** This demo file is part of yFiles for JavaFX 3.6.
**
** Copyright (c) 2000-2023 by yWorks GmbH, Vor dem Kreuzberg 28,
** 72070 Tuebingen, Germany. All rights reserved.
**
** yFiles demo files exhibit yFiles for JavaFX functionalities. Any redistribution
** of demo files in source code or binary form, with or without
** modification, is not permitted.
**
** Owners of a valid software license for a yFiles for JavaFX version that this
** demo is shipped with are allowed to use the demo source code as basis
** for their own yFiles for JavaFX powered applications. Use of such programs is
** governed by the rights and conditions as set out in the yFiles for JavaFX
** license agreement.
**
** THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY EXPRESS OR IMPLIED
** WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
** MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
** NO EVENT SHALL yWorks BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
** TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
** PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
** LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
** NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
** SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**
***************************************************************************/
package viewer.ganttchart;
import com.yworks.yfiles.geometry.PointD;
import com.yworks.yfiles.graph.INode;
import com.yworks.yfiles.view.input.ConstrainedHandle;
import com.yworks.yfiles.view.input.HandlePositions;
import com.yworks.yfiles.view.input.IHandle;
import com.yworks.yfiles.view.input.IHandleProvider;
import com.yworks.yfiles.view.input.IInputModeContext;
import com.yworks.yfiles.view.input.IReshapeHandleProvider;
import java.util.ArrayList;
/**
* Provides resize handles for adjusting the lead and follow-up time of an
* activity when resizing an activity node.
*/
public class TimeHandleProvider implements IHandleProvider {
/**
* The activity node that will be resized.
*/
private final INode node;
private final IReshapeHandleProvider wrappedProvider;
/**
* Initializes a new {@code TimeHandleProvider} instance for the given node.
*/
public TimeHandleProvider( INode node ) {
this.node = node;
this.wrappedProvider = getReshapeHandleProvider(node);
}
/**
* Returns resize handles for adjusting the lead and follow-up time of an
* activity when resizing an activity node.
*/
@Override
public Iterable<IHandle> getHandles( IInputModeContext context ) {
ArrayList<IHandle> handles = new ArrayList<IHandle>();
handles.add(new TimeHandle(node, wrappedProvider.getHandle(context, HandlePositions.WEST), false));
handles.add(new TimeHandle(node, wrappedProvider.getHandle(context, HandlePositions.EAST), true));
return handles;
}
/**
* Retrieves the reshape handle provider associated to the given node.
*/
private static IReshapeHandleProvider getReshapeHandleProvider( INode node ) {
IReshapeHandleProvider provider = node.lookup(IReshapeHandleProvider.class);
return provider instanceof NodeResizeHandleProvider
? ((NodeResizeHandleProvider) provider).getWrapped()
: provider;
}
/**
* Adjusts the lead and follow-up time of an activity node.
*/
public static class TimeHandle extends ConstrainedHandle {
private final INode node;
private final boolean isFollowUp;
private double oldTimeWidth;
TimeHandle( INode node, IHandle wrappedHandle, boolean isFollowUp ) {
super(wrappedHandle);
this.node = node;
this.isFollowUp = isFollowUp;
}
/**
* Returns the lead or follow-up time width depending on this handle's
* {@link #isFollowUp purpose}.
*/
private double getTimeWidth() {
Activity activity = (Activity) node.getTag();
return isFollowUp()
? activity.followUpTimeWidth()
: activity.leadTimeWidth();
}
/**
* Sets the lead of follow-up time width depending on this handle's
* {@link #isFollowUp purpose}.
*/
private void setTimeWidth( double timeWidth ) {
Activity activity = (Activity) node.getTag();
if (isFollowUp()) {
activity.setFollowUpTime(GanttDataUtil.worldLengthToHours(timeWidth));
} else {
activity.setLeadTime(GanttDataUtil.worldLengthToHours(timeWidth));
}
}
/**
* Calculates the lead or follow-up time width for the given new location.
*/
private double calculateTimeWidth( PointD originalLocation, PointD newLocation ) {
if (isFollowUp()) {
return Math.max(0, oldTimeWidth + newLocation.getX() - originalLocation.getX());
} else {
return Math.max(0, oldTimeWidth + originalLocation.getX() - newLocation.getX());
}
}
/**
* Determines if this handle adjusts the lead or follow-up time of an
* activity node.
*/
public boolean isFollowUp() {
return isFollowUp;
}
/**
* Adjusts the lead or follow-up time for the associated activity node
* during node resize operations.
*/
@Override
protected void onMoved(
IInputModeContext context, PointD originalLocation, PointD newLocation
) {
// get current value
double oldTime = getTimeWidth();
// get value from new handle location
double newTime = calculateTimeWidth(originalLocation, newLocation);
if (oldTime != newTime) {
setTimeWidth(newTime);
}
}
/**
* Determines the original lead or follow-up time for the associated
* activity node when a resize gesture starts.
*/
@Override
protected void onInitialized( IInputModeContext context, PointD originalLocation ) {
oldTimeWidth = getTimeWidth();
}
/**
* Resets the lead of follow-up time for the associated activity node
* when a resize gesture is cancelled.
*/
@Override
protected void onCanceled( IInputModeContext context, PointD originalLocation ) {
setTimeWidth(oldTimeWidth);
}
/**
* Adjusts the lead or follow-up time for the associated activity node
* when a node resize is finished.
*/
@Override
protected void onFinished(
IInputModeContext context, PointD originalLocation, PointD newLocation
) {
setTimeWidth(calculateTimeWidth(originalLocation, newLocation));
}
/**
* Restricts the resize operation to the associated node's width and
* limits shrinking the node's width below zero-size lead or follow-up time.
*/
@Override
protected PointD constrainNewLocation(
IInputModeContext context, PointD originalLocation, PointD newLocation
) {
double x = isFollowUp()
? Math.max(newLocation.x, originalLocation.x - oldTimeWidth)
: Math.min(newLocation.x, originalLocation.x + oldTimeWidth);
return new PointD(x, originalLocation.y);
}
}
}