source: tags/1.2.0/Forms/UFormImages.pas

Last change on this file was 77, checked in by chronos, 3 years ago
  • Added: Control icons for Pause, Play and Fast forward.
  • Modified: Image buttons changed to custom TImage control with Enabled property supported.
File size: 586 bytes
Line 
1unit UFormImages;
2
3{$mode delphi}
4
5interface
6
7uses
8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls;
9
10type
11
12 { TFormImages }
13
14 TFormImages = class(TForm)
15 ImageFastForward: TImage;
16 ImagePause: TImage;
17 ImagePlay: TImage;
18 ImageLeftArrow: TImage;
19 ImageLocomotive: TImage;
20 ImagePassenger: TImage;
21 ImageTunnel: TImage;
22 ImageScreenshot: TImage;
23 private
24 { private declarations }
25 public
26 { public declarations }
27 end;
28
29var
30 FormImages: TFormImages;
31
32implementation
33
34{$R *.lfm}
35
36end.
37
Note: See TracBrowser for help on using the repository browser.