You've already forked lazarus-ccr
41 lines
627 B
ObjectPascal
41 lines
627 B
ObjectPascal
![]() |
unit Unit1;
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, Grids, ComCtrls,
|
||
|
StdCtrls, SpkToolbar, spkt_Tab, spkt_Pane, spkt_Buttons;
|
||
|
|
||
|
type
|
||
|
|
||
|
{ TForm1 }
|
||
|
|
||
|
TForm1 = class(TForm)
|
||
|
ImageList1: TImageList;
|
||
|
Label1: TLabel;
|
||
|
SpkLargeButton1: TSpkLargeButton;
|
||
|
SpkLargeButton2: TSpkLargeButton;
|
||
|
SpkPane1: TSpkPane;
|
||
|
SpkSmallButton1: TSpkSmallButton;
|
||
|
SpkSmallButton2: TSpkSmallButton;
|
||
|
SpkSmallButton3: TSpkSmallButton;
|
||
|
SpkTab1: TSpkTab;
|
||
|
SpkToolbar1: TSpkToolbar;
|
||
|
private
|
||
|
|
||
|
public
|
||
|
|
||
|
end;
|
||
|
|
||
|
var
|
||
|
Form1: TForm1;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
{$R *.lfm}
|
||
|
|
||
|
end.
|
||
|
|