Componentes.Terceros.jvcl/official/3.39/design/JvUrlListGrabberEditors.pas
2010-01-18 16:55:50 +00:00

153 lines
4.7 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: JvUrlListGrabberEditors.Pas, released on 2003-11-02.
The Initial Developer of the Original Code is Olivier Sannier [obones att altern dott org]
Portions created by Olivier Sannier are Copyright (C) 2003 Olivier Sannier.
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.delphi-jedi.org
Known Issues:
-----------------------------------------------------------------------------}
// $Id: JvUrlListGrabberEditors.pas 12461 2009-08-14 17:21:33Z obones $
unit JvUrlListGrabberEditors;
{$I jvcl.inc}
interface
uses
Windows,
DesignIntf, DesignEditors, DesignMenus, VCLEditors,
Classes;
type
TJvUrlGrabberDefaultPropertiesListProperty = class(TClassProperty)
public
function GetAttributes: TPropertyAttributes; override;
procedure GetProperties(Proc: TGetPropProc); override;
end;
TJvUrlGrabberDefaultPropertiesProperty = class(TClassProperty)
public
function GetName: string; override;
end;
TJvUrlGrabberIndexProperty = class(TIntegerProperty)
public
function GetAttributes: TPropertyAttributes; override;
procedure GetValues(Proc: TGetStrProc); override;
function GetValue: string; override;
procedure SetValue(const Value: string); override;
end;
implementation
uses
TypInfo, SysUtils,
JvUrlListGrabber, JvDsgnConsts;
//=== { TJvUrlGrabberDefaultPropertiesListProperty } =========================
function TJvUrlGrabberDefaultPropertiesListProperty.GetAttributes: TPropertyAttributes;
begin
Result := [paSubProperties, paReadOnly];
end;
procedure TJvUrlGrabberDefaultPropertiesListProperty.GetProperties(Proc: TGetPropProc);
var
UrlListGrabber: TJvUrlListGrabber;
I: Integer;
Components: IDesignerSelections;
begin
inherited GetProperties(Proc);
UrlListGrabber := TJvUrlListGrabber(GetComponent(0));
for I := 0 to UrlListGrabber.DefaultGrabbersProperties.Count - 1 do
begin
Components := CreateSelectionList;
Components.Add(UrlListGrabber.DefaultGrabbersProperties.Items[I].EditorTrick);
GetComponentProperties(Components, tkAny, Designer, Proc);
end;
end;
//=== { TJvUrlGrabberDefaultPropertiesProperty } =============================
function TJvUrlGrabberDefaultPropertiesProperty.GetName: string;
var
EditorTrick: TJvUrlGrabberDefPropEdTrick;
begin
// get Supported URL name from the real default properties
EditorTrick := TJvUrlGrabberDefPropEdTrick(GetComponent(0));
Result := EditorTrick.DefaultProperties.SupportedURLName;
end;
//=== { TJvUrlGrabberIndexProperty } =========================================
function TJvUrlGrabberIndexProperty.GetAttributes: TPropertyAttributes;
begin
Result := [paValueList, paMultiSelect, paRevertable];
end;
function TJvUrlGrabberIndexProperty.GetValue: string;
var
Index: Integer;
begin
Index := GetOrdValue;
if (Index < 0) or (Index >= JvUrlGrabberClassList.Count) then
Result := '-1 - ' + RsNone
else
Result := IntToStr(Index) + ' - ' + JvUrlGrabberClassList[Index].GetSupportedURLName;
end;
procedure TJvUrlGrabberIndexProperty.GetValues(Proc: TGetStrProc);
var
I: Integer;
begin
Proc('-1 - ' + RsNone);
for I := 0 to JvUrlGrabberClassList.Count - 1 do
Proc(IntToStr(I) + ' - ' + JvUrlGrabberClassList[I].GetSupportedURLName);
end;
procedure TJvUrlGrabberIndexProperty.SetValue(const Value: string);
var
I: Integer;
OrdValue : Integer;
CleanValue: string;
begin
// The value may be a simple text or may contain a number in front
// of it. So we clean it to only contain the text
CleanValue := Value;
if Pos('-', Value) > 0 then
CleanValue := Trim(Copy(Value, Pos('-', Value)+1, Length(Value)));
if CleanValue = RsNone then
SetOrdValue(-1)
else
begin
I := 0;
OrdValue := -1;
while (I < JvUrlGrabberClassList.Count) and (OrdValue = -1) do
begin
if JvUrlGrabberClassList[I].GetSupportedURLName = CleanValue then
OrdValue := I;
Inc(I);
end;
SetOrdValue(OrdValue);
end;
end;
end.