Lines Matching refs:fPath
36 if (fPath && (!fPath->GetPointsAt(fIndex, fPoint, fPointIn, fPointOut) in InsertPointCommand()
37 || !fPath->GetPointOutAt(fIndex - 1, fPreviousOut) in InsertPointCommand()
38 || !fPath->GetPointInAt(fIndex + 1, fNextIn))) { in InsertPointCommand()
39 fPath = NULL; in InsertPointCommand()
63 fPath->GetPointInAt(fIndex, fPointIn); in Perform()
64 fPath->GetPointOutAt(fIndex, fPointOut); in Perform()
77 AutoNotificationSuspender _(fPath); in Undo()
80 if (fPath->RemovePoint(fIndex)) { in Undo()
83 fPath->GetPointOutAt(fIndex - 1, fPreviousOut); in Undo()
84 fPath->SetPointOut(fIndex - 1, previousOut); in Undo()
87 fPath->GetPointInAt(fIndex, fNextIn); in Undo()
88 fPath->SetPointIn(fIndex, nextIn); in Undo()
107 AutoNotificationSuspender _(fPath); in Redo()
110 if (fPath->AddPoint(fPoint, fIndex)) { in Redo()
111 fPath->SetPoint(fIndex, fPoint, fPointIn, fPointOut, true); in Redo()
114 fPath->GetPointOutAt(fIndex - 1, fPreviousOut); in Redo()
115 fPath->SetPointOut(fIndex - 1, previousOut); in Redo()
118 fPath->GetPointInAt(fIndex + 1, fNextIn); in Redo()
119 fPath->SetPointIn(fIndex + 1, nextIn); in Redo()