Symbol: fPoint
src/apps/icon-o-matic/shape/commands/AddPointCommand.cpp
55
if (!fPath->GetPointsAt(fIndex, fPoint, fPointIn, fPointOut))
src/apps/icon-o-matic/shape/commands/AddPointCommand.cpp
91
if (fPath->AddPoint(fPoint, fIndex)) {
src/apps/icon-o-matic/shape/commands/AddPointCommand.cpp
92
fPath->SetPoint(fIndex, fPoint, fPointIn, fPointOut, true);
src/apps/icon-o-matic/shape/commands/AddPointCommand.h
33
BPoint fPoint;
src/apps/icon-o-matic/shape/commands/ChangePointCommand.cpp
101
fPoint = point;
src/apps/icon-o-matic/shape/commands/ChangePointCommand.cpp
36
if (fPath && !fPath->GetPointsAt(fIndex, fPoint, fPointIn, fPointOut, &fConnected))
src/apps/icon-o-matic/shape/commands/ChangePointCommand.cpp
69
if (point != fPoint || pointIn != fPointIn
src/apps/icon-o-matic/shape/commands/ChangePointCommand.cpp
99
&& fPath->SetPoint(fIndex, fPoint, fPointIn, fPointOut, fConnected)) {
src/apps/icon-o-matic/shape/commands/ChangePointCommand.h
35
BPoint fPoint;
src/apps/icon-o-matic/shape/commands/InsertPointCommand.cpp
110
if (fPath->AddPoint(fPoint, fIndex)) {
src/apps/icon-o-matic/shape/commands/InsertPointCommand.cpp
111
fPath->SetPoint(fIndex, fPoint, fPointIn, fPointOut, true);
src/apps/icon-o-matic/shape/commands/InsertPointCommand.cpp
36
if (fPath && (!fPath->GetPointsAt(fIndex, fPoint, fPointIn, fPointOut)
src/apps/icon-o-matic/shape/commands/InsertPointCommand.h
32
BPoint fPoint;
src/apps/icon-o-matic/shape/commands/RemovePointsCommand.cpp
108
if (fPath->AddPoint(fPoint[i], fIndex[i])) {
src/apps/icon-o-matic/shape/commands/RemovePointsCommand.cpp
110
fPoint[i],
src/apps/icon-o-matic/shape/commands/RemovePointsCommand.cpp
177
fPoint = new (nothrow) BPoint[count];
src/apps/icon-o-matic/shape/commands/RemovePointsCommand.cpp
190
fPoint[i],
src/apps/icon-o-matic/shape/commands/RemovePointsCommand.cpp
35
fPoint(NULL),
src/apps/icon-o-matic/shape/commands/RemovePointsCommand.cpp
54
fPoint(NULL),
src/apps/icon-o-matic/shape/commands/RemovePointsCommand.cpp
69
delete[] fPoint;
src/apps/icon-o-matic/shape/commands/RemovePointsCommand.cpp
83
if (!fIndex || !fPoint || !fPointIn || !fPointOut || !fConnected)
src/apps/icon-o-matic/shape/commands/RemovePointsCommand.h
44
BPoint* fPoint;
src/apps/icon-o-matic/shape/commands/SplitPointsCommand.cpp
102
if (fPath->AddPoint(fPoint[i], index)) {
src/apps/icon-o-matic/shape/commands/SplitPointsCommand.cpp
104
fPoint[i],
src/apps/icon-o-matic/shape/commands/SplitPointsCommand.cpp
106
fPoint[i],
src/apps/icon-o-matic/shape/commands/SplitPointsCommand.cpp
109
fPoint[i],
src/apps/icon-o-matic/shape/commands/SplitPointsCommand.cpp
110
fPoint[i],
src/apps/icon-o-matic/shape/commands/SplitPointsCommand.cpp
136
fPoint[i],
src/apps/icon-o-matic/shape/commands/SplitPointsCommand.cpp
35
fPoint(NULL),
src/apps/icon-o-matic/shape/commands/SplitPointsCommand.cpp
43
fPoint = new (nothrow) BPoint[count];
src/apps/icon-o-matic/shape/commands/SplitPointsCommand.cpp
56
fPoint[i],
src/apps/icon-o-matic/shape/commands/SplitPointsCommand.cpp
70
delete[] fPoint;
src/apps/icon-o-matic/shape/commands/SplitPointsCommand.cpp
83
if (!fIndex || !fPoint || !fPointIn || !fPointOut || !fConnected)
src/apps/icon-o-matic/shape/commands/SplitPointsCommand.h
32
BPoint* fPoint;
src/apps/icon-o-matic/transformable/PerspectiveBoxStates.cpp
59
*fPoint = current;
src/apps/icon-o-matic/transformable/PerspectiveBoxStates.h
51
BPoint* fPoint;
src/preferences/backgrounds/BackgroundsView.cpp
1248
x = fPoint.x + (point.x - fOldPoint.x) / fXRatio;
src/preferences/backgrounds/BackgroundsView.cpp
1249
y = fPoint.y + (point.y - fOldPoint.y) / fYRatio;
src/preferences/backgrounds/BackgroundsView.cpp
1255
fPoint.x = x;
src/preferences/backgrounds/BackgroundsView.cpp
1258
if (!min && fPoint.x > -fImageBounds.Width()) {
src/preferences/backgrounds/BackgroundsView.cpp
1259
fPoint.x = -fImageBounds.Width();
src/preferences/backgrounds/BackgroundsView.cpp
1260
fOldPoint.x = point.x - (x - fPoint.x) * fXRatio;
src/preferences/backgrounds/BackgroundsView.cpp
1263
if (!max && fPoint.x < fMode.virtual_width) {
src/preferences/backgrounds/BackgroundsView.cpp
1264
fPoint.x = fMode.virtual_width;
src/preferences/backgrounds/BackgroundsView.cpp
1265
fOldPoint.x = point.x - (x - fPoint.x) * fXRatio;
src/preferences/backgrounds/BackgroundsView.cpp
1274
fPoint.y = y;
src/preferences/backgrounds/BackgroundsView.cpp
1277
if (!min && fPoint.y > -fImageBounds.Height()) {
src/preferences/backgrounds/BackgroundsView.cpp
1278
fPoint.y = -fImageBounds.Height();
src/preferences/backgrounds/BackgroundsView.cpp
1279
fOldPoint.y = point.y - (y - fPoint.y) * fYRatio;
src/preferences/backgrounds/BackgroundsView.cpp
1282
if (!max && fPoint.y < fMode.virtual_height) {
src/preferences/backgrounds/BackgroundsView.cpp
1283
fPoint.y = fMode.virtual_height;
src/preferences/backgrounds/BackgroundsView.cpp
1284
fOldPoint.y = point.y - (y - fPoint.y) * fYRatio;
src/preferences/backgrounds/BackgroundsView.cpp
332
xstring << (int)fPreview->fPoint.x;
src/preferences/backgrounds/BackgroundsView.cpp
333
ystring << (int)fPreview->fPoint.y;
src/preferences/backgrounds/BackgroundsView.cpp
900
fPreview->fPoint.x = atoi(fXPlacementText->Text());
src/preferences/backgrounds/BackgroundsView.cpp
901
fPreview->fPoint.y = atoi(fYPlacementText->Text());
src/preferences/backgrounds/BackgroundsView.h
85
BPoint fPoint;