| 205 | |
| 206 | |
| 207 | juce::Rectangle<int> NodeBase::getPositionInCanvas(Point<int> topLeft) const |
| 208 | { |
| 209 | using namespace UIValues; |
| 210 | |
| 211 | Rectangle<int> body(NodeWidth, NodeHeight); |
| 212 | |
| 213 | body = body.withPosition(topLeft).reduced(NodeMargin); |
| 214 | return body; |
| 215 | } |
| 216 | |
| 217 | bool NodeBase::sendResizeMessage(Component* childComponent, bool async) |
| 218 | { |
no test coverage detected