Files
lazarus-ccr/components/spktoolbar/demos/lclscaling/unit1.pas

41 lines
627 B
ObjectPascal
Raw Normal View History

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.