Componentes.Terceros.jvcl/official/3.36/design/JvQtKeyEditorForm.pas
2009-02-27 12:23:32 +00:00

74 lines
2.0 KiB
ObjectPascal

{-----------------------------------------------------------------------------
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/MPL-1.1.html
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either expressed or implied. See the License for
the specific language governing rights and limitations under the License.
The Original Code is: JvAppletEditor.PAS, released on 2002-05-26.
The Initial Developer of the Original Code is Peter Thörnqvist [peter3 att users dott sourceforge dott net]
Portions created by Peter Thörnqvist are Copyright (C) 2002 Peter Thörnqvist.
All Rights Reserved.
Contributor(s):
You may retrieve the latest version of this file at the Project JEDI's JVCL home page,
located at http://jvcl.sourceforge.net
Known Issues:
-----------------------------------------------------------------------------}
// $Id: JvQtKeyEditorForm.pas 10610 2006-05-19 13:35:08Z elahn $
unit JvQtKeyEditorForm;
{$I jvcl.inc}
interface
uses
SysUtils, Classes,
QGraphics, QControls, QForms, QDialogs, QStdCtrls, QButtons,
JvQtKeySelectionFrame, JvComponent;
type
TfrmJvQtKeyEditor = class(TJvForm)
bbtOk: TBitBtn;
bbtCancel: TBitBtn;
private
FEditingFrame: TJvQtKeySelectionFrame;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
property EditingFrame: TJvQtKeySelectionFrame read FEditingFrame;
end;
implementation
{$R *.xfm}
constructor TfrmJvQtKeyEditor.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FEditingFrame := TJvQtKeySelectionFrame.Create(Self);
with FEditingFrame do
begin
Left := 4;
Top := 8;
Parent := Self;
Visible := True;
end;
end;
destructor TfrmJvQtKeyEditor.Destroy;
begin
FEditingFrame.Free;
inherited Destroy;
end;
end.