{----------------------------------------------------------------------------- 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: JvDataEmbeddedEditor.PAS, released on 2001-02-28. The Initial Developer of the Original Code is Sébastien Buysse [sbuysse att buypin dott com] Portions created by Sébastien Buysse are Copyright (C) 2001 Sébastien Buysse. All Rights Reserved. Contributor(s): Michael Beck [mbeck att bigfoot dott com]. 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: JvDataEmbeddedEditor.pas 10610 2006-05-19 13:35:08Z elahn $ unit JvDataEmbeddedEditor; {$I jvcl.inc} interface uses SysUtils, Classes, Dialogs, {$IFDEF COMPILER6_UP} DesignEditors, DesignIntf, DesignMenus, {$ELSE} DsgnIntf, {$ENDIF COMPILER6_UP} {$IFDEF VisualCLX} QWindows, {$ENDIF VisualCLX} JvDataEmbedded; type TJvDataEmbeddedEditor = class(TComponentEditor) private procedure LoadDataFromFile(Comp: TJvDataEmbedded); procedure ViewAsText; public function GetVerbCount: Integer; override; function GetVerb(Index: Integer): string; override; procedure ExecuteVerb(Index: Integer); override; {$IFDEF COMPILER6_UP} procedure PrepareItem(Index: Integer; const AItem: IMenuItem); override; {$ENDIF COMPILER6_UP} end; implementation uses JvDsgnConsts, {$IFDEF VCL} Windows, ShellAPI, {$ENDIF VCL} JclFileUtils; procedure TJvDataEmbeddedEditor.LoadDataFromFile(Comp: TJvDataEmbedded); var Stream: TFileStream; MemStream: TMemoryStream; begin MemStream := TMemoryStream(Comp.Data); with TOpenDialog.Create(nil) do try Filter := RsAllFilesFilter; if Execute then begin Stream := TFileStream.Create(FileName, fmOpenRead or fmShareDenyWrite); try MemStream.Clear; MemStream.CopyFrom(Stream, 0); // (rom) made this procedure a method and modify designer to make it work Designer.Modified; finally Stream.Free; end; end; finally Free; end; end; procedure TJvDataEmbeddedEditor.ExecuteVerb(Index: Integer); begin case Index of 0: LoadDataFromFile(Component as TJvDataEmbedded); 1: (Component as TJvDataEmbedded).Size := 0; 2: ViewAsText; end; end; function TJvDataEmbeddedEditor.GetVerb(Index: Integer): string; begin case Index of 0: Result := RsLoadFromFileEllipsis; 1: Result := RsClearEmbeddedData; 2: Result := RsViewEmbeddedDataAsText; end; end; function TJvDataEmbeddedEditor.GetVerbCount: Integer; begin Result := 3; end; {$IFDEF COMPILER6_UP} procedure TJvDataEmbeddedEditor.PrepareItem(Index: Integer; const AItem: IMenuItem); begin inherited PrepareItem(Index, AItem); case Index of 1, 2: AItem.Enabled := (Component as TJvDataEmbedded).Data.Size > 0; end; end; {$ENDIF COMPILER6_UP} procedure TJvDataEmbeddedEditor.ViewAsText; var F: TFileStream; S: string; begin S := FileGetTempName('JVCL'); F := TFileStream.Create(S, fmCreate); try (Component as TJvDataEmbedded).DataSaveToStream(F); finally F.Free; end; {$IFDEF MSWINDOWS} ShellExecute(GetActiveWindow, 'open','notepad.exe', PChar(S), PChar(ExtractFilePath(S)), SW_SHOWNORMAL); // (p3) not 100% kosher, but seems to work most of the time // if anyone knows a better way to delete the temp file, please fix Sleep(300); DeleteFile(PChar(S)); {$ENDIF MSWINDOWS} {$IFDEF LINUX} ShellExecute(GetActiveWindow, 'open', PChar(S), nil, PChar(ExtractFilePath(S)), SW_SHOWNORMAL); // (p3) not 100% kosher, but seems to work most of the time // if anyone knows a better way to delete the temp file, please fix Sleep(300); DeleteFile(PChar(S)); {$ENDIF LINUX} end; end.