unit PatternAddInObj; 

{******************************************************************************}
{                                                                              }
{                StarUML - The Open Source UML/MDA Platform.                   }
{                                                                              }
{              Copyright (C) 2002-2005 - Plastic Software, Inc.                }
{                                                                              }
{                                                                              }
{ 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., 51        }
{ Franklin St, Fifth Floor, Boston, MA 02110-1301 USA                          }
{                                                                              }
{ Linking StarUML statically or dynamically with other modules is making a     }
{ combined work based on StarUML. Thus, the terms and conditions of the GNU    }
{ General Public License cover the whole combination.                          }
{                                                                              }
{ In addition, as a special exception, Plastic Software give you permission to }
{ combine StarUML program with free software programs or libraries that are    }
{ released under the GNU LGPL/Mozilla/Apache/BSD and with code included in the }
{ standard release of ExpressBar, ExpressNavBar, ExpressInspector,             }
{ ExpressPageControl, ProGrammar, NextGrid under the commercial license (or    }
{ modified versions of such code, with unchanged license). You may copy and    }
{ distribute such a system following the terms of the GNU GPL for StarUML and  }
{ the licenses of the other code concerned, provided that you include the      }
{ source code of that other code when and as the GNU GPL requires distribution }
{ of source code. Plastic Software also give you permission to combine StarUML }
{ program with dynamically linking plug-in (or add-in) programs that are       }
{ released under the GPL-incompatible and proprietary license.                 }
{                                                                              }
{ Note that people who make modified versions of StarUML are not obligated to  }
{ grant this special exception for their modified versions; it is their choice }
{ whether to do so. The GNU General Public License gives permission to release }
{ a modified version without this exception; this exception also makes it      }
{ possible to release a modified version which carries forward this exception. }
{******************************************************************************}

{$WARN SYMBOL_PLATFORM OFF}

interface

uses
  Windows, ActiveX, Classes, ComObj,
  StarUML_TLB;

type
  // PPatternAddIn
  PPatternAddIn = class(TComObject, IStarUMLAddIn)
  private
    StarUMLApp: IStarUMLApplication;
    function CheckClassTypeDiagramActivated: Boolean;
  protected
    function InitializeAddIn: HResult; stdcall;
    function FinalizeAddIn: HResult; stdcall;
    function DoMenuAction(ActionID: Integer): HResult; stdcall;
  public
    procedure Initialize; override;
    destructor Destroy; override;
  end;

const
  Class_PatternAddInObj: TGUID = '{42A422B0-1FE2-4B89-921C-4C26D754599F}';

implementation

uses
  ComServ, Dialogs, Forms, SysUtils,
  NLS_PatternAddIn, PatternAddInFrm;

////////////////////////////////////////////////////////////////////////////////
// PPatternAddIn

procedure PPatternAddIn.Initialize;
begin
  inherited;
  StarUMLApp := CoStarUMLApplication.Create;
  Application.Handle := StarUMLApp.Handle;
  PatternAddInForm := TPatternAddInForm.Create(Application);
  PatternAddInForm.StarUMLApp := StarUMLApp;
end;

destructor PPatternAddIn.Destroy;
begin
  PatternAddInForm.StarUMLApp := nil;
  StarUMLApp := nil;
  if PatternAddInForm <> nil then PatternAddInForm.Free;
  inherited;
end;

function PPatternAddIn.CheckClassTypeDiagramActivated: Boolean;
var
  Dgm: IDiagram;
begin
  Result := False;
  Dgm := StarUMLApp.SelectionManager.ActiveDiagram;
  if Dgm <> nil then begin
    if Dgm.IsKindOf('UMLClassDiagram') or
       Dgm.IsKindOf('UMLUseCaseDiagram') or
       Dgm.IsKindOf('UMLComponentDiagram') or
       Dgm.IsKindOf('UMLDeploymentDiagram')
    then Result := True;  
  end;
end;

function PPatternAddIn.InitializeAddIn: HResult;
begin
  Result := S_OK;
end;

function PPatternAddIn.FinalizeAddIn: HResult;
begin
  Result := S_OK;
end;

function PPatternAddIn.DoMenuAction(ActionID: Integer): HResult;
begin
  Result := S_OK;
  if ActionID = 1 then begin
    try
      // Start message
      if CheckClassTypeDiagramActivated then begin
        PatternAddInForm.ShowModal
        // End message
      end else begin
        Application.MessageBox(PChar(ERR_NO_ACTIVE_DGM), PChar(Application.Title),
          MB_OK + MB_ICONERROR);
      end;
    except on E: Exception do
      // Exception message
    end;
  end;
end;

// PPatternAddIn
////////////////////////////////////////////////////////////////////////////////

initialization
  TComObjectFactory.Create(ComServer, PPatternAddIn, Class_PatternAddInObj,
    'PatternAddInObj', '', ciMultiInstance, tmApartment);
end.
