Componentes.Terceros.jvcl/official/3.32/examples/JvPlugin/5DataAware/PlugInDemoU.pas

84 lines
2.2 KiB
ObjectPascal

{******************************************************************
JEDI-VCL Demo
Copyright (C) 2002 Project JEDI
Original author:
Contributor(s):
You may retrieve the latest version of this file at the JEDI-JVCL
home page, located at http://jvcl.sourceforge.net
The contents of this file are used with permission, 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_1Final.html
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.
******************************************************************}
unit PlugInDemoU;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
JvPluginManager, StdCtrls, Buttons, Menus, ExtCtrls, ImgList, Grids, DBGrids,
JvComponent;
type
TForm1 = class(TForm)
uilPluginManager: TJvPluginManager;
MainMenu1: TMainMenu;
Plugin1: TMenuItem;
File1: TMenuItem;
Exit1: TMenuItem;
Help1: TMenuItem;
About1: TMenuItem;
DBGrid1: TDBGrid;
procedure Exit1Click(Sender: TObject);
procedure About1Click(Sender: TObject);
procedure SendMessagetoPlugins1Click(Sender: TObject);
procedure FormShow(Sender: TObject);
private
{ Private declarations }
public
NumButtons : integer;
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.Exit1Click(Sender: TObject);
begin
Close;
end;
procedure TForm1.About1Click(Sender: TObject);
begin
ShowMessage('A simple host application for demoing JEDI plug-ins.'#13#10#13#10'(c) 1999, Unlimited Intelligence Limited.');
end;
procedure TForm1.SendMessagetoPlugins1Click(Sender: TObject);
begin
uilPluginManager.SendMessage(1000, InputBox('Enter message to send to plugin', 'Message', 'Your message here'));
end;
procedure TForm1.FormShow(Sender: TObject);
begin
uilPluginManager.LoadPlugins;
end;
end.