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

Lines Matching defs:bounds

444             wxRect& bounds         = mpDraggedBar->mBounds;
452 mHandleDragArea.y = bounds.y;
453 mHandleDragArea.height = bounds.height;
458 mHandleOfs = bounds.x;
460 mHandleOfs = bounds.x +
461 bounds.width - event.mpPane->mProps.mResizeHandleSize;
581 wxRect& bounds = event.mBoundsInParent;
584 if ( bounds.height != 0 )
586 // size smaller than bounds, to leave space for shade lines
590 int nNewHeight = bounds.height - 2 - bar.mDimInfo.mVertGap *2;
594 bar.mpBarWnd->wxWindow::SetSize( bounds.x + 1 + bar.mDimInfo.mHorizGap,
595 bounds.y + 1 + bar.mDimInfo.mVertGap,
596 bounds.width - 2 - bar.mDimInfo.mHorizGap*2,
621 wxRect& bounds = pRow->mBoundsInParent;
627 mpPane->DrawHorizHandle( dc, bounds.x,
628 bounds.y-1,
635 mpPane->DrawVertHandle( dc, bounds.x-1,
636 bounds.y, pRow->mRowWidth );
642 wxRect& bounds = pRow->mBoundsInParent;
650 mpPane->DrawHorizHandle( dc, bounds.x, bounds.y + bounds.height - mpPane->mProps.mResizeHandleSize - 1,
657 mpPane->DrawVertHandle( dc, bounds.x + bounds.width - mpPane->mProps.mResizeHandleSize - 1,
658 bounds.y, pRow->mRowWidth );
703 wxRect& bounds = mpPane->mBoundsInParent;
707 dc.DrawRectangle( bounds.x, bounds.y,
708 bounds.width+1,
714 dc.DrawRectangle( bounds.x,
715 bounds.y + bounds.height - mpPane->mBottomMargin,
716 bounds.width + 1,
722 dc.DrawRectangle( bounds.x,
723 bounds.y + mpPane->mTopMargin - 1,
725 bounds.height - mpPane->mTopMargin - mpPane->mBottomMargin + 2);
730 dc.DrawRectangle( bounds.x + bounds.width - mpPane->mRightMargin,
731 bounds.y + mpPane->mTopMargin - 1,
733 bounds.height - mpPane->mTopMargin - mpPane->mBottomMargin + 2);
800 wxRect& bounds = pRow->mBars[i]->mBoundsInParent;
804 DrawShade( 1, bounds, FL_ALIGN_LEFT, dc );
805 DrawShade( 1, bounds, FL_ALIGN_RIGHT, dc );
809 DrawShade( 1, bounds, FL_ALIGN_TOP, dc );
810 DrawShade( 1, bounds, FL_ALIGN_BOTTOM, dc );
842 wxRect& bounds = pRow->mBars[i]->mBoundsInParent;
846 DrawShade( level, bounds, FL_ALIGN_TOP, dc );
850 dc.DrawPoint( bounds.x - 1, bounds.y );
852 dc.DrawPoint( bounds.x + bounds.width , bounds.y );
857 DrawShade( level, bounds, FL_ALIGN_LEFT, dc );
861 dc.DrawPoint( bounds.x, bounds.y -1 );
863 dc.DrawPoint( bounds.x, bounds.y + bounds.height );
873 wxRect& bounds = pRow->mBars[i]->mBoundsInParent;
877 DrawShade( level, bounds, FL_ALIGN_BOTTOM, dc );
881 dc.DrawPoint( bounds.x - 1, bounds.y + bounds.height -1 );
883 dc.DrawPoint( bounds.x + bounds.width , bounds.y + bounds.height -1 );
888 DrawShade( level, bounds, FL_ALIGN_RIGHT, dc );
892 dc.DrawPoint( bounds.x + bounds.width - 1, bounds.y -1 );
894 dc.DrawPoint( bounds.x + bounds.width - 1, bounds.y + bounds.height );
902 wxRect& bounds = pBar->mBoundsInParent;
906 dc.DrawLine( bounds.x + bounds.width - 1,
907 bounds.y,
908 bounds.x + bounds.width - 1,
909 bounds.y + bounds.height );
911 dc.DrawLine( bounds.x,
912 bounds.y + bounds.height - 1,
913 bounds.x + bounds.width,
914 bounds.y + bounds.height -1 );
918 dc.DrawLine( bounds.x,
919 bounds.y,
920 bounds.x + bounds.width - 1,
921 bounds.y );
923 dc.DrawLine( bounds.x,
924 bounds.y,
925 bounds.x,
926 bounds.y + bounds.height - 1 );
1087 wxRect bounds = mpPane->mBoundsInParent;
1089 bounds.x += mpPane->mLeftMargin;
1090 bounds.y += mpPane->mTopMargin;
1091 bounds.width -= ( mpPane->mLeftMargin + mpPane->mRightMargin );
1092 bounds.height -= ( mpPane->mTopMargin + mpPane->mBottomMargin );
1094 DrawShade( 0, bounds, alignment, dc );
1095 DrawShade( 1, bounds, alignment, dc );
1108 wxRect bounds = pRow->mBoundsInParent;
1113 --bounds.y;
1114 bounds.height += 2;
1116 DrawShade1( 0, bounds, FL_ALIGN_LEFT, dc );
1117 DrawShade1( 1, bounds, FL_ALIGN_LEFT, dc );
1118 DrawShade1( 0, bounds, FL_ALIGN_RIGHT, dc );
1119 DrawShade1( 1, bounds, FL_ALIGN_RIGHT, dc );
1129 --bounds.x;
1130 bounds.width += 2;
1132 DrawShade1( 0, bounds, FL_ALIGN_TOP, dc );
1133 DrawShade1( 1, bounds, FL_ALIGN_TOP, dc );
1134 DrawShade1( 0, bounds, FL_ALIGN_BOTTOM, dc );
1135 DrawShade1( 1, bounds, FL_ALIGN_BOTTOM, dc );
1227 wxRect& bounds = pBar->mBoundsInParent;
1233 mpPane->DrawVertHandle( dc, bounds.x - mpPane->mProps.mResizeHandleSize -1,
1234 bounds.y, bounds.height );
1239 bounds.x + bounds.width -1,
1240 bounds.y, bounds.height );
1246 mpPane->DrawHorizHandle( dc, bounds.x,
1247 bounds.y - mpPane->mProps.mResizeHandleSize - 1,
1248 bounds.width );
1252 mpPane->DrawHorizHandle( dc, bounds.x,
1253 bounds.y + bounds.height - 1,
1254 bounds.width );