亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? teengine.pas

?? complete source code for teechart 7
?? PAS
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
    Procedure InternalDraw(Const UserRectangle: TRect); override;
    Function IsAxisVisible(Axis:TChartAxis):Boolean;
    Function MultiLineTextWidth(S:String; Var NumLines:Integer):Integer;
    procedure RemovedDataSource( ASeries: TChartSeries;
                                 AComponent: TComponent ); dynamic;
    Procedure SetPage(Value:Integer);

    {$IFNDEF CLR}
    Procedure GetChildren(Proc:TGetChildProc; Root:TComponent); override;
    {$ENDIF}

    {$IFNDEF CLX}
    procedure CMMouseLeave(var Message: TMessage); message CM_MOUSELEAVE;
    {$ELSE}
    procedure MouseLeave(AControl: TControl); override;
    {$ENDIF}
  public
    { Public declarations }
    Designer : TTeeCustomDesigner; { used only at Design-Time }
    ColorPalette : TColorArray;

    Constructor Create(AOwner: TComponent); override;
    Destructor Destroy; override;

    { public methods }
    procedure Assign(Source:TPersistent); override;
    Function ActiveSeriesLegend(ItemIndex:Integer):TChartSeries;
    Function AddSeries(ASeries:TChartSeries):TChartSeries; overload;  { 5.01 }
    Function AddSeries(ASeriesClass:TChartSeriesClass):TChartSeries; overload;
    Procedure CalcSize3DWalls;
    Procedure CheckDatasource(ASeries:TChartSeries); virtual;
    Function CountActiveSeries:Integer;
    Procedure ExchangeSeries(a,b:Integer); overload;
    Procedure ExchangeSeries(a,b:TCustomChartSeries); overload;
    Function FormattedValueLegend(ASeries:TChartSeries; ValueIndex:Integer):String; virtual;
    Procedure FreeAllSeries( SeriesClass:TChartSeriesClass=nil );
    Function GetAxisSeries(Axis:TChartAxis):TChartSeries;

    {$IFDEF CLR}
    Procedure GetChildren(Proc:TGetChildProc; Root:TComponent); override;
    {$ENDIF}

    Function GetDefaultColor(Index:Integer):TColor;
    Function GetFreeSeriesColor(CheckBackground:Boolean=True; Series:TChartSeries=nil):TColor;
    Function GetMaxValuesCount:Integer;
    Function IsFreeSeriesColor(AColor: TColor; CheckBackground: Boolean;
                               Series:TChartSeries=nil):Boolean; virtual; abstract;
    Function IsValidDataSource(ASeries: TChartSeries; AComponent: TComponent):Boolean; dynamic;
    Function MaxXValue(AAxis: TChartAxis):Double;
    Function MaxYValue(AAxis: TChartAxis):Double;
    Function MinXValue(AAxis: TChartAxis):Double;
    Function MinYValue(AAxis: TChartAxis):Double;
    Function MaxMarkWidth:Integer;
    Function MaxTextWidth:Integer;
    Function NumPages:Integer; dynamic;
    procedure PrintPages(FromPage: Integer=1; ToPage: Integer=0);
    Procedure RemoveSeries(ASeries: TCustomChartSeries);

    property Series[Index: Integer]:TChartSeries read GetSeries; default;
    Function SeriesCount:Integer;

    Function SeriesLegend(ItemIndex: Integer; OnlyActive: Boolean):TChartSeries;
    Function SeriesTitleLegend(SeriesIndex: Integer; OnlyActive: Boolean=False):String;

    { public properties }
    property Axes:TChartAxes read FAxes;
    property AxesList:TChartAxes read FAxes; // compatibility v4
    property CustomAxes:TChartCustomAxes read FCustomAxes write SetCustomAxes stored IsCustomAxesStored;
    property MaxZOrder:Integer read FMaxZOrder write FMaxZOrder;
    property SeriesWidth3D:Integer read FSeriesWidth3D;
    property SeriesHeight3D:Integer read FSeriesHeight3D;

    { to be published properties }
    property AxisBehind:Boolean read FAxisBehind write SetAxisBehind default True;
    property AxisVisible:Boolean read FAxisVisible write SetAxisVisible default True;
    property BottomAxis:TChartAxis read FBottomAxis write SetBottomAxis;
    property Chart3DPercent:Integer read F3DPercent write Set3DPercent
                                    default TeeDef3DPercent;  // obsolete;
    property ClipPoints:Boolean read FClipPoints write SetClipPoints default True;
    property Color;
    property DepthAxis:TChartDepthAxis read FDepthAxis write SetDepthAxis;
    property DepthTopAxis:TChartDepthAxis read FDepthTopAxis write SetDepthTopAxis; // 7.0
    property LeftAxis:TChartAxis read FLeftAxis write SetLeftAxis;
    property MaxPointsPerPage:Integer read FMaxPointsPerPage write SetMaxPointsPerPage default 0;
    property Page:Integer read FPage write SetPage default 1;
    property RightAxis:TChartAxis read FRightAxis write SetRightAxis;
    property ScaleLastPage:Boolean read FScaleLastPage write SetScaleLastPage default True;
    property SeriesList:TChartSeriesList read FSeriesList;
    property Tools:TChartTools read FTools;
    property TopAxis:TChartAxis read FTopAxis write SetTopAxis;
    property View3DWalls:Boolean read FView3DWalls write SetView3DWalls default True;

    { to be published events }
    property OnBeforeDrawChart: TNotifyEvent read FOnBeforeDrawChart write FOnBeforeDrawChart;
    property OnBeforeDrawAxes:TNotifyEvent read FOnBeforeDrawAxes write FOnBeforeDrawAxes;
    property OnBeforeDrawSeries:TNotifyEvent read FOnBeforeDrawSeries write FOnBeforeDrawSeries;
    property OnGetAxisLabel:TAxisOnGetLabel read FOnGetAxisLabel write FOnGetAxisLabel;
    property OnGetNextAxisLabel:TAxisOnGetNextLabel read FOnGetNextAxisLabel
                                                    write FOnGetNextAxisLabel;
    property OnPageChange:TNotifyEvent read FOnPageChange write FOnPageChange;
  end;

  TSeriesMarkPosition=class
  public
    ArrowFrom : TPoint;
    ArrowFix  : Boolean;
    ArrowTo   : TPoint;
    Custom    : Boolean;
    Height    : Integer;
    LeftTop   : TPoint;
    Width     : Integer;
    Procedure Assign(Source:TSeriesMarkPosition);
    Function Bounds:TRect;
  end;

  TSeriesMarksPositions=class {$IFDEF CLR}sealed{$ENDIF} (TList)
  private
    Function Get(Index:Integer):TSeriesMarkPosition;
    Procedure Put(Index:Integer; APosition:TSeriesMarkPosition);
  public
    Procedure Automatic(Index:Integer);
    procedure Clear; override;
    Function ExistCustom:Boolean;
    property Position[Index:Integer]:TSeriesMarkPosition read Get
                                    write Put; default;
  end;

  TMarksItem=class {$IFDEF CLR}sealed{$ENDIF} (TTeeCustomShape)
  published
    property Bevel;
    property BevelWidth;
    property Color default ChartMarkColor;
    property Font;
    property Gradient;
    property Shadow;
    property ShapeStyle;
    property Transparency;
    property Transparent;
  end;

  TMarksItems=class {$IFDEF CLR}sealed{$ENDIF} (TList)
  private
    IMarks : TTeeCustomShape;
    ILoadingCustom : Boolean;
    function Get(Index:Integer):TMarksItem;
  public
    Procedure Clear; override;
    property Format[Index:Integer]:TMarksItem read Get; default;
  end;

  TSeriesMarksStyle=( smsValue,             { 1234 }
                      smsPercent,           { 12 % }
                      smsLabel,             { Cars }
                      smsLabelPercent,      { Cars 12 % }
                      smsLabelValue,        { Cars 1234 }
                      smsLegend,            { (Legend.Style) }
                      smsPercentTotal,      { 12 % of 1234 }
                      smsLabelPercentTotal, { Cars 12 % of 1234 }
                      smsXValue,            { 1..2..3.. or 21/6/1996 }
                      smsXY                 { 123 456 }
                      );

  TSeriesMarksGradient=class {$IFDEF CLR}sealed{$ENDIF} (TChartGradient)
  public
    Constructor Create(ChangedEvent:TNotifyEvent); override;
  published
    property Direction default gdRightLeft;
    property EndColor default clWhite;
    property StartColor default clSilver;
  end;

  TSeriesPointerStyle=( psRectangle,psCircle,psTriangle,psDownTriangle,
                        psCross,psDiagCross,psStar,psDiamond,psSmallDot,
                        psNothing,psLeftTriangle,psRightTriangle );

  TSeriesPointer=class(TTeeCustomShapeBrushPen)
  private
    FDark3D    : Boolean;
    FDraw3D    : Boolean;
    FGradient  : TTeeGradient;
    FHorizSize : Integer;
    FInflate   : Boolean;
    FSeries    : TChartSeries;
    FStyle     : TSeriesPointerStyle;
    FTransparency : TTeeTransparency; // 6.02
    FVertSize  : Integer;

    Procedure CheckPointerSize(Value:Integer);
    function GetColor: TColor;
    function GetStartZ:Integer;   // 6.01
    function GetMiddleZ:Integer;  // 6.01
    function GetEndZ:Integer;     // 6.01
    procedure SetColor(const Value: TColor);
    Procedure SetDark3D(Value:Boolean);
    Procedure SetDraw3D(Value:Boolean);
    procedure SetGradient(const Value: TTeeGradient);
    Procedure SetHorizSize(Value:Integer);
    Procedure SetInflate(Value:Boolean);
    Procedure SetStyle(Value:TSeriesPointerStyle);
    procedure SetTransparency(const Value: TTeeTransparency);
    Procedure SetVertSize(Value:Integer);
  protected
    AllowChangeSize : Boolean;
    FullGradient    : Boolean;
    Procedure CalcHorizMargins(Var LeftMargin,RightMargin:Integer);
    Procedure CalcVerticalMargins(Var TopMargin,BottomMargin:Integer);
    Procedure Change3D(Value:Boolean);
    Procedure ChangeHorizSize(NewSize:Integer);
    Procedure ChangeStyle(NewStyle:TSeriesPointerStyle);
    Procedure ChangeVertSize(NewSize:Integer);
    Procedure Prepare;
  public
    Constructor Create(AOwner:TChartSeries);
    Destructor Destroy; override;

    Procedure Assign(Source:TPersistent); override;

    Procedure Draw(P:TPoint); overload;
    Procedure Draw(X,Y:Integer); overload;
    Procedure Draw(px,py:Integer; ColorValue:TColor; AStyle:TSeriesPointerStyle); overload;
    Procedure DrawPointer( ACanvas:TCanvas3D;
                           Is3D:Boolean; px,py,tmpHoriz,tmpVert:Integer;
                           ColorValue:TColor; AStyle:TSeriesPointerStyle);
    Procedure PrepareCanvas(ACanvas:TCanvas3D; ColorValue:TColor);

    property Color:TColor read GetColor write SetColor;
    property ParentSeries:TChartSeries read FSeries;
  published
    property Brush;
    property Dark3D:Boolean read FDark3D write SetDark3D default True;
    Property Draw3D:Boolean read FDraw3D write SetDraw3D default True;
    property Gradient:TTeeGradient read FGradient write SetGradient; // 6.0
    Property HorizSize:Integer read FHorizSize write SetHorizSize default 4;
    property InflateMargins:Boolean read FInflate write SetInflate;
    property Pen;
    property Style:TSeriesPointerStyle read FStyle write SetStyle;
    property Transparency:TTeeTransparency read FTransparency write SetTransparency default 0;
    Property VertSize:Integer read FVertSize write SetVertSize default 4;
    Property Visible;
  end;

  TArrowHeadStyle=(ahNone,ahLine,ahSolid);

  TChartArrowPen=TWhitePen;

  TCallout=class(TSeriesPointer)
  private
    FArrow     : TChartArrowPen;
    FArrowHead : TArrowHeadStyle;
    FDistance  : Integer;
    FArrowHeadSize: Integer;

    procedure SetDistance(const Value: Integer);
    procedure SetArrow(const Value: TChartArrowPen);
    procedure SetArrowHead(const Value: TArrowHeadStyle);
    procedure SetArrowHeadSize(const Value: Integer);
  protected
    procedure Draw(AColor:TColor; AFrom,ATo:TPoint; Z:Integer); overload;
  public
    Constructor Create(AOwner:TChartSeries);
    Procedure Assign(Source:TPersistent); override;
    destructor Destroy; override;
  published
    property Arrow:TChartArrowPen read FArrow write SetArrow;
    property ArrowHead:TArrowHeadStyle read FArrowHead write SetArrowHead default ahNone;
    property ArrowHeadSize:Integer read FArrowHeadSize write SetArrowHeadSize default 8;
    property Distance:Integer read FDistance write SetDistance default 0;
    property Draw3D default False;
    property InflateMargins default True;
    property Style default psRectangle;
    property Visible default True;
  end;

  TMarksCallout=class(TCallout)
  private
    FLength : Integer;

    procedure ApplyArrowLength(APosition:TSeriesMarkPosition);
    Function IsLengthStored:Boolean;
    procedure SetLength(const Value:Integer);
  protected
    DefaultLength : Integer;
  public
    Constructor Create(AOwner: TChartSeries);
    Procedure Assign(Source:TPersistent); override;
  published
    property Length:Integer read FLength write SetLength stored IsLengthStored;
    property Visible default False;
  end;

  TSeriesMarksSymbol=class {$IFDEF CLR}sealed{$ENDIF} (TTeeCustomShape)
  private
    Function ShouldDraw:Boolean;
  public
    Constructor Create(AOwner:TCustomTeePanel); override;
  published
    property Bevel;  { 5.01 }
    property BevelWidth;  { 5.01 }
    property Brush;
    property Frame;
    property Gradient;
    property Pen;
    property Shadow;
    property ShapeStyle;
    property Transparency; { 5.01 }
    property Visible default False;
  end;

  // CLR Note: This class cannot be marked as "sealed"
  // due to required cast access tricks.
  TSeriesMarks=class(TTeeCustomShape)
  private
    FAngle       : Integer;
    FCallout     : TMarksCallout;
    FClip        : Boolean;
    FDrawEvery   : Integer;
    FItems       : TMarksItems;
    FMarkerStyle : TSeriesMarksStyle;
    FMultiLine   : Boolean;
    FSeries      : TChartSeries;
    FPositions   : TSeriesMarksPositions;
    FSymbol      : TSeriesMarksSymbol;
    FZPosition   : Integer;

    function GetArrowLength: Integer;
    function GetArrowPen: TChartArrowPen;
    Function GetBackColor:TColor;
    Function GetCallout:TMarksCallout;
    function GetItem(Index:Integer):TMarksItem;
    Function GetSymbol: TSeriesMarksSymbol;
    Procedure InternalDraw(Index:Integer; AColor:TColor; Const St:String; APosition:TSeriesMarkPosition);
    procedure ReadItems(Stream: TStream);
    Procedure SetAngle(Value:Integer);

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久成人av少妇免费| 天天亚洲美女在线视频| 欧美艳星brazzers| 精品一区二区av| 日韩毛片在线免费观看| 欧美成人伊人久久综合网| 99久久99久久精品免费看蜜桃| 天涯成人国产亚洲精品一区av| 欧美激情一区三区| 欧美一区二区大片| 在线一区二区三区四区五区| 国产v综合v亚洲欧| 美腿丝袜亚洲色图| 一区二区高清在线| 国产精品免费观看视频| 精品sm在线观看| 欧美日韩精品欧美日韩精品一 | 亚洲国产精品久久艾草纯爱| 国产午夜亚洲精品羞羞网站| 欧美精品777| 日本黄色一区二区| 国产精品中文字幕日韩精品| 日本视频免费一区| 亚洲综合在线观看视频| 国产精品福利影院| 国产人久久人人人人爽| 亚洲精品在线观看视频| 91精品国产91久久久久久最新毛片 | 国产日韩欧美高清在线| 日韩欧美www| 8x8x8国产精品| 欧美日韩国产系列| 欧洲av在线精品| 日本韩国欧美国产| 在线观看日韩精品| 色婷婷狠狠综合| 色乱码一区二区三区88| 91丨九色丨蝌蚪富婆spa| 国产69精品久久777的优势| 狠狠色丁香婷综合久久| 精品午夜一区二区三区在线观看 | 精品亚洲成a人| 久草热8精品视频在线观看| 日本大胆欧美人术艺术动态| 日本伊人色综合网| 免费成人结看片| 狠狠狠色丁香婷婷综合久久五月| 美腿丝袜亚洲三区| 国产一区二区调教| 国产精一品亚洲二区在线视频| 韩国一区二区三区| 国产iv一区二区三区| 成人免费福利片| 99re视频精品| 色婷婷av一区二区三区gif| 一本一道波多野结衣一区二区| 日本道精品一区二区三区| 欧美日韩日日摸| 日韩一区二区三| 久久久久99精品一区| 中文字幕日韩av资源站| 亚洲激情一二三区| 日本一不卡视频| 国产美女av一区二区三区| 成人高清视频在线| 色婷婷综合久久久久中文 | 欧美一区二区在线免费观看| 日韩欧美一区二区视频| 国产日韩欧美一区二区三区乱码| 亚洲欧美激情在线| 午夜精品爽啪视频| 国产一区二区在线视频| 成人av免费在线| 在线观看免费一区| 日韩精品资源二区在线| 日本一区二区成人| 亚洲一区二区三区小说| 久久精品国内一区二区三区| 风间由美中文字幕在线看视频国产欧美| 91在线免费看| 91精品国产色综合久久不卡蜜臀| 久久九九99视频| 亚洲宅男天堂在线观看无病毒| 美脚の诱脚舐め脚责91| av电影一区二区| 777xxx欧美| ...av二区三区久久精品| 奇米影视在线99精品| 99久久精品99国产精品| 日韩亚洲国产中文字幕欧美| 中文字幕亚洲区| 另类成人小视频在线| 色999日韩国产欧美一区二区| 日韩一区二区影院| 综合久久久久综合| 久久99国产精品尤物| 欧洲精品中文字幕| 国产精品午夜久久| 奇米精品一区二区三区在线观看| 91在线视频观看| 久久精品一区二区三区不卡| 亚洲超碰97人人做人人爱| 成人av网址在线| 欧美xxxxxxxx| 亚洲国产中文字幕在线视频综合| 粉嫩绯色av一区二区在线观看 | 韩国女主播一区二区三区| 欧美亚洲自拍偷拍| 国产精品国产三级国产普通话三级 | 欧美亚洲国产一区在线观看网站| 久久久精品免费网站| 日韩av电影免费观看高清完整版| 一本大道久久a久久精二百| 国产亚洲综合在线| 免费在线一区观看| 欧美日韩五月天| 亚洲少妇中出一区| av午夜精品一区二区三区| 久久久久久麻豆| 久久成人免费日本黄色| 在线成人av影院| 亚洲午夜影视影院在线观看| 色综合久久综合网97色综合| 国产精品嫩草影院com| 国产酒店精品激情| 精品精品欲导航| 污片在线观看一区二区| 欧美日韩一区二区在线视频| 一区二区三区91| 色狠狠一区二区| 亚洲精品成人天堂一二三| 91在线看国产| 亚洲欧美在线另类| 成人免费高清在线| 亚洲欧洲日韩在线| 成人av网站免费| 亚洲人精品午夜| 色先锋久久av资源部| 自拍偷拍国产精品| 色婷婷亚洲一区二区三区| 亚洲精品欧美二区三区中文字幕| 91丨九色丨尤物| 亚洲影视在线播放| 在线不卡的av| 久久精品72免费观看| 精品国产成人系列| 国产99一区视频免费| 国产欧美一区二区精品性色超碰| 国产成人在线影院 | 中文字幕综合网| 欧美午夜一区二区三区免费大片| 亚洲一区二区在线观看视频| 欧美色图在线观看| 奇米影视一区二区三区小说| 2019国产精品| a在线欧美一区| 亚洲国产精品久久人人爱蜜臀 | 精品国产露脸精彩对白| 国产精品一二三四区| 国产精品久久久久久久岛一牛影视| av电影一区二区| 丝瓜av网站精品一区二区| 日韩一区二区免费在线观看| 国产成人在线免费观看| 亚洲视频1区2区| 在线电影欧美成精品| 国产精品1024久久| 亚洲人亚洲人成电影网站色| 欧美欧美欧美欧美首页| 韩国理伦片一区二区三区在线播放| 日本一区二区视频在线| 欧美丝袜第三区| 韩国av一区二区三区在线观看| 国产精品久久久久久妇女6080| 欧美三级在线看| 国产高清久久久| 亚洲一区二区四区蜜桃| 26uuu精品一区二区| www.亚洲激情.com| 青青草成人在线观看| 中文字幕 久热精品 视频在线| 欧美在线短视频| 韩国一区二区三区| 亚洲在线视频免费观看| 久久婷婷综合激情| 欧美午夜精品一区二区三区| 国内精品伊人久久久久影院对白| 亚洲日本在线a| 精品蜜桃在线看| 91黄色激情网站| 国产精品一区2区| 日韩主播视频在线| 中文字幕制服丝袜一区二区三区 | 日韩高清国产一区在线| 国产精品乱人伦| 日韩精品一区二区在线观看| 色婷婷综合久色| 成人午夜av电影| 国内欧美视频一区二区| 天天操天天干天天综合网|