Searched refs:fOldSelection (Results 1 – 10 of 10) sorted by relevance
/haiku/src/apps/icon-o-matic/shape/commands/ |
H A D | AddPointCommand.cpp | 30 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 D | ChangePointCommand.cpp | 33 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 D | InsertPointCommand.cpp | 33 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 D | RemovePointsCommand.cpp | 40 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 D | AddPointCommand.h | 37 int32* fOldSelection; variable
|
H A D | ChangePointCommand.h | 40 int32* fOldSelection; variable
|
H A D | InsertPointCommand.h | 39 int32* fOldSelection; variable
|
H A D | RemovePointsCommand.h | 52 int32* fOldSelection; variable
|
/haiku/src/apps/icon-o-matic/shape/ |
H A D | PathManipulator.cpp | 221 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 D | PathManipulator.h | 168 Selection* fOldSelection; variable
|