home *** CD-ROM | disk | FTP | other *** search
- unit NewImageUnit;
-
- (* ***** BEGIN LICENSE BLOCK *****
- * Version: MPL 1.1
- *
- * The contents of this file are subject to the Mozilla Public License Version
- * 1.1 (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * Software distributed under the License is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- * for the specific language governing rights and limitations under the
- * License.
- *
- * The Original Code is Graphics32
- *
- * The Initial Developer of the Original Code is
- * Alex A. Denisov
- *
- * Portions created by the Initial Developer are Copyright (C) 2000-2004
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- *
- * ***** END LICENSE BLOCK ***** *)
-
- interface
-
- uses
- SysUtils, Classes, QForms, QDialogs, QStdCtrls, QControls, QExtCtrls,
- QComCtrls;
-
- type
- TNewImageForm = class(TForm)
- Label1: TLabel;
- Label2: TLabel;
- Label3: TLabel;
- Label4: TLabel;
- Label5: TLabel;
- Panel1: TPanel;
- Button1: TButton;
- Button2: TButton;
- Button3: TButton;
- ImageWidth: TEdit;
- ImageHeight: TEdit;
- ColorDialog1: TColorDialog;
- procedure Button1Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- NewImageForm: TNewImageForm;
-
- implementation
-
- {$R *.xfm}
-
- procedure TNewImageForm.Button1Click(Sender: TObject);
- begin
- with ColorDialog1 do
- begin
- Color := Panel1.Color;
- if Execute then Panel1.Color := Color;
- end;
- end;
-
- end.
-