-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
2,232 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
TChromeTabs 2.6 | ||
TChromeTabs 2.7 | ||
|
||
10-11-2023 | ||
Update: Delphi 12 | ||
|
||
26-11-2020 | ||
Update: High-DPI support | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<ProjectGuid>{36C3BC78-218A-415D-A6B1-9121209CE146}</ProjectGuid> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Projects Include="Packages\Delphi DX12\ChromeTabs_R.dproj"> | ||
<Dependencies/> | ||
</Projects> | ||
<Projects Include="Packages\Delphi DX12\ChromeTabs_D.dproj"> | ||
<Dependencies/> | ||
</Projects> | ||
</ItemGroup> | ||
<ProjectExtensions> | ||
<Borland.Personality>Default.Personality.12</Borland.Personality> | ||
<Borland.ProjectType/> | ||
<BorlandProject> | ||
<Default.Personality/> | ||
</BorlandProject> | ||
</ProjectExtensions> | ||
<Target Name="ChromeTabs_R"> | ||
<MSBuild Projects="Packages\Delphi DX12\ChromeTabs_R.dproj"/> | ||
</Target> | ||
<Target Name="ChromeTabs_R:Clean"> | ||
<MSBuild Projects="Packages\Delphi DX12\ChromeTabs_R.dproj" Targets="Clean"/> | ||
</Target> | ||
<Target Name="ChromeTabs_R:Make"> | ||
<MSBuild Projects="Packages\Delphi DX12\ChromeTabs_R.dproj" Targets="Make"/> | ||
</Target> | ||
<Target Name="ChromeTabs_D"> | ||
<MSBuild Projects="Packages\Delphi DX12\ChromeTabs_D.dproj"/> | ||
</Target> | ||
<Target Name="ChromeTabs_D:Clean"> | ||
<MSBuild Projects="Packages\Delphi DX12\ChromeTabs_D.dproj" Targets="Clean"/> | ||
</Target> | ||
<Target Name="ChromeTabs_D:Make"> | ||
<MSBuild Projects="Packages\Delphi DX12\ChromeTabs_D.dproj" Targets="Make"/> | ||
</Target> | ||
<Target Name="Build"> | ||
<CallTarget Targets="ChromeTabs_R;ChromeTabs_D"/> | ||
</Target> | ||
<Target Name="Clean"> | ||
<CallTarget Targets="ChromeTabs_R:Clean;ChromeTabs_D:Clean"/> | ||
</Target> | ||
<Target Name="Make"> | ||
<CallTarget Targets="ChromeTabs_R:Make;ChromeTabs_D:Make"/> | ||
</Target> | ||
<Import Project="$(BDS)\Bin\CodeGear.Group.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Group.Targets')"/> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package ChromeTabs_D; | ||
|
||
{$R *.res} | ||
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} | ||
{$ALIGN 8} | ||
{$ASSERTIONS ON} | ||
{$BOOLEVAL OFF} | ||
{$DEBUGINFO OFF} | ||
{$EXTENDEDSYNTAX ON} | ||
{$IMPORTEDDATA ON} | ||
{$IOCHECKS ON} | ||
{$LOCALSYMBOLS OFF} | ||
{$LONGSTRINGS ON} | ||
{$OPENSTRINGS ON} | ||
{$OPTIMIZATION ON} | ||
{$OVERFLOWCHECKS OFF} | ||
{$RANGECHECKS OFF} | ||
{$REFERENCEINFO OFF} | ||
{$SAFEDIVIDE OFF} | ||
{$STACKFRAMES OFF} | ||
{$TYPEDADDRESS OFF} | ||
{$VARSTRINGCHECKS ON} | ||
{$WRITEABLECONST OFF} | ||
{$MINENUMSIZE 1} | ||
{$IMAGEBASE $400000} | ||
{$DEFINE RELEASE} | ||
{$ENDIF IMPLICITBUILDING} | ||
{$DESCRIPTION 'Chrome Tabs'} | ||
{$LIBVERSION '350'} | ||
{$DESIGNONLY} | ||
{$IMPLICITBUILD ON} | ||
|
||
requires | ||
rtl, | ||
DesignIDE, | ||
ChromeTabs_R; | ||
|
||
contains | ||
ChromeTabsDesign in '..\..\Lib\ChromeTabsDesign.pas', | ||
ChromeTabsRegister in '..\..\Lib\ChromeTabsRegister.pas'; | ||
|
||
end. |
Oops, something went wrong.