Skip to content

Commit

Permalink
Merge pull request #131 from bgrabitmap/dev-bgracontrols
Browse files Browse the repository at this point in the history
Dev bgracontrols
  • Loading branch information
lainz authored Aug 6, 2022
2 parents 4dcdb9a + 2a7ec42 commit ff5c54f
Show file tree
Hide file tree
Showing 153 changed files with 1,020 additions and 258 deletions.
19 changes: 14 additions & 5 deletions bccombobox.pas
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
interface

uses
Classes, SysUtils, LResources, Forms, Controls, ExtCtrls, Graphics, Dialogs, BCButton,
{$ifdef WINDOWS}Windows,{$endif} Classes, SysUtils, LResources, Forms, Controls, ExtCtrls, Graphics, Dialogs, BCButton,
StdCtrls, BCTypes, BCBaseCtrls, BGRABitmap, BGRABitmapTypes, LMessages, LCLType;

type
Expand Down Expand Up @@ -59,7 +59,7 @@ TBCComboBox = class(TBCStyleCustomControl)
function GetStateHover: TBCButtonState;
function GetStateNormal: TBCButtonState;
function GetStaticButton: boolean;
procedure ListBoxKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState
procedure ListBoxKeyDown(Sender: TObject; var Key: Word; {%H-}Shift: TShiftState
);
procedure ListBoxMouseUp({%H-}Sender: TObject; {%H-}Button: TMouseButton;
{%H-}Shift: TShiftState; {%H-}X, {%H-}Y: Integer);
Expand Down Expand Up @@ -89,10 +89,10 @@ TBCComboBox = class(TBCStyleCustomControl)
procedure SetStaticButton(AValue: boolean);
protected
function GetStyleExtension: String; override;
procedure WMSetFocus(var Message: {$IFDEF FPC}TLMSetFocus{$ELSE}TWMSetFocus{$ENDIF}); message {$IFDEF FPC}LM_SETFOCUS{$ELSE}WM_SETFOCUS{$ENDIF};
procedure WMSetFocus(var {%H-}Message: {$IFDEF FPC}TLMSetFocus{$ELSE}TWMSetFocus{$ENDIF}); message {$IFDEF FPC}LM_SETFOCUS{$ELSE}WM_SETFOCUS{$ENDIF};
procedure WMKillFocus(var Message: {$IFDEF FPC}TLMKillFocus{$ELSE}TWMKillFocus{$ENDIF}); message {$IFDEF FPC}LM_KILLFOCUS{$ELSE}WM_KILLFOCUS{$ENDIF};
procedure UpdateFocus(AFocused: boolean);
procedure KeyDown(var Key: Word; Shift: TShiftState); override;
procedure KeyDown(var Key: Word; {%H-}Shift: TShiftState); override;
procedure UTF8KeyPress(var UTF8Key: TUTF8Char); override;
procedure CreateForm;
procedure FreeForm;
Expand Down Expand Up @@ -410,9 +410,18 @@ procedure TBCComboBox.OnAfterRenderButton(Sender: TObject;
end;

procedure TBCComboBox.OnTimerCheckFormHide(Sender: TObject);
{$ifdef WINDOWS}
function IsDropDownOnTop: boolean;
begin
result := Assigned(FForm) and (GetForegroundWindow = FForm.Handle);
end;
{$endif}

begin
if Assigned(FForm) and FForm.Visible and
({$IFDEF DARWIN}not FForm.Active or {$ENDIF}FQueryFormHide) then
({$IFDEF DARWIN}not FForm.Active or {$ENDIF}
{$IFDEF WINDOWS}not IsDropDownOnTop or{$ENDIF}
FQueryFormHide) then
begin
FForm.Visible := false;
FQueryFormHide := false;
Expand Down
24 changes: 23 additions & 1 deletion bcmaterialprogressbarmarquee.pas
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ TBCMaterialProgressBarMarquee = class(TBGRAGraphicControl)
procedure SetBarColor(AValue: TColor);
procedure TimerOnTimer(Sender: TObject);
protected

procedure SetEnabled(Value: Boolean); override;
procedure SetVisible(Value: Boolean); override;
public
procedure DiscardBitmap;
procedure RedrawBitmapContent; override;
Expand Down Expand Up @@ -67,6 +68,20 @@ procedure TBCMaterialProgressBarMarquee.TimerOnTimer(Sender: TObject);
DiscardBitmap;
end;

procedure TBCMaterialProgressBarMarquee.SetEnabled(Value: Boolean);
begin
inherited SetEnabled(Value);
FTimer.Enabled := Value and Visible;
DiscardBitmap;
end;

procedure TBCMaterialProgressBarMarquee.SetVisible(Value: Boolean);
begin
inherited SetVisible(Value);
FTimer.Enabled := Enabled and Value;
DiscardBitmap;
end;

procedure TBCMaterialProgressBarMarquee.SetBarColor(AValue: TColor);
begin
if FBarColor = AValue then
Expand All @@ -84,9 +99,16 @@ procedure TBCMaterialProgressBarMarquee.DiscardBitmap;

procedure TBCMaterialProgressBarMarquee.RedrawBitmapContent;
begin
if FTimer.Enabled then
begin
Bitmap.Fill(Color);
Bitmap.Rectangle(Rect(progressbar_x, 0, progressbar_x + progressbar_w, Bitmap.Height),
BarColor, BarColor);
end
else
begin
Bitmap.Fill(BarColor);
end;
end;

constructor TBCMaterialProgressBarMarquee.Create(AOwner: TComponent);
Expand Down
2 changes: 1 addition & 1 deletion bgracontrols.lpk
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</CompilerOptions>
<Description Value="BGRA Controls is a set of graphical UI elements that you can use with Lazarus LCL applications."/>
<License Value="Modified LGPL"/>
<Version Major="7" Minor="5"/>
<Version Major="7" Minor="6"/>
<Files Count="67">
<Item1>
<Filename Value="atshapelinebgra.pas"/>
Expand Down
2 changes: 1 addition & 1 deletion bgracontrolsinfo.pas
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface
Classes, SysUtils;

const
BGRAControlsVersion = 7050000;
BGRAControlsVersion = 7060000;

function BGRAControlsVersionStr: string;

Expand Down
2 changes: 1 addition & 1 deletion bgrapascalscriptcomponent.lpk
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
</CompilerOptions>
<Version Major="7" Minor="5"/>
<Version Major="7" Minor="6"/>
<Files Count="3">
<Item1>
<Filename Value="bgrapascalscript.pas"/>
Expand Down
10 changes: 7 additions & 3 deletions bgrasvgimagelistform/bgrasvgimagelistproject.lpi
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
<ProjectOptions>
<Version Value="11"/>
<Version Value="12"/>
<PathDelim Value="\"/>
<General>
<Flags>
<CompatibilityMode Value="True"/>
</Flags>
<SessionStorage Value="InProjectDir"/>
<MainUnit Value="0"/>
<Title Value="bgrasvgimagelistproject"/>
<Scaled Value="True"/>
<ResourceType Value="res"/>
Expand All @@ -24,7 +26,6 @@
</PublishOptions>
<RunParams>
<FormatVersion Value="2"/>
<Modes Count="0"/>
</RunParams>
<RequiredPackages Count="2">
<Item1>
Expand Down Expand Up @@ -59,6 +60,9 @@
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
<Linking>
<Debugging>
<DebugInfoType Value="dsDwarf2Set"/>
</Debugging>
<Options>
<Win32>
<GraphicApplication Value="True"/>
Expand Down
Binary file modified docs/img/analogcontrols.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/bcbutton.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/bcbuttonfocus.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/bcimagebutton.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/bctoolbar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/bcxbutton.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/bgraribbon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/img/progressbar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified icons/tbcbutton.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified icons/tbcbuttonfocus.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified icons/tbcradialprogressbar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified icons/tbgraflashprogressbar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified icons/tdtthemedclock.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/tbcbutton.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/tbcbutton_150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/tbcbutton_200.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/tbcbuttonfocus.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/tbcbuttonfocus_150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/tbcbuttonfocus_200.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/tbccombobox.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/tbccombobox_150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/tbccombobox_200.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/tbclabel_200.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/tbclistbox.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/tbclistbox_150.png
Binary file modified images/tbclistbox_200.png
Binary file modified images/tbcmaterialdesignbutton.png
Binary file modified images/tbcmaterialdesignbutton_150.png
Binary file modified images/tbcmaterialdesignbutton_200.png
Binary file modified images/tbcmdbutton.png
Binary file modified images/tbcmdbutton_150.png
Binary file modified images/tbcmdbutton_200.png
Binary file modified images/tbcmdbuttonfocus.png
Binary file modified images/tbcmdbuttonfocus_150.png
Binary file modified images/tbcmdbuttonfocus_200.png
Binary file modified images/tbcpanel_150.png
Binary file modified images/tbcpanel_200.png
Binary file modified images/tbcpaperlistbox.png
Binary file modified images/tbcpaperlistbox_150.png
Binary file modified images/tbcpaperlistbox_200.png
Binary file modified images/tbcpaperpanel_150.png
Binary file modified images/tbcpaperpanel_200.png
Binary file modified images/tbcsvgviewer.png
Binary file modified images/tbcsvgviewer_150.png
Binary file modified images/tbcsvgviewer_200.png
Binary file modified images/tbctoolbar.png
Binary file modified images/tbctoolbar_150.png
Binary file modified images/tbctoolbar_200.png
Binary file modified images/tbctrackbarupdown.png
Binary file modified images/tbctrackbarupdown_150.png
Binary file modified images/tbctrackbarupdown_200.png
Binary file modified images/tbcxbutton.png
Binary file modified images/tbcxbutton_150.png
Binary file modified images/tbcxbutton_200.png
Binary file modified images/tbgracolortheme_150.png
Binary file modified images/tbgracolortheme_200.png
Binary file modified images/tbgragraphiccontrol_150.png
Binary file modified images/tbgragraphiccontrol_200.png
Binary file modified images/tbgraimagelist.png
Binary file modified images/tbgraimagelist_150.png
Binary file modified images/tbgraimagelist_200.png
Binary file modified images/tbgraimagetheme_150.png
Binary file modified images/tbgraimagetheme_200.png
Binary file modified images/tbgraknob.png
Binary file modified images/tbgraknob_150.png
Binary file modified images/tbgraknob_200.png
Binary file modified images/tbgraresizespeedbutton.png
Binary file modified images/tbgraresizespeedbutton_150.png
Binary file modified images/tbgraresizespeedbutton_200.png
Binary file modified images/tbgrashape.png
Binary file modified images/tbgrashape_150.png
Binary file modified images/tbgrashape_200.png
Binary file modified images/tbgraspeedbutton.png
Binary file modified images/tbgraspeedbutton_150.png
Binary file modified images/tbgraspeedbutton_200.png
Binary file modified images/tbgraspriteanimation.png
Binary file modified images/tbgraspriteanimation_150.png
Binary file modified images/tbgraspriteanimation_200.png
Binary file modified images/tbgratheme_150.png
Binary file modified images/tbgratheme_200.png
Binary file modified images/tbgrathemebutton.png
Binary file modified images/tbgrathemebutton_150.png
Binary file modified images/tbgrathemebutton_200.png
Binary file modified images/tbgrathemeradiobutton.png
Binary file modified images/tbgrathemeradiobutton_150.png
Binary file modified images/tbgrathemeradiobutton_200.png
Binary file modified images/tbgravirtualscreen_150.png
Binary file modified images/tbgravirtualscreen_200.png
Binary file modified images/tcolorspeedbutton.png
Binary file modified images/tcolorspeedbutton_150.png
Binary file modified images/tcolorspeedbutton_200.png
Binary file modified images/tdtanalogclock.png
Binary file modified images/tdtanalogclock_150.png
Binary file modified images/tdtanalogclock_200.png
Binary file modified images/tdtanaloggauge.png
Binary file modified images/tdtanaloggauge_150.png
Binary file modified images/tdtanaloggauge_200.png
Binary file modified images/tdtthemedclock.png
Binary file modified images/tdtthemedclock_150.png
Binary file modified images/tdtthemedclock_200.png
Binary file modified images/tdtthemedgauge.png
Binary file modified images/tdtthemedgauge_150.png
Binary file modified images/tdtthemedgauge_200.png
16 changes: 11 additions & 5 deletions test/test_bcbutton_macos_style/test_bcbuttonmacos_style.lpi
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
<ProjectOptions>
<Version Value="10"/>
<Version Value="12"/>
<PathDelim Value="\"/>
<General>
<Flags>
<CompatibilityMode Value="True"/>
</Flags>
<SessionStorage Value="InProjectDir"/>
<MainUnit Value="0"/>
<Title Value="test_bcbuttonmacos_style"/>
<Scaled Value="True"/>
<ResourceType Value="res"/>
Expand All @@ -22,9 +24,10 @@
<Version Value="2"/>
</PublishOptions>
<RunParams>
<local>
<FormatVersion Value="1"/>
</local>
<FormatVersion Value="2"/>
<Modes Count="1">
<Mode0 Name="default"/>
</Modes>
</RunParams>
<RequiredPackages Count="2">
<Item1>
Expand Down Expand Up @@ -59,6 +62,9 @@
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
<Linking>
<Debugging>
<DebugInfoType Value="dsDwarf2Set"/>
</Debugging>
<Options>
<Win32>
<GraphicApplication Value="True"/>
Expand Down
4 changes: 3 additions & 1 deletion test/test_bccombobox/test_bccombobox.lpi
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
</PublishOptions>
<RunParams>
<FormatVersion Value="2"/>
<Modes Count="0"/>
</RunParams>
<RequiredPackages Count="2">
<Item1>
Expand Down Expand Up @@ -61,6 +60,9 @@
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
<Linking>
<Debugging>
<DebugInfoType Value="dsDwarf2Set"/>
</Debugging>
<Options>
<Win32>
<GraphicApplication Value="True"/>
Expand Down
16 changes: 16 additions & 0 deletions test/test_bcimagebutton/button.bcimagebutton
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
object BCImageButton5: TBCImageButton
Left = 32
Height = 55
Top = 269
Width = 275
Anchors = [akTop, akLeft, akRight]
BitmapFile = 'D:\repositorios\bgracontrols\test\test_bcimagebutton\sample_5.png'
BitmapOptions.AutoDetectRepeat = True
BitmapOptions.MarginTop = 4
BitmapOptions.MarginRight = 4
BitmapOptions.MarginBottom = 4
BitmapOptions.MarginLeft = 4
BitmapOptions.Direction = sdVertical
Caption = 'BCImageButton5'
ParentFont = False
end
Binary file modified test/test_bcimagebutton/sample_1.png
Binary file modified test/test_bcimagebutton_3dbutton/boton3d.png
16 changes: 11 additions & 5 deletions test/test_bcimagebutton_3dbutton/test_drawing.lpi
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
<ProjectOptions>
<Version Value="10"/>
<Version Value="12"/>
<PathDelim Value="\"/>
<General>
<Flags>
<CompatibilityMode Value="True"/>
</Flags>
<SessionStorage Value="InProjectDir"/>
<MainUnit Value="0"/>
<Title Value="test_drawing"/>
<ResourceType Value="res"/>
<UseXPManifest Value="True"/>
Expand All @@ -23,9 +25,10 @@
<Version Value="2"/>
</PublishOptions>
<RunParams>
<local>
<FormatVersion Value="1"/>
</local>
<FormatVersion Value="2"/>
<Modes Count="1">
<Mode0 Name="default"/>
</Modes>
</RunParams>
<RequiredPackages Count="2">
<Item1>
Expand Down Expand Up @@ -60,6 +63,9 @@
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
<Linking>
<Debugging>
<DebugInfoType Value="dsDwarf2Set"/>
</Debugging>
<Options>
<Win32>
<GraphicApplication Value="True"/>
Expand Down
Binary file modified test/test_bcimagebutton_alpha/button.png
Binary file modified test/test_bcimagebutton_alpha/button2.png
10 changes: 7 additions & 3 deletions test/test_bcimagebutton_alpha/test.lpi
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
<ProjectOptions>
<Version Value="11"/>
<Version Value="12"/>
<PathDelim Value="\"/>
<General>
<Flags>
<CompatibilityMode Value="True"/>
</Flags>
<SessionStorage Value="InProjectDir"/>
<MainUnit Value="0"/>
<Title Value="test"/>
<Scaled Value="True"/>
<ResourceType Value="res"/>
Expand Down Expand Up @@ -98,7 +100,6 @@
</PublishOptions>
<RunParams>
<FormatVersion Value="2"/>
<Modes Count="0"/>
</RunParams>
<RequiredPackages Count="2">
<Item1>
Expand Down Expand Up @@ -133,6 +134,9 @@
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
<Linking>
<Debugging>
<DebugInfoType Value="dsDwarf2Set"/>
</Debugging>
<Options>
<Win32>
<GraphicApplication Value="True"/>
Expand Down
11 changes: 8 additions & 3 deletions test/test_bcimagebutton_toggle/test.lpi
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
<ProjectOptions>
<Version Value="11"/>
<Version Value="12"/>
<PathDelim Value="\"/>
<General>
<Flags>
<CompatibilityMode Value="True"/>
</Flags>
<SessionStorage Value="InProjectDir"/>
<MainUnit Value="0"/>
<Title Value="test"/>
<Scaled Value="True"/>
<ResourceType Value="res"/>
Expand All @@ -27,7 +29,6 @@
</PublishOptions>
<RunParams>
<FormatVersion Value="2"/>
<Modes Count="0"/>
</RunParams>
<RequiredPackages Count="2">
<Item1>
Expand All @@ -46,6 +47,7 @@
<Filename Value="umain.pas"/>
<IsPartOfProject Value="True"/>
<ComponentName Value="Form1"/>
<HasResources Value="True"/>
<ResourceBaseClass Value="Form"/>
</Unit1>
</Units>
Expand All @@ -61,6 +63,9 @@
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
<Linking>
<Debugging>
<DebugInfoType Value="dsDwarf2Set"/>
</Debugging>
<Options>
<Win32>
<GraphicApplication Value="True"/>
Expand Down
Binary file modified test/test_bcimagebutton_toggle/toggle.png
16 changes: 11 additions & 5 deletions test/test_bcsvg/test_svg.lpi
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
<ProjectOptions>
<Version Value="10"/>
<Version Value="12"/>
<PathDelim Value="\"/>
<General>
<Flags>
<CompatibilityMode Value="True"/>
</Flags>
<SessionStorage Value="InProjectDir"/>
<MainUnit Value="0"/>
<Title Value="test_svg"/>
<Scaled Value="True"/>
<ResourceType Value="res"/>
Expand All @@ -25,9 +27,10 @@
<Version Value="2"/>
</PublishOptions>
<RunParams>
<local>
<FormatVersion Value="1"/>
</local>
<FormatVersion Value="2"/>
<Modes Count="1">
<Mode0 Name="default"/>
</Modes>
</RunParams>
<RequiredPackages Count="2">
<Item1>
Expand Down Expand Up @@ -62,6 +65,9 @@
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
<Linking>
<Debugging>
<DebugInfoType Value="dsDwarf2Set"/>
</Debugging>
<Options>
<Win32>
<GraphicApplication Value="True"/>
Expand Down
Loading

0 comments on commit ff5c54f

Please sign in to comment.