- Timestamp:
- Oct 4, 2024, 2:55:11 PM (7 weeks ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Database.pas
r618 r629 7 7 8 8 uses 9 SysUtils, Protocol, CmdList , Map;9 SysUtils, Protocol, CmdList; 10 10 11 11 const -
trunk/Log.lfm
r232 r629 1 1 object LogDlg: TLogDlg 2 2 Left = 256 3 Width = 339 3 4 Top = 187 5 Height = 280 4 6 BorderIcons = [biSystemMenu] 5 7 Caption = 'Log' -
trunk/NoTerm.lfm
- Property svn:mime-type deleted
-
trunk/Packages/DpiControls/Dpi.Forms.pas
r622 r629 86 86 function GetRestoredTop: Integer; 87 87 function GetRestoredWidth: Integer; 88 function GetScaled: Boolean; 88 89 function GetShowInTaskbar: TShowInTaskbar; 89 90 function GetWindowState: TWindowState; … … 104 105 procedure FormMessageHandler(var TheMessage: TLMessage); 105 106 procedure SetPosition(AValue: TPosition); 107 procedure SetScaled(AValue: Boolean); 106 108 procedure SetShowInTaskBar(AValue: TShowInTaskbar); 107 109 procedure SetWindowState(AValue: TWindowState); … … 159 161 property ShowInTaskBar: TShowInTaskbar read GetShowInTaskbar write SetShowInTaskBar 160 162 default stDefault; 163 property Scaled: Boolean read GetScaled write SetScaled default True; 161 164 end; 162 165 … … 624 627 end; 625 628 629 function TForm.GetScaled: Boolean; 630 begin 631 Result := GetNativeForm.Scaled; 632 end; 633 626 634 function TForm.GetShowInTaskbar: TShowInTaskbar; 627 635 begin … … 713 721 begin 714 722 GetNativeForm.Position := AValue; 723 end; 724 725 procedure TForm.SetScaled(AValue: Boolean); 726 begin 727 GetNativeForm.Scaled := AValue; 715 728 end; 716 729
Note:
See TracChangeset
for help on using the changeset viewer.