Home | History | Annotate | Download | only in flyout

Lines Matching refs:clientArea

167     Rectangle clientArea = getClientArea();
170 // check, may be "clientArea" is empty, for example because CTabFolder page is not visible
171 if (clientArea.width == 0 || clientArea.height == 0) {
181 client.setBounds(clientArea);
191 width = Math.min(clientArea.width / 2, width);
193 width = Math.min(clientArea.height / 2, width);
212 m_flyoutContainer.setBounds(0, 0, width, clientArea.height);
213 client.setBounds(offset, 0, clientArea.width - offset, clientArea.height);
215 m_flyoutContainer.setBounds(clientArea.width - width, 0, width, clientArea.height);
216 client.setBounds(0, 0, clientArea.width - offset, clientArea.height);
218 m_flyoutContainer.setBounds(0, 0, clientArea.width, width);
219 client.setBounds(0, offset, clientArea.width, clientArea.height - offset);
221 m_flyoutContainer.setBounds(0, clientArea.height - width, clientArea.width, width);
222 client.setBounds(0, 0, clientArea.width, clientArea.height - offset);
485 Rectangle clientArea = getClientArea();
486 boolean inside = clientArea.contains(event.x, event.y);
494 m_stateHover = x > clientArea.width - m_titleHeight && y < m_titleHeight;
508 if (isWest() && x >= clientArea.width - RESIZE_WIDTH) {
512 } else if (isNorth() && y >= clientArea.height - RESIZE_WIDTH) {
599 Rectangle clientArea = container.getClientArea();
601 int h3 = clientArea.height / 3;
606 clientArea.width,
611 clientArea.height - width,
612 clientArea.width,
615 } else if (location.x < clientArea.width / 2
620 clientArea.height)});
623 dockingTracker.setRectangles(new Rectangle[]{new Rectangle(clientArea.width - width,
626 clientArea.height)});
675 Rectangle clientArea = getClientArea();
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);
688 control.setBounds(0, y, clientArea.width, clientArea.height - y);
706 Rectangle clientArea = getClientArea();
710 if (m_backImage == null || !m_backImage.getBounds().equals(clientArea)) {
714 m_backImage = new Image(getDisplay(), clientArea.width, clientArea.height);
720 gc.fillRectangle(clientArea);
731 int x = clientArea.width - m_titleHeight;
753 DrawUtils.drawHighlightRectangle(gc, 0, 0, clientArea.width, clientArea.height);
811 Rectangle clientArea = getClientArea();
816 x = clientArea.width - RESIZE_WIDTH;
822 height = clientArea.height;
826 y = clientArea.height - RESIZE_WIDTH;
830 width = clientArea.width;