• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/univ/themes/

Lines Matching refs:transpose

293                   bool transpose = false)
295 if ( transpose )
1975 bool transpose = (orient == wxVERTICAL);
1977 (((style & wxSL_TOP) != 0) & !transpose |
1978 ((style & wxSL_LEFT) != 0) & transpose |
1981 (((style & wxSL_BOTTOM) != 0) & !transpose |
1982 ((style & wxSL_RIGHT) != 0) & transpose |
2100 bool transpose = (orient == wxVERTICAL);
2102 (((style & wxSL_TOP) != 0) & !transpose |
2103 ((style & wxSL_LEFT) != 0) & transpose) &
2106 (((style & wxSL_BOTTOM) != 0) & !transpose |
2107 ((style & wxSL_RIGHT) != 0) & transpose) &
2110 wxCoord sizeArrow = (transpose ? rect.height : rect.width) / 2;
2111 wxCoord c = ((transpose ? rect.height : rect.width) - 2*sizeArrow);
2114 x1 = (transpose ? rect.y : rect.x);
2115 x2 = (transpose ? rect.GetBottom() : rect.GetRight());
2117 y1 = (transpose ? rect.x : rect.y);
2118 y2 = (transpose ? rect.GetRight() : rect.GetBottom());
2124 DrawLine(dc, x3+1-c, y1, x2, y3, transpose);
2126 DrawLine(dc, x2, y3, x2, y4, transpose);
2129 DrawLine(dc, x3+1-c, y2, x2, y4, transpose);
2133 DrawLine(dc, x1, y2, x2, y2, transpose);
2137 DrawLine(dc, x2-1, y3+1, x2-1, y4-1, transpose);
2139 DrawLine(dc, x3+1-c, y2-1, x2-1, y4, transpose);
2143 DrawLine(dc, x1+1, y2-1, x2-1, y2-1, transpose);
2149 DrawLine(dc, x1, y3, x3, y1, transpose);
2150 DrawLine(dc, x3+1-c, y1+1, x2-1, y3, transpose);
2154 DrawLine(dc, x1, y1, x2, y1, transpose);
2156 DrawLine(dc, x1, y3, x1, y4, transpose);
2159 DrawLine(dc, x1, y4, x3+c, y2+c, transpose);
2165 if ( transpose )
2241 bool transpose = (orient == wxVERTICAL);
2243 (((style & wxSL_TOP) != 0) & !transpose |
2244 ((style & wxSL_LEFT) != 0) & transpose |
2247 (((style & wxSL_BOTTOM) != 0) & !transpose |
2248 ((style & wxSL_RIGHT) != 0) & transpose |
2253 wxCoord defaultLen = (transpose ? sizeThumb.x : sizeThumb.y);
2257 wxCoord widthThumb = (transpose ? sizeThumb.y : sizeThumb.x);
2262 x1 = (transpose ? rectShaft.y : rectShaft.x) + widthThumb/2;
2263 x2 = (transpose ? rectShaft.GetBottom() : rectShaft.GetRight()) - widthThumb/2;
2264 y1 = (transpose ? rectShaft.x : rectShaft.y) - defaultLen/2;
2265 y2 = (transpose ? rectShaft.GetRight() : rectShaft.GetBottom()) + defaultLen/2;
2266 y3 = (transpose ? rect.x : rect.y);
2267 y4 = (transpose ? rect.GetRight() : rect.GetBottom());