home *** CD-ROM | disk | FTP | other *** search
/ Chip: Shareware for Win 95 / Chip-Shareware-Win95.bin / ostatni / delphi / delphi2 / wowsrc.exe / PICDLG.PAS < prev    next >
Pascal/Delphi Source File  |  1996-03-28  |  3KB  |  98 lines

  1. unit Picdlg;
  2.  
  3. interface
  4.  
  5. uses SysUtils, 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.     Panel1: TPanel;
  16.     Image: TImage;
  17.     Memo1: TMemo;
  18.     GroupBox1: TGroupBox;
  19.     Label1: TLabel;
  20.     Label2: TLabel;
  21.     Spd: TScrollBar;
  22.     MoveCheckBox: TCheckBox;
  23.     procedure FileBtnClick(Sender: TObject);
  24.     procedure OKBtnClick(Sender: TObject);
  25.     procedure GetBitmap;
  26.     procedure FormShow(Sender: TObject);
  27.     procedure FormClose(Sender: TObject; var Action: TCloseAction);
  28.   private
  29.     { Private declarations }
  30.   public
  31.     { Public declarations }
  32.   end;
  33.  
  34. var
  35.   BitmapDlg: TBitmapDlg;
  36.  
  37. implementation
  38.  
  39. uses Globals, IniFiles, Bitmap, Ssave;
  40. {$R *.DFM}
  41.  
  42. procedure TBitmapDlg.FileBtnClick(Sender: TObject);
  43. begin
  44.   if OpenDialog.Execute then
  45.   begin
  46.     EditFile.Text := OpenDialog.Filename;
  47.     BitmapFile    := EditFile.Text;
  48.     GetBitmap;
  49.   end;
  50. end;
  51.  
  52. procedure TBitmapDlg.OKBtnClick(Sender: TObject);
  53. begin
  54.   Close;
  55. end;
  56.  
  57. procedure TBitmapDlg.GetBitmap;
  58. begin
  59.   if FileExists(BitmapFile) then
  60.     Image.Picture.LoadFromFile(BitmapFile)
  61.   else
  62.     begin
  63.       MessageDlg('File Does Not Exist', mtError, [mbOk], 0);
  64.     end;
  65. end;
  66.  
  67. procedure TBitmapDlg.FormShow(Sender: TObject);
  68. var
  69.   Ini   : TiniFile;
  70. begin
  71.   Ini := TIniFile.Create('Wow.Ini');                   { Open the Ini File }
  72.   Apptitle := 'Bitmap';
  73.   EditFile.Text := Ini.ReadString(Apptitle, 'Bitmap File Location', #0); { bitmap filename }
  74.   BitmapFile := EditFile.Text;
  75.   MoveCheckBox.Checked  := Boolean(Ini.ReadInteger(Apptitle,
  76.                              'MoveOrPlot',1));                    { Get the Speed }
  77.   Spd.Position := Ini.ReadInteger(Apptitle, 'Speed', 25); { bitmap speed }
  78.   Ini.Free;
  79.   GetBitmap;
  80. end;
  81.  
  82. procedure TBitmapDlg.FormClose(Sender: TObject; var Action: TCloseAction);
  83. var
  84.   Ini   : TiniFile;
  85. begin
  86.   Ini := TIniFile.Create('Wow.Ini');                   { Open the Ini File }
  87.   Apptitle := 'Bitmap';                                { Set title }
  88.   Ini.WriteString(Apptitle, 'Bitmap File Location', BitmapFile); { bitmap filename }
  89.   Ini.WriteInteger(Apptitle,'Speed',Spd.Position);         { Write the Speed }
  90.   if MoveCheckBox.Checked then
  91.     Ini.WriteInteger(Apptitle,'MoveOrPlot',1)
  92.   else
  93.     Ini.WriteInteger(Apptitle,'MoveOrPlot',0);
  94.   Ini.Free;
  95. end;
  96.  
  97. end.
  98.