Home | History | Annotate | Download | only in flyout

Lines Matching defs:RESIZE_WIDTH

52   private static final int RESIZE_WIDTH = 5;
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, clientArea.height - y);
682 control.setBounds(RESIZE_WIDTH, y, clientArea.width - RESIZE_WIDTH, clientArea.height - y);
685 control.setBounds(0, y, clientArea.width, clientArea.height - y - RESIZE_WIDTH);
687 int y = RESIZE_WIDTH + m_titleHeight;
738 int y = RESIZE_WIDTH;
816 x = clientArea.width - RESIZE_WIDTH;
821 width = RESIZE_WIDTH;
826 y = clientArea.height - RESIZE_WIDTH;
831 height = RESIZE_WIDTH;