Exemplo n.º 1
0
 public LabelShape()
 {
     mRectShapes = new List<RectShape>();
     mPullPoint = new Point2I(default(int), default(int));
     mPullState = PullState_.mNone_;
     mMoveState = MoveState_.mNone_;
     mLabelStream = null;
     mLabel = null;
 }
Exemplo n.º 2
0
 public void _moveVector(Point2I nPoint)
 {
     this._rectOffset(nPoint);
     foreach (RectShape i in mRectShapes)
     {
         i._rectOffset(nPoint);
     }
     mMoveState = MoveState_.mDoing_;
 }
Exemplo n.º 3
0
 public void _finishMove()
 {
     mMoveState = MoveState_.mNone_;
 }