I am trying to implement MoveItemUp and MoveItemDown methods that move a selected row up or down one index within a TCollection.

The following code added to my subclass of TCollection does not work:

procedure TMyCollection.MoveRowDown(index: Integer);
var
 item:TCollectionItem;
begin
  if index>=Count-1 then exit;
  item := Self.Items[index];
  Self.Delete(index); // whoops this destroys the item above.
  Self.Insert(index+1);
  Self.SetItem(index+1,item); // this actually does an assign from a destroyed object.
end;

I am fairly sure this must be possible at runtime, as its done in designtime by the Delphi IDE itself which provides a way to reorder Collection items in a list. I am hoping to do this by simply reordering existing objects, without creating, destroying, or Assigning any objects. Is this possible from a subclass of Classes.pas TCollection? (If not, I may have to make my own TCollection from a source clone)

link|improve this question

8  
Setting the Index property of the collection item should do Item.Index:=Item.Index+1 (this calls the Move of the items list of the collection). If any special handling is necessary the SetIndex method is to be overriden. – Sertac Akyuz Nov 28 '11 at 18:29
feedback

2 Answers

up vote 6 down vote accepted

According to the VCL source, you don't need to manually do that. Simply set the Index property like @Sertac suggested and it should work just fine. If you have the source, check out the code of TCollectionItem.SetIndex.

link|improve this answer
2  
Thanks Sertac. This answer essentially copies your idea, but was posted as an answer.\ – Warren P Nov 28 '11 at 18:50
You're welcome! – Sertac Akyuz Nov 28 '11 at 19:06
feedback

You can use something like this - declare a dummy class type for a collection, and use it to gain access to the internal FItems of that collection, which is a TList. You can then use the TList.Exchange method to handle the actual move (or any other functionality of the TList, of course).

type
  {$HINTS OFF}
  TCollectionHack = class(TPersistent)
  private
    FItemClass: TCollectionItemClass;
    FItems: TList;
  end;
  {$HINTS ON}

// In a method of your collection itself (eg., MoveItem or SwapItems or whatever)
var
  TempList: TList;
begin
  TempList := TCollectionHack(Self).FItems;
  TempList.Exchange(Index1, Index2);
end;
link|improve this answer
Oh this isn't so much Subclassing as cracking the private member using my own hopefully correctly ordered class? – Warren P Nov 28 '11 at 18:40
Yes. That's why I mentioned it as something of a hack. I had trouble using Index when trying to sort a collection's items, and exchange isn't implemented. – Ken White Nov 28 '11 at 18:55
Moving an item up/down one position (which I'm trying to do) seems to work fine by assignment of TcollectionItem.Index. – Warren P Nov 28 '11 at 18:59
1  
Right, but it doesn't if you're wanting to do any more than that, and earlier versions of Delphi had issues with changing the Index many times (IIRC, D2007 did, but I'd have to check - it may have been earlier even). No matter, though. It's an alternative in case you need to do more than a single item move. – Ken White Nov 28 '11 at 19:04
Good to know. +1 – Warren P Nov 28 '11 at 22:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.