-
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
16 changed files
with
1,992 additions
and
5 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,5 +1,8 @@ | ||
TChromeTabs 2.5 Beta | ||
|
||
22-11-2018 | ||
Update: DX10.3 Rio Support | ||
|
||
04-05-2017 | ||
Update: DX10.2 Tokyo 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,60 @@ | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<ProjectGuid>{17F82C49-3DB5-4032-A63B-C118A7B20750}</ProjectGuid> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Projects Include="Demo\ChromeTabsDemoDX10_3.dproj"> | ||
<Dependencies/> | ||
</Projects> | ||
<Projects Include="Packages\Delphi DX10.3\ChromeTabs_R.dproj"> | ||
<Dependencies/> | ||
</Projects> | ||
<Projects Include="Packages\Delphi DX10.3\ChromeTabs_D.dproj"> | ||
<Dependencies/> | ||
</Projects> | ||
</ItemGroup> | ||
<ProjectExtensions> | ||
<Borland.Personality>Default.Personality.12</Borland.Personality> | ||
<Borland.ProjectType/> | ||
<BorlandProject> | ||
<Default.Personality/> | ||
</BorlandProject> | ||
</ProjectExtensions> | ||
<Target Name="ChromeTabsDemoDX10_3"> | ||
<MSBuild Projects="Demo\ChromeTabsDemoDX10_3.dproj"/> | ||
</Target> | ||
<Target Name="ChromeTabsDemoDX10_3:Clean"> | ||
<MSBuild Projects="Demo\ChromeTabsDemoDX10_3.dproj" Targets="Clean"/> | ||
</Target> | ||
<Target Name="ChromeTabsDemoDX10_3:Make"> | ||
<MSBuild Projects="Demo\ChromeTabsDemoDX10_3.dproj" Targets="Make"/> | ||
</Target> | ||
<Target Name="ChromeTabs_R"> | ||
<MSBuild Projects="Packages\Delphi DX10.3\ChromeTabs_R.dproj"/> | ||
</Target> | ||
<Target Name="ChromeTabs_R:Clean"> | ||
<MSBuild Projects="Packages\Delphi DX10.3\ChromeTabs_R.dproj" Targets="Clean"/> | ||
</Target> | ||
<Target Name="ChromeTabs_R:Make"> | ||
<MSBuild Projects="Packages\Delphi DX10.3\ChromeTabs_R.dproj" Targets="Make"/> | ||
</Target> | ||
<Target Name="ChromeTabs_D"> | ||
<MSBuild Projects="Packages\Delphi DX10.3\ChromeTabs_D.dproj"/> | ||
</Target> | ||
<Target Name="ChromeTabs_D:Clean"> | ||
<MSBuild Projects="Packages\Delphi DX10.3\ChromeTabs_D.dproj" Targets="Clean"/> | ||
</Target> | ||
<Target Name="ChromeTabs_D:Make"> | ||
<MSBuild Projects="Packages\Delphi DX10.3\ChromeTabs_D.dproj" Targets="Make"/> | ||
</Target> | ||
<Target Name="Build"> | ||
<CallTarget Targets="ChromeTabsDemoDX10_3;ChromeTabs_R;ChromeTabs_D"/> | ||
</Target> | ||
<Target Name="Clean"> | ||
<CallTarget Targets="ChromeTabsDemoDX10_3:Clean;ChromeTabs_R:Clean;ChromeTabs_D:Clean"/> | ||
</Target> | ||
<Target Name="Make"> | ||
<CallTarget Targets="ChromeTabsDemoDX10_3:Make;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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
program ChromeTabsDemoDX10_3; | ||
|
||
uses | ||
Forms, | ||
frmMainU in 'frmMainU.pas' {frmMain}, | ||
frameChromeTabStyleU in 'frameChromeTabStyleU.pas' {frameChromeTabStyle: TFrame}, | ||
ChromeTabsClasses in '..\Lib\ChromeTabsClasses.pas', | ||
ChromeTabsControls in '..\Lib\ChromeTabsControls.pas', | ||
ChromeTabsGlassForm in '..\Lib\ChromeTabsGlassForm.pas', | ||
ChromeTabsLog in '..\Lib\ChromeTabsLog.pas', | ||
ChromeTabsThreadTimer in '..\Lib\ChromeTabsThreadTimer.pas', | ||
ChromeTabsTypes in '..\Lib\ChromeTabsTypes.pas', | ||
ChromeTabsUtils in '..\Lib\ChromeTabsUtils.pas', | ||
ChromeTabs in '..\Lib\ChromeTabs.pas'; | ||
|
||
{$R *.res} | ||
|
||
begin | ||
Application.Initialize; | ||
Application.MainFormOnTaskbar := True; | ||
Application.CreateForm(TfrmMain, frmMain); | ||
Application.Run; | ||
end. |
Oops, something went wrong.