Home
last modified time | relevance | path

Searched refs:fOldSelection (Results 1 – 10 of 10) sorted by relevance

/haiku/src/apps/icon-o-matic/shape/commands/
H A DAddPointCommand.cpp30 fOldSelection(NULL), in AddPointCommand()
34 fOldSelection = new int32[fOldSelectionCount]; in AddPointCommand()
35 memcpy(fOldSelection, selected, fOldSelectionCount * sizeof(int32)); in AddPointCommand()
42 delete[] fOldSelection; in ~AddPointCommand()
72 _Select(fOldSelection, fOldSelectionCount); in Undo()
H A DChangePointCommand.cpp33 fOldSelection(NULL), in ChangePointCommand()
39 fOldSelection = new (nothrow) int32[fOldSelectionCount]; in ChangePointCommand()
40 memcpy(fOldSelection, selected, fOldSelectionCount * sizeof(int32)); in ChangePointCommand()
47 delete[] fOldSelection; in ~ChangePointCommand()
106 _Select(fOldSelection, fOldSelectionCount); in Undo()
H A DInsertPointCommand.cpp33 fOldSelection(NULL), in InsertPointCommand()
42 fOldSelection = new (nothrow) int32[count]; in InsertPointCommand()
43 memcpy(fOldSelection, selected, count * sizeof(int32)); in InsertPointCommand()
50 delete[] fOldSelection; in ~InsertPointCommand()
90 _Select(fOldSelection, fOldSelectionCount); in Undo()
H A DRemovePointsCommand.cpp40 fOldSelection(NULL), in RemovePointsCommand()
59 fOldSelection(NULL), in RemovePointsCommand()
73 delete[] fOldSelection; in ~RemovePointsCommand()
155 _Select(fOldSelection, fOldSelectionCount); in Redo()
204 fOldSelection = new (nothrow) int32[selectionCount]; in _Init()
205 memcpy(fOldSelection, selection, selectionCount * sizeof(int32)); in _Init()
H A DAddPointCommand.h37 int32* fOldSelection; variable
H A DChangePointCommand.h40 int32* fOldSelection; variable
H A DInsertPointCommand.h39 int32* fOldSelection; variable
H A DRemovePointsCommand.h52 int32* fOldSelection; variable
/haiku/src/apps/icon-o-matic/shape/
H A DPathManipulator.cpp221 fOldSelection(new Selection()), in PathManipulator()
241 delete fOldSelection; in ~PathManipulator()
522 *fOldSelection = *fSelection; in MouseDown()
665 if (*fSelection != *fOldSelection) { in MouseUp()
690 *fOldSelection = *fSelection; in MouseUp()
694 if (*fSelection != *fOldSelection) { in MouseUp()
758 *fOldSelection = *fSelection; in ShowContextMenu()
1410 count = fOldSelection->CountItems(); in _Select()
1412 int32 index = fOldSelection->IndexAt(i); in _Select()
H A DPathManipulator.h168 Selection* fOldSelection; variable