Home
last modified time | relevance | path

Searched refs:RESIZE_WIDTH (Results 1 – 1 of 1) sorted by relevance

/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
DFlyoutControlComposite.java52 private static final int RESIZE_WIDTH = 5; field in FlyoutControlComposite
470 newWidth = event.x + RESIZE_WIDTH / 2; in handle_mouseMove()
472 newWidth = width - event.x + RESIZE_WIDTH / 2; in handle_mouseMove()
474 newWidth = event.y + RESIZE_WIDTH / 2; in handle_mouseMove()
476 newWidth = width - event.y + RESIZE_WIDTH / 2; in handle_mouseMove()
508 if (isWest() && x >= clientArea.width - RESIZE_WIDTH) { in handle_mouseMove()
510 } else if (isEast() && x <= RESIZE_WIDTH) { in handle_mouseMove()
512 } else if (isNorth() && y >= clientArea.height - RESIZE_WIDTH) { in handle_mouseMove()
514 } else if (isSouth() && y <= RESIZE_WIDTH) { in handle_mouseMove()
679 control.setBounds(0, y, clientArea.width - RESIZE_WIDTH, clientArea.height - y);
[all …]