I fixed this by implementing the DefineProperties method in my descendant of TPersistent. I wanted to make a general solution to this problem that I could easily implement in all of my objects for all the relevant properties. Here's how it looks:
TOverridePropFiler = class
private
FReadWritePropName: string;
FObject: TObject;
procedure ReadOverrideProp(Reader: TReader);
procedure WriteOverrideProp(Writer: TWriter);
public
constructor Create(Filer:TFiler; Obj:TObject; Name:string);
end;
{ TOverridePropFiler }
constructor TOverridePropFiler.Create(Filer:TFiler; Obj:TObject; Name:string);
begin
FReadWritePropName:=Name;
FObject:=obj;
if (Name='') or not Assigned(GetPropInfo(Obj,Name)) then
Raise Exception.CreateFmt('Property %s not found in object %s',[Name,Obj.ClassName]);
Filer.DefineProperty(Name, ReadOverrideProp, WriteOverrideProp,
GetPropValue(FObject,FReadWritePropName,False)<>uiFloat);
end;
procedure TOverridePropFiler.ReadOverrideProp(Reader: TReader);
begin
SetPropValue(FObject,FReadWritePropName,Reader.ReadFloat);
end;
procedure TOverridePropFiler.WriteOverrideProp(Writer: TWriter);
begin
Writer.WriteDouble(GetPropValue(FObject,FReadWritePropName,False));
end;
I call it in my DefineProperties method as follows:
procedure TMyObj.DefineProperties(Filer: TFiler);
begin
inherited;
TOverridePropFiler.Create(Filer,Self,'dTOverride').Free;
end;
To make this generalized, I had to use RTTI and save the property name locally (It's not possible to get this out of TWriter, and requires a hack for TReader). To make it thread safe (and because TFiler.DefineProperty wants "of object" functions) I encapsulated the whole thing in an object.
In my case I want the default value to be uiFloat. This constant can be set to whatever you want. If you want different defaults for different properties, you could easily add the default as a parameter to the Create function.
Note that you still have to set the property to the default in TMyObj's constructor.
This seems to me to be a fairly efficient way to work around a pretty serious limitation in Delphi.
Edit: You need to remember to add "stored false" to all of the properties that use this.