Стартовый пул
This commit is contained in:
BIN
btncomps/ButtonComps.dcr
Normal file
BIN
btncomps/ButtonComps.dcr
Normal file
Binary file not shown.
1079
btncomps/ButtonComps.pas
Normal file
1079
btncomps/ButtonComps.pas
Normal file
File diff suppressed because it is too large
Load Diff
17
btncomps/Example/Example.dpr
Normal file
17
btncomps/Example/Example.dpr
Normal file
@@ -0,0 +1,17 @@
|
||||
program Example;
|
||||
{$IFDEF FPC}
|
||||
{$MODE Delphi}
|
||||
{$ENDIF}
|
||||
uses
|
||||
{$IFnDEF FPC}
|
||||
{$ELSE}
|
||||
Interfaces,
|
||||
{$ENDIF}
|
||||
Forms,
|
||||
Unit1 in 'Unit1.pas' {Form1};
|
||||
{$R *.res}
|
||||
begin
|
||||
Application.Initialize;
|
||||
Application.CreateForm(TForm1, Form1);
|
||||
Application.Run;
|
||||
end.
|
92
btncomps/Example/Example.lpi
Normal file
92
btncomps/Example/Example.lpi
Normal file
@@ -0,0 +1,92 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<CONFIG>
|
||||
<ProjectOptions>
|
||||
<Version Value="10"/>
|
||||
<PathDelim Value="\"/>
|
||||
<General>
|
||||
<Flags>
|
||||
<MainUnitHasUsesSectionForAllUnits Value="False"/>
|
||||
<MainUnitHasCreateFormStatements Value="False"/>
|
||||
<MainUnitHasTitleStatement Value="False"/>
|
||||
</Flags>
|
||||
<SessionStorage Value="InProjectDir"/>
|
||||
<MainUnit Value="0"/>
|
||||
<Title Value="Example"/>
|
||||
<UseAppBundle Value="False"/>
|
||||
<ResourceType Value="res"/>
|
||||
</General>
|
||||
<i18n>
|
||||
<EnableI18N LFM="False"/>
|
||||
</i18n>
|
||||
<VersionInfo>
|
||||
<StringTable ProductVersion=""/>
|
||||
</VersionInfo>
|
||||
<BuildModes Count="1">
|
||||
<Item1 Name="Default" Default="True"/>
|
||||
</BuildModes>
|
||||
<PublishOptions>
|
||||
<Version Value="2"/>
|
||||
</PublishOptions>
|
||||
<RunParams>
|
||||
<local>
|
||||
<FormatVersion Value="1"/>
|
||||
</local>
|
||||
</RunParams>
|
||||
<RequiredPackages Count="1">
|
||||
<Item1>
|
||||
<PackageName Value="LCL"/>
|
||||
</Item1>
|
||||
</RequiredPackages>
|
||||
<Units Count="3">
|
||||
<Unit0>
|
||||
<Filename Value="Example.dpr"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
</Unit0>
|
||||
<Unit1>
|
||||
<Filename Value="Unit1.pas"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
<HasResources Value="True"/>
|
||||
</Unit1>
|
||||
<Unit2>
|
||||
<Filename Value="..\ConverterBackup\ButtonComps.pas"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
</Unit2>
|
||||
</Units>
|
||||
</ProjectOptions>
|
||||
<CompilerOptions>
|
||||
<Version Value="11"/>
|
||||
<PathDelim Value="\"/>
|
||||
<SearchPaths>
|
||||
<IncludeFiles Value="..\ConverterBackup"/>
|
||||
<OtherUnitFiles Value="..\ConverterBackup"/>
|
||||
</SearchPaths>
|
||||
<Parsing>
|
||||
<SyntaxOptions>
|
||||
<SyntaxMode Value="delphi"/>
|
||||
</SyntaxOptions>
|
||||
</Parsing>
|
||||
<Linking>
|
||||
<Options>
|
||||
<Win32>
|
||||
<GraphicApplication Value="True"/>
|
||||
</Win32>
|
||||
</Options>
|
||||
</Linking>
|
||||
<Other>
|
||||
<CustomOptions Value="-dBorland -dVer150 -dDelphi7 -dCompiler6_Up -dPUREPASCAL"/>
|
||||
</Other>
|
||||
</CompilerOptions>
|
||||
<Debugging>
|
||||
<Exceptions Count="3">
|
||||
<Item1>
|
||||
<Name Value="EAbort"/>
|
||||
</Item1>
|
||||
<Item2>
|
||||
<Name Value="ECodetoolError"/>
|
||||
</Item2>
|
||||
<Item3>
|
||||
<Name Value="EFOpenError"/>
|
||||
</Item3>
|
||||
</Exceptions>
|
||||
</Debugging>
|
||||
</CONFIG>
|
BIN
btncomps/Example/Unit1.dfm
Normal file
BIN
btncomps/Example/Unit1.dfm
Normal file
Binary file not shown.
2037
btncomps/Example/Unit1.lfm
Normal file
2037
btncomps/Example/Unit1.lfm
Normal file
File diff suppressed because it is too large
Load Diff
52
btncomps/Example/Unit1.pas
Normal file
52
btncomps/Example/Unit1.pas
Normal file
@@ -0,0 +1,52 @@
|
||||
unit Unit1;
|
||||
|
||||
{$IFDEF FPC}
|
||||
{$MODE Delphi}
|
||||
{$ENDIF}
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
{$IFnDEF FPC}
|
||||
Windows,
|
||||
{$ELSE}
|
||||
LCLIntf, LCLType, LMessages,
|
||||
{$ENDIF}
|
||||
Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
||||
ButtonComps, ExtCtrls;
|
||||
|
||||
type
|
||||
TForm1 = class(TForm)
|
||||
Panel1: TPanel;
|
||||
EncartaButton1: TEncartaButton;
|
||||
EncartaButton2: TEncartaButton;
|
||||
AOLButton1: TAOLButton;
|
||||
SelButton1: TSelButton;
|
||||
SquareButton1: TSquareButton;
|
||||
AOLButton2: TAOLButton;
|
||||
EncartaButton3: TEncartaButton;
|
||||
ImageButton1: TImageButton;
|
||||
procedure EncartaButton3Click(Sender: TObject);
|
||||
private
|
||||
{ Private-Deklarationen }
|
||||
public
|
||||
{ Public-Deklarationen }
|
||||
end;
|
||||
|
||||
var
|
||||
Form1: TForm1;
|
||||
|
||||
implementation
|
||||
|
||||
{$IFnDEF FPC}
|
||||
{$R *.dfm}
|
||||
{$ELSE}
|
||||
{$R *.lfm}
|
||||
{$ENDIF}
|
||||
|
||||
procedure TForm1.EncartaButton3Click(Sender: TObject);
|
||||
begin
|
||||
close;
|
||||
end;
|
||||
|
||||
end.
|
36
btncomps/btncomps.lpk
Normal file
36
btncomps/btncomps.lpk
Normal file
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<CONFIG>
|
||||
<Package Version="4">
|
||||
<PathDelim Value="\"/>
|
||||
<Name Value="btncomps"/>
|
||||
<Type Value="RunAndDesignTime"/>
|
||||
<CompilerOptions>
|
||||
<Version Value="11"/>
|
||||
<PathDelim Value="\"/>
|
||||
<SearchPaths>
|
||||
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)\"/>
|
||||
</SearchPaths>
|
||||
</CompilerOptions>
|
||||
<Files Count="1">
|
||||
<Item1>
|
||||
<Filename Value="ButtonComps.pas"/>
|
||||
<HasRegisterProc Value="True"/>
|
||||
<UnitName Value="ButtonComps"/>
|
||||
</Item1>
|
||||
</Files>
|
||||
<RequiredPkgs Count="2">
|
||||
<Item1>
|
||||
<PackageName Value="LCL"/>
|
||||
</Item1>
|
||||
<Item2>
|
||||
<PackageName Value="FCL"/>
|
||||
</Item2>
|
||||
</RequiredPkgs>
|
||||
<UsageOptions>
|
||||
<UnitPath Value="$(PkgOutDir)"/>
|
||||
</UsageOptions>
|
||||
<PublishOptions>
|
||||
<Version Value="2"/>
|
||||
</PublishOptions>
|
||||
</Package>
|
||||
</CONFIG>
|
21
btncomps/btncomps.pas
Normal file
21
btncomps/btncomps.pas
Normal file
@@ -0,0 +1,21 @@
|
||||
{ This file was automatically created by Lazarus. Do not edit!
|
||||
This source is only used to compile and install the package.
|
||||
}
|
||||
|
||||
unit btncomps;
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
ButtonComps, LazarusPackageIntf;
|
||||
|
||||
implementation
|
||||
|
||||
procedure Register;
|
||||
begin
|
||||
RegisterUnit('ButtonComps', @ButtonComps.Register);
|
||||
end;
|
||||
|
||||
initialization
|
||||
RegisterPackage('btncomps', @Register);
|
||||
end.
|
61
btncomps/readme - deutsch.txt
Normal file
61
btncomps/readme - deutsch.txt
Normal file
@@ -0,0 +1,61 @@
|
||||
ButtonComponents v1.0
|
||||
f<EFBFBD>r Delphi 2,3,4,5
|
||||
|
||||
Copyright <20> 1999 Yunus Hi-Tec Labs
|
||||
Alle Rechte vorbehalten.
|
||||
|
||||
Autor: Yunus Morkramer
|
||||
|
||||
=====================================================================
|
||||
|
||||
1. Installation
|
||||
2. <20>ber ButtonComponents
|
||||
3. Fehlerbehebungen
|
||||
4. Lizenz
|
||||
|
||||
=====================================================================
|
||||
|
||||
|
||||
1. Installation
|
||||
================
|
||||
|
||||
- Starten Sie Delphi.
|
||||
- Klicken Sie auf Komponente/Installieren
|
||||
- W<>hlen Sie die Datei ButtonComps.pas
|
||||
- Klicken Sie auf OK.
|
||||
|
||||
|
||||
2. <20>ber ButtonComponents
|
||||
=========================
|
||||
|
||||
ButtonComponents stellt Ihnen 5 verschieden gestaltelte Buttons zur
|
||||
Verf<EFBFBD>gung. Wir hoffen dass Sie Ihnen gefallen.
|
||||
|
||||
|
||||
3. Fehlerbehebungen
|
||||
====================
|
||||
|
||||
Delphi 4:
|
||||
|
||||
Fehler beim Compilieren:
|
||||
- Datei nicht gefunden "ButtonComps.dcu",
|
||||
Fehlerbehebung:
|
||||
- 1. Klicken Sie auf Tools/Umgebungsoptionen.
|
||||
2. Wechseln Sie zu "Bibliothek".
|
||||
3. F<>gen Sie am Ende des Bibliothekpfades den Pfad des
|
||||
ButtonComponents-Verzeichnis ein.
|
||||
|
||||
|
||||
5. Lizenz
|
||||
==========
|
||||
|
||||
ButtonComponents ist Freeware. Sie d<>rfen alle Buttons ohne
|
||||
irgendwelche Verpflichtungen verwenden.
|
||||
|
||||
=====================================================================
|
||||
|
||||
F<EFBFBD>r weitere Delphi Komponenten, besuchen Sie unsere Homepage:
|
||||
www.hi-tec-labs.de
|
||||
|
||||
F<EFBFBD>r Fragen, Kritik etc. schicken Sie uns eine Mail:
|
||||
info@hi-tec-labs.de
|
60
btncomps/readme - english.txt
Normal file
60
btncomps/readme - english.txt
Normal file
@@ -0,0 +1,60 @@
|
||||
ButtonComponents v1.0
|
||||
for Delphi 2,3,4,5
|
||||
|
||||
Copyright <20> 1999 Yunus Hi-Tec Labs
|
||||
All rights reserved.
|
||||
|
||||
Author: Yunus Morkramer
|
||||
|
||||
=====================================================================
|
||||
|
||||
1. Installation
|
||||
2. About ButtonComponents
|
||||
3. Troubleshooting
|
||||
4. Licence
|
||||
|
||||
=====================================================================
|
||||
|
||||
|
||||
1. Installation
|
||||
================
|
||||
|
||||
- Start Delphi.
|
||||
- Click Components/Install.
|
||||
- Choose file ButtonComps.pas
|
||||
- Click OK.
|
||||
|
||||
|
||||
2. About ButtonComponents
|
||||
==========================
|
||||
|
||||
ButtonComponents contains five nice designed buttons. Have fun with
|
||||
them.
|
||||
|
||||
|
||||
3. Troubleshooting
|
||||
===================
|
||||
|
||||
Delphi 4:
|
||||
|
||||
Error while compiling:
|
||||
- File not found "ButtonComps.dcu".
|
||||
Solution:
|
||||
- 1. Click Tools/Environment Options.
|
||||
2. Change to "Library".
|
||||
3. Add the ButtonComponents-Directory to the library path.
|
||||
|
||||
|
||||
4. Licence
|
||||
===========
|
||||
|
||||
ButtonComponents is freeware. You are allowed to use all components
|
||||
without any obligations.
|
||||
|
||||
=====================================================================
|
||||
|
||||
For more Delphi components, visit our Delphi site:
|
||||
www.hi-tec-labs.de/delphi.htm
|
||||
|
||||
For questions, critisism etc. send us an email:
|
||||
info@hi-tec-labs.de
|
Reference in New Issue
Block a user