GetStrValue returns empty string on Custom Property Editor

187 Views Asked by At

I want to write a custom property editor for my custom component. I have a component declaration like below:

type
   TEJsonQuery = class(TComponent)
   private
      FSql: TStrings;

      procedure SetSQL(const Value: TStrings);
      { Private declarations }
   protected
      { Protected declarations }
   public
      constructor Create(AOwner: TComponent); override;
      destructor Destroy; override;
      { Public declarations }
   published
      property SQL: TStrings read FSql write SetSQL;
      { Published declarations }
   end;

constructor TEJsonQuery.Create;
begin
   inherited Create(AOwner);
   FSql := TStringList.Create;
end;

procedure TEJsonQuery.SetSQL(const Value: TStrings);
begin
   if SQL.Text <> Value.Text then
   begin
      //Close;
      SQL.BeginUpdate;
      try
         SQL.Assign(Value);
      finally
         SQL.EndUpdate;
      end;
   end;
end;

destructor TEJsonQuery.Destroy;
begin
   inherited Destroy;
   FSql.Free;
end;

And a property editor declaration like below:

type
   TQuerySQLProperty = class(TStringProperty)
   public
      function GetAttributes: TPropertyAttributes; override;
      procedure Edit; override;
   end;

   Tfrm_JsonQuerySQL = class(TForm)
      btn_JsonQuerySQL: TButton;
      mem_SQL: TMemo;
    btn_OK: TButton;
    btn_Cancel: TButton;
   private
      { Private declarations }
   public
      { Public declarations }
   end;

var
   frm_JsonQuerySQL: Tfrm_JsonQuerySQL;

procedure Register;

implementation

{$R *.dfm}

procedure Register;
begin
   RegisterComponents('MyComponents', [TEJsonQuery]);
   RegisterPropertyEditor(TypeInfo(TStrings), TEJsonQuery, 'SQL', TQuerySQLProperty);
end;

procedure TQuerySqlProperty.Edit;
begin
   frm_Ekol_JsonQuerySQL := Tfrm_Ekol_JsonQuerySQL.Create(Application);
   try
      Assert(False, '"' + GetStrValue + '"');
      frm_Ekol_JsonQuerySQL.mem_SQL.Lines.Text := GetStrValue;
      // show the dialog box
      if frm_Ekol_JsonQuerySQL.ShowModal = mrOK then
      begin
         SetStrValue(frm_Ekol_JsonQuerySQL.mem_SQL.Lines.Text);
      end;
   finally
      frm_Ekol_JsonQuerySQL.Free;
   end;
end;

function TQuerySQLProperty.GetAttributes: TPropertyAttributes;
begin
   // editor, sorted list, multiple selection
   // Result := [paDialog, paMultiSelect, paValueList, paSortList];
   Result := [paDialog];
end;

Property editor opens if Assert(False, '"' + GetStrValue + '"'); is commented with empty memo because GetStrValue returns empty string.

1

There are 1 best solutions below

5
On

The SQL property is a TStrings property, not a string property, and GetStrValue only works on string properties, and if more than one component is selected, it returns the value of GetComponent(0). GetStrValue is a virtual property, so you can implement your own.

Here is what I have in mind:

type
  TQuerySqlProperty = ...
  public
    function GetStrValue : string; override;
    ...
  end;
  ...

function TQuerySqlProperty.GetStrValue : string;
begin
  if GetComponent(0) is TEJsonQuery then
  begin
    Result := (GetComponent(0) as TEJsonQuery ).SQL.Text;
  end
  else
  begin
    Result := inherited;
  end;
end;