Tools/DebugServer: Use high-dpi icons by Roland Hahn

This commit is contained in:
wp_xyz 2024-10-13 00:17:05 +02:00
parent c59a6083cb
commit 9267b9c1e8
71 changed files with 19637 additions and 2091 deletions

Binary file not shown.

After

(image error) Size: 55 KiB

Binary file not shown.

After

(image error) Size: 698 B

Binary file not shown.

After

(image error) Size: 954 B

Binary file not shown.

After

(image error) Size: 1.1 KiB

Binary file not shown.

After

(image error) Size: 1.3 KiB

Binary file not shown.

After

(image error) Size: 1.8 KiB

Binary file not shown.

After

(image error) Size: 2.2 KiB

Binary file not shown.

After

(image error) Size: 2.9 KiB

Binary file not shown.

After

(image error) Size: 13 KiB

Binary file not shown.

After

(image error) Size: 623 B

Binary file not shown.

After

(image error) Size: 934 B

Binary file not shown.

After

(image error) Size: 1011 B

Binary file not shown.

After

(image error) Size: 380 B

Binary file not shown.

After

(image error) Size: 481 B

Binary file not shown.

After

(image error) Size: 660 B

Binary file not shown.

After

(image error) Size: 465 B

Binary file not shown.

After

(image error) Size: 645 B

Binary file not shown.

After

(image error) Size: 822 B

Binary file not shown.

After

(image error) Size: 696 B

Binary file not shown.

After

(image error) Size: 1.2 KiB

Binary file not shown.

After

(image error) Size: 1.8 KiB

Binary file not shown.

After

(image error) Size: 591 B

Binary file not shown.

After

(image error) Size: 894 B

Binary file not shown.

After

(image error) Size: 1.1 KiB

Binary file not shown.

After

(image error) Size: 468 B

Binary file not shown.

After

(image error) Size: 645 B

Binary file not shown.

After

(image error) Size: 916 B

Binary file not shown.

After

(image error) Size: 533 B

Binary file not shown.

After

(image error) Size: 831 B

Binary file not shown.

After

(image error) Size: 993 B

Binary file not shown.

After

(image error) Size: 403 B

Binary file not shown.

After

(image error) Size: 454 B

Binary file not shown.

After

(image error) Size: 556 B

Binary file not shown.

After

(image error) Size: 509 B

Binary file not shown.

After

(image error) Size: 766 B

Binary file not shown.

After

(image error) Size: 1003 B

Binary file not shown.

After

(image error) Size: 483 B

Binary file not shown.

After

(image error) Size: 694 B

Binary file not shown.

After

(image error) Size: 861 B

Binary file not shown.

After

(image error) Size: 661 B

Binary file not shown.

After

(image error) Size: 1005 B

Binary file not shown.

After

(image error) Size: 1.3 KiB

Binary file not shown.

After

(image error) Size: 554 B

Binary file not shown.

After

(image error) Size: 859 B

Binary file not shown.

After

(image error) Size: 1.0 KiB

Binary file not shown.

After

(image error) Size: 632 B

Binary file not shown.

After

(image error) Size: 914 B

Binary file not shown.

After

(image error) Size: 1.2 KiB

Binary file not shown.

After

(image error) Size: 567 B

Binary file not shown.

After

(image error) Size: 918 B

Binary file not shown.

After

(image error) Size: 1.1 KiB

Binary file not shown.

After

(image error) Size: 531 B

Binary file not shown.

After

(image error) Size: 789 B

Binary file not shown.

After

(image error) Size: 995 B

Binary file not shown.

After

(image error) Size: 58 KiB

Binary file not shown.

After

(image error) Size: 772 B

Binary file not shown.

After

(image error) Size: 1.0 KiB

Binary file not shown.

After

(image error) Size: 1.2 KiB

Binary file not shown.

After

(image error) Size: 1.6 KiB

Binary file not shown.

After

(image error) Size: 2.2 KiB

Binary file not shown.

After

(image error) Size: 2.6 KiB

Binary file not shown.

After

(image error) Size: 3.5 KiB

Binary file not shown.

After

(image error) Size: 16 KiB

View File

@ -46,3 +46,9 @@ The indentation of the messages (by SendMethodEnter) is intentional: if an
exception occurs, then the SendMethodExit does not happen, and you see that
something is wrong visually.
-------------------------
Icons used by this application were provided by Roland Hahn (https://www.rhsoft.de/)
under Creative Commons CC0 1.0 Universal License
(freely available, no restrictions in usage).

Binary file not shown.

Before

(image error) Size: 61 KiB

After

(image error) Size: 55 KiB

View File

@ -9,7 +9,11 @@
</Flags>
<SessionStorage Value="InIDEConfig"/>
<Title Value="FPC/Lazarus debug message server"/>
<Scaled Value="True"/>
<UseXPManifest Value="True"/>
<XPManifest>
<DpiAware Value="True"/>
</XPManifest>
<Icon Value="0"/>
</General>
<BuildModes Count="1">
@ -66,6 +70,7 @@
<Version Value="11"/>
<SearchPaths>
<IncludeFiles Value="$(ProjOutDir)"/>
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
<Parsing>
<SyntaxOptions>

View File

@ -13,6 +13,7 @@ uses
{$R *.res}
begin
Application.Scaled:=True;
Application.Title:='FPC/Lazarus debug message server';
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -24,14 +24,14 @@ unit frmOptions;
interface
uses
Forms, ButtonPanel, StdCtrls;
Forms, ButtonPanel, StdCtrls, Classes;
type
{ TOptionsForm }
TOptionsForm = class(TForm)
ButtonPanel1: TButtonPanel;
ButtonPanel:TButtonPanel;
CBNewVisible: TCheckBox;
CBCleanLogOnNewProcess: TCheckBox;
CBShowOnStartUp: TCheckBox;
@ -39,7 +39,9 @@ type
CBNewAtBottom: TCheckBox;
GBWindow: TGroupBox;
GBMessages: TGroupBox;
procedure FormActivate(Sender:TObject);
private
FActivated: boolean;
function GetB(AIndex: integer): Boolean;
function GetCB(AIndex: Integer): TCheckBox;
procedure SetB(AIndex: integer; const AValue: Boolean);
@ -60,8 +62,20 @@ implementation
{ TOptionsForm }
function TOptionsForm.GetCB(AIndex : Integer) : TCheckBox;
procedure TOptionsForm.FormActivate(Sender:TObject);
begin
if not FActivated then
begin
FActivated := true;
AutoSize := false;
ClientHeight := GBMessages.Top + GBMessages.Height +
GBMessages.BorderSpacing.Around + GBMessages.BorderSpacing.Bottom +
ButtonPanel.Height;
ClientWidth := GBMessages.Left + GBMessages.Width + GBMessages.BorderSpacing.Around;
end;
end;
function TOptionsForm.GetCB(AIndex : Integer) : TCheckBox;
begin
Case AIndex of
0 : Result:=CBShowOnStartUp;