home *** CD-ROM | disk | FTP | other *** search
/ Chip: Shareware for Win 95 / Chip-Shareware-Win95.bin / ostatni / delphi / delphi2 / wowsrc.exe / BITMAPDL.PAS < prev    next >
Pascal/Delphi Source File  |  1995-10-28  |  2KB  |  91 lines

  1. unit Bitmapdl;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
  6.   StdCtrls, ExtCtrls, Dialogs;
  7.  
  8. type
  9.   TBitmapDlg = class(TForm)
  10.     OKBtn: TBitBtn;
  11.     Bevel1: TBevel;
  12.     OpenDialog: TOpenDialog;
  13.     EditFile: TEdit;
  14.     FileBtn: TSpeedButton;
  15.     PrevBtn: TSpeedButton;
  16.     Panel1: TPanel;
  17.     Image: TImage;
  18.     Memo1: TMemo;
  19.     GroupBox1: TGroupBox;
  20.     Label1: TLabel;
  21.     Label2: TLabel;
  22.     Spd: TScrollBar;
  23.     procedure FileBtnClick(Sender: TObject);
  24.     procedure OKBtnClick(Sender: TObject);
  25.     procedure PrevBtnClick(Sender: TObject);
  26.     procedure FormActivate(Sender: TObject);
  27.     procedure SpdChange(Sender: TObject);
  28.     procedure FormClose(Sender: TObject; var Action: TCloseAction);
  29.   private
  30.     { Private declarations }
  31.   public
  32.     { Public declarations }
  33.   end;
  34.  
  35. var
  36.   BitmapDlg: TBitmapDlg;
  37.  
  38. implementation
  39.  
  40. uses Globals, IniFiles;
  41. {$R *.DFM}
  42.  
  43. procedure TBitmapDlg.FileBtnClick(Sender: TObject);
  44. begin
  45.   if OpenDialog.Execute then
  46.   begin
  47.     EditFile.Text := OpenDialog.Filename;
  48.     BitmapFile    := EditFile.Text;
  49.   end;
  50. end;
  51.  
  52. procedure TBitmapDlg.OKBtnClick(Sender: TObject);
  53. begin
  54.   Close;
  55. end;
  56.  
  57. procedure TBitmapDlg.PrevBtnClick(Sender: TObject);
  58. begin
  59.   Image.Picture.LoadFromFile(BitmapFile);
  60. end;
  61.  
  62. procedure TBitmapDlg.FormActivate(Sender: TObject);
  63. var
  64.   Ini   : TiniFile;
  65. begin
  66.   Ini := TIniFile.Create('Wow.Ini');                   { Open the Ini File }
  67.   Apptitle := 'Bitmap';
  68.   EditFile.Text := Ini.ReadString(Apptitle, 'Bitmap File Location', #0); { bitmap filename }
  69.   BitmapFile := EditFile.Text;
  70.   Spd.Position := Ini.ReadInteger(Apptitle, 'Speed', 25); { bitmap speed }
  71.   Ini.Free;
  72. end;
  73.  
  74. procedure TBitmapDlg.SpdChange(Sender: TObject);
  75. begin
  76.   SetFocus;
  77. end;
  78.  
  79. procedure TBitmapDlg.FormClose(Sender: TObject; var Action: TCloseAction);
  80. var
  81.   Ini   : TiniFile;
  82. begin
  83.   Ini := TIniFile.Create('Wow.Ini');                   { Open the Ini File }
  84.   Apptitle := 'Bitmap';                                { Set title }
  85.   Ini.WriteString(Apptitle, 'Bitmap File Location', BitmapFile); { bitmap filename }
  86.   Ini.WriteInteger(Apptitle,'Speed',Spd.Position);         { Write the Speed }
  87.   Ini.Free;
  88. end;
  89.  
  90. end.
  91.