56 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
{
 | 
						|
     Apophysis Copyright (C) 2001-2004 Mark Townsend
 | 
						|
 | 
						|
     This program is free software; you can redistribute it and/or modify
 | 
						|
     it under the terms of the GNU General Public License as published by
 | 
						|
     the Free Software Foundation; either version 2 of the License, or
 | 
						|
     (at your option) any later version.
 | 
						|
 | 
						|
     This program is distributed in the hope that it will be useful,
 | 
						|
     but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
     GNU General Public License for more details.
 | 
						|
 | 
						|
     You should have received a copy of the GNU General Public License
 | 
						|
     along with this program; if not, write to the Free Software
 | 
						|
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 | 
						|
}
 | 
						|
unit SavePreset;
 | 
						|
 | 
						|
interface
 | 
						|
 | 
						|
uses
 | 
						|
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
 | 
						|
  StdCtrls;
 | 
						|
 | 
						|
type
 | 
						|
  TSavePresetForm = class(TForm)
 | 
						|
    txtPresetName: TEdit;
 | 
						|
    Label1: TLabel;
 | 
						|
    Button1: TButton;
 | 
						|
    Button2: TButton;
 | 
						|
    procedure Button1Click(Sender: TObject);
 | 
						|
  private
 | 
						|
    { Private declarations }
 | 
						|
  public
 | 
						|
    { Public declarations }
 | 
						|
  end;
 | 
						|
 | 
						|
var
 | 
						|
  SavePresetForm: TSavePresetForm;
 | 
						|
 | 
						|
implementation
 | 
						|
 | 
						|
{$R *.DFM}
 | 
						|
 | 
						|
procedure TSavePresetForm.Button1Click(Sender: TObject);
 | 
						|
begin
 | 
						|
  if txtPresetName.Text = '' then
 | 
						|
  begin
 | 
						|
    Application.MessageBox(PChar('Please enter a name for the preset.'), 'Apophysis', 48);
 | 
						|
    Exit;
 | 
						|
  end;
 | 
						|
end;
 | 
						|
 | 
						|
end.
 |