(On Windows x64, Lazarus 2.0.12):
It's only aesthetics, but i'm wondering if it's possible to make the inplace editor for ListView to appear just like as in Delphi: the bounds of the inplace editor field are autosized here to the Length of the text. In Laz. it's determined by the boundaries of the column cell; the edit field does fill the whole cell.
TreeVuew EditNode similar.
I guess it's not done by the API, as for example such has no effect:
hEdit := ListView_GetEditControl(Handle);
SendMessage(hEdit, EM_SETMARGINS, 1,MAKELONG(15,0));
PostMessage(hEdit, EM_SETSEL, 0, myLength); // defiine lenght of the selection marker
Not a big thing, but maybe somebody does know if it's possible to influence that.