I have a problem with displaying modal dialog in center of the owner form. My code for showing modal dialog is:

procedure TfrmMain.btnOpenSettingsClick(Sender: TObject);
var
  sdSettingsDialog: TdlgSettings;

begin
   sdSettingsDialog := TdlgSettings.Create(Self);
   sdSettingsDialog.Position := TFormPosition.poOwnerFormCenter;

   try
      sdSettingsDialog.ShowModal;
   finally
     sdSettingsDialog.Free;
   end;
end;

Tried to change Position property in designer too, but it doesn't seems to center the dialog.

Can you tell me what's wrong here?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Position is not implemented in FireMonkey by ShowModal. With the class helper below you can use: sdSettingsDialog.UpdateFormPosition before you call ShowModal:

type
  TFormHelper = class helper for TForm
    procedure UpdateFormPosition;
  end;

procedure TFormHelper.UpdateFormPosition;
var
  RefForm: TCommonCustomForm;
begin
  RefForm := nil;

  case Position of
    // TFormPosition.poScreenCenter: implemented in FMX.Forms (only one)
    TFormPosition.poOwnerFormCenter:
      if Assigned(Owner) and (Owner is TCommonCustomForm) then
        RefForm := Owner as TCommonCustomForm;
    TFormPosition.poMainFormCenter:
      RefForm := Application.MainForm;
  end;

  if Assigned(RefForm) then
  begin
    SetBounds(
      System.Round((RefForm.Width - Width) / 2) + RefForm.Left,
      System.Round((RefForm.Height - Height) / 2) + RefForm.Top,
      Width, Height);
  end;
end;
link|improve this answer
Is the use of a class helper essential? – David Heffernan Nov 19 '11 at 17:00
Difficult question David, no the class helper is not essential, if you prefer: procedure UpdateFormPos(aForm: TForm) be my guest. – Arjen van der Spek Nov 19 '11 at 17:20
3  
@ArjenvanderSpek Thanks, it works great! Why I'm feeling that FireMonkey is not quite finished yet and it's like half baked muffin... – evilone Nov 19 '11 at 20:41
feedback

Your Answer

 
or
required, but never shown

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