Home | History | Annotate | Download | only in table

Lines Matching refs:clientArea

269         Rectangle clientArea = getClientArea();
270 redraw(clientArea.x, clientArea.y, clientArea.width, clientArea.height, false);
331 Rectangle clientArea = getClientArea();
355 } else if (y + m_rowHeight > clientArea.height) {
612 Rectangle clientArea = getClientArea();
614 int width = clientArea.width - x - MARGIN_RIGHT;
720 Rectangle clientArea = getClientArea();
726 if (clientArea.width - m_splitter < MIN_COLUMN_WIDTH) {
727 m_splitter = clientArea.width - MIN_COLUMN_WIDTH;
1086 Rectangle clientArea = getClientArea();
1088 bufferedGC.fillRectangle(clientArea);
1128 Rectangle clientArea = getClientArea();
1134 int[] presentationsWidth = showPresentations(clientArea);
1137 int y = clientArea.y - m_rowHeight * m_selection;
1145 if (y > clientArea.height) {
1151 drawProperty(gc, propertyInfo, y + 1, m_rowHeight - 1, clientArea.width
1157 gc.drawLine(0, y, clientArea.width, y);
1161 drawExpandLines(gc, clientArea);
1164 gc.drawRectangle(0, 0, clientArea.width - 1, clientArea.height - 1);
1167 gc.drawLine(m_splitter, 0, m_splitter, clientArea.height);
1181 private int[] showPresentations(Rectangle clientArea) {
1185 int w = clientArea.width - x - MARGIN_RIGHT;
1187 int y = clientArea.y - m_rowHeight * m_selection;
1203 private void drawExpandLines(GC gc, Rectangle clientArea) {
1208 int y = clientArea.y - m_selection * m_rowHeight;