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

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

Completed in 43 milliseconds