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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? preport.pas

?? 作者:Takeshi Kanno. PowerPdf是一款制作PDF文檔的VCL控件。使用上和QuickReport類似。
?? PAS
?? 第 1 頁 / 共 3 頁
字號:
{*
 * << P o w e r P d f >> -- PReport.pas
 *
 * Copyright (c) 1999-2001 Takezou. <takeshi_kanno@est.hi-ho.ne.jp>
 *
 * This library is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Library General Public License as published
 * by the Free Software Foundation; either version 2 of the License, or any
 * later version.
 *
 * This library 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 Library general Public License for more
 * details.
 *
 * You should have received a copy of the GNU Library General Public License
 * along with this library.
 *
 * Create 2001.01.28
 *
 *}
unit PReport;

interface

//{$DEFINE USE_JPFONTS}

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  ExtCtrls, PdfDoc, PdfFonts, PdfTypes, PdfImages
  {$IFNDEF USE_JPFONTS}
  ;
  {$ELSE}
  , PdfJPFonts;
  {$ENDIF}

const
  POWER_PDF_VERSION_STR = 'PowerPdf 0.8(beta)';
  POWER_PDF_COPYRIGHT = 'copyright (c) 1999-2001 takeshi kanno';

type
  TPRFontName = (fnFixedWidth
               , fnArial
               , fnTimesRoman
               {$IFDEF USE_JPFONTS}
               , fnGothic
               , fnMincyo
               , fnPGothic
               , fnPMincyo
               {$ENDIF}
               );
  TPRPage = class;
  TPRCanvas = class;
  TPRPanel = class;
  TPRItem = class;

  TPRPrintPageEvent = procedure(Sender: TObject;
                              ACanvas: TPRCanvas) of object;
  TPRPrintPanelEvent = procedure(Sender: TObject; ACanvas: TPRCanvas;
                              Rect: TRect) of object;
  TPRPrintItemEvent = TPRPrintPanelEvent;
  TPRPrintChildPanelEvent = procedure(Sender: TObject; ACanvas: TPRCanvas;
                              ACol, ARow: integer; Rect: TRect) of object;
  TPrintDirection = (pdHolz, pdVert);

  { TPReport }
  TPReport = class(TComponent)
  private
    FFileName: string;
    FPage: integer;
    FAuthor: string;
    FCreationDate: TDateTime;
    FCreator: string;
    FKeywords: string;
    FModDate: TDateTime;
    FSubject: string;
    FTitle: string;
    FCanvas: TPRCanvas;
    FDoc: TPdfDoc;
    FPageMode: TPdfPageMode;
    FCompressionMethod: TPdfCompressionMethod;
  protected
    { Protected }
  public
    constructor Create(AOwner: TComponent); override;
    destructor Destroy; override;
    procedure BeginDoc;
    procedure Print(APage: TPRPage);
    procedure EndDoc;
    procedure Abort;
    function GetPdfDoc: TPdfDoc;
    property PageNumber: integer read FPage;
  published
    property FileName: string read FFileName write FFileName;
    property Author: string read FAuthor write FAuthor;
    property CreationDate: TDateTime read FCreationDate write FCreationDate;
    property Creator: string read FCreator write FCreator;
    property Keywords: string read FKeyWords write FKeyWords;
    property ModDate: TDateTime read FModDate write FModDate;
    property Subject: string read FSubject write FSubject;
    property Title: string read FTitle write FTitle;
    property PageMode: TPdfPageMode read FPageMode write FPageMode;
    property CompressionMethod: TPdfCompressionMethod
       read FCompressionMethod write FCompressionMethod;
  end;

  { TPRCanvas }
  TPRCanvas = class(TPersistent)
  private
    FCanvas: TPdfCanvas;
    procedure SetPdfCanvas(ACanvas: TPdfCanvas);
  protected
    property PdfCanvas: TPdfCanvas read FCanvas write SetPdfCanvas;
  public
    constructor Create;
    procedure SetCharSpace(charSpace: Single);
    procedure SetWordSpace(wordSpace: Single);
    procedure SetHorizontalScaling(hScaling: Word);
    procedure SetLeading(leading: Single);
    procedure SetFontAndSize(fontname: string; size: Single);
    procedure SetTextRenderingMode(mode: TTextRenderingMode);
    procedure SetTextRise(rise: Word);
  end;

  { TPRPage }
  TPRPage = class(TCustompanel)
  private
    FDoc: TPdfDoc;
    FMarginTop: integer;
    FMarginLeft: integer;
    FMarginRight: integer;
    FMarginBottom: integer;
    FPrintPageEvent: TPRPrintPageEvent;
    procedure SetMarginTop(Value: integer);
    procedure SetMarginLeft(Value: integer);
    procedure SetMarginRight(Value: integer);
    procedure SetMarginBottom(Value: integer);
  protected
    procedure AlignControls(AControl: TControl; var ARect: TRect); override;
    procedure Paint; override;
    procedure Print(ACanvas: TPRCanvas);
  public
    constructor Create(AOwner: TComponent); override;
    destructor Destroy; override;
  published
    property OnPrintPage: TPRPrintPageEvent
                     read FPrintPageEvent write FPrintPageEvent;
    property MarginTop: integer read FMarginTop write SetMarginTop;
    property MarginLeft: integer read FMarginLeft write SetMarginLeft;
    property MarginRight: integer read FMarginRight write SetMarginRight;
    property MarginBottom: integer read FMarginBottom write SetMarginBottom;
    property Visible;
  end;

  { TPRPanel }
  TPRPanel = class(TCustomPanel)
  private
    function GetPage: TPRPage;
    function GetAbsoluteRect: TRect;
  protected
    procedure Paint; override;
    procedure Print(ACanvas: TPRCanvas; ARect: TRect); virtual;
  public
    property Page: TPRPage read GetPage;
    constructor Create(AOwner: TComponent); override;
  end;

  { TPRChildPanel }
  TPRChildPanel = class(TPRPanel)
  private
  protected
  end;

  { TPRLayoutPanel }
  TPRLayoutPanel = class(TPRPanel)
  private
    FAfterPrint: TPRPrintPanelEvent;
    FBeforePrint: TPRPrintPanelEvent;
  protected
    procedure SetParent(AParent: TWinControl); override;
    procedure Print(ACanvas: TPRCanvas; ARect: TRect); override;
  published
    property Align;
    property BeforePrint: TPRPrintPanelEvent
                                read FBeforePrint write FBeforePrint;
    property AfterPrint: TPRPrintPanelEvent
                                read FAfterPrint write FAfterPrint;
  end;

  { TRRGridPanel }
  TPRGridPanel = class(TPRPanel)
  private
    FAfterPrint: TPRPrintPanelEvent;
    FBeforePrint: TPRPrintPanelEvent;
    FBeforePrintChild: TPRPrintChildPanelEvent;
    FAfterPrintChild: TPRPrintChildPanelEvent;
    FColCount: integer;
    FRowCount: integer;
    FChildPanel: TPRChildPanel;
    FPrintDirection: TPrintDirection;
    procedure SetColCount(Value: integer);
    procedure SetRowCount(Value: integer);
  protected
    procedure Print(ACanvas: TPRCanvas; ARect: TRect); override;
    procedure GetChildren(Proc: TGetChildProc; Root: TComponent); override;
    procedure AlignControls(AControl: TControl; var ARect: TRect); override;
    procedure Paint; override;
    procedure SetParent(AParent: TWinControl); override;
    function GetChildParent: TComponent; override;
  public
    constructor Create(AOwner: TComponent); override;
    destructor Destroy; override;
  published
    property ColCount: integer read FColCount write SetColCount;
    property RowCount: integer read FRowCount write SetRowCount;
    property Align;
    property PrintDirection: TPrintDirection
                        read FPrintDirection write FPrintDirection;
    property BeforePrint: TPRPrintPanelEvent
                        read FBeforePrint write FBeforePrint;
    property AfterPrint: TPRPrintPanelEvent
                        read FAfterPrint write FAfterPrint;
    property BeforePrintChild: TPRPrintChildPanelEvent
                        read FBeforePrintChild write FBeforePrintChild;
    property AfterPrintChild: TPRPrintChildPanelEvent
                        read FAfterPrintChild write FAfterPrintChild;
  end;

  { TPRItem }
  TPRItem = class(TGraphicControl)
  private
    FPrintable: boolean;
    function GetPage: TPRPage;
  protected
    procedure SetParent(AParent: TWinControl); override;
    procedure Print(ACanvas: TPRCanvas; ARect: TRect); virtual;
    property Page: TPRPage read GetPage;
  public
    constructor Create(AOwner: TComponent); override;
  published
    property Align;
    property Printable: boolean read FPrintable write FPrintable;
  end;

  { TPRText }
  TPRText = class(TPRItem)
  private
    FFontColor: TColor;
    FFontName: TPRFontName;
    FFontSize: Single;
    FFontBold: boolean;
    FFontItalic: boolean;
    FCharSpace: Single;
    FWordSpace: Single;
    FWordwrap: boolean;
    FLeading: Single;
    FLines: TStrings;
    procedure SetLeading(Value: Single);
    procedure SetCharSpace(Value: Single);
    procedure SetWordSpace(Value: Single);
    procedure SetWordwrap(Value: boolean);
    procedure SetFontColor(Value: TColor);
    procedure SetLines(Value: TStrings);
    procedure SetText(Value: string);
    function GetText: string;
    function GetLines: TStrings;
    function GetFontClassName: string;
    procedure SetFontName(Value: TPRFontName);
    procedure SetFontItalic(Value: boolean);
    procedure SetFontBold(Value: boolean);
    procedure SetFontSize(Value: Single);
    function InternalTextout(APdfCanvas: TPdfCanvas;
                        S: string; X, Y: integer): Single;
    function GetNextWord(const S: string; var Index: integer): string;
  protected
    procedure CMTextChanged(var Message: TMessage); message CM_TEXTCHANGED;
    procedure Paint; override;
    procedure Print(ACanvas: TPRCanvas; ARect: TRect); override;
    function GetInternalDoc: TPdfDoc;
  public
    constructor Create(AOwner: TComponent); override;
    destructor Destroy; override;
    property Text: string read GetText write SetText;
  published
    property FontColor: TColor read FFontColor write SetFontColor default clBlack;
    property FontName: TPRFontName read FFontName write SetFontName;
    property FontSize: Single read FFontSize write SetFontSize;
    property FontBold: boolean read FFontBold write SetFontBold default false;
    property FontItalic: boolean read FFontItalic write SetFontItalic default false;
    property CharSpace: Single read FCharSpace write SetCharSpace;
    property Leading: Single read FLeading write SetLeading;
    property Lines: TStrings read GetLines write SetLines;
    property WordSpace: Single read FWordSpace write SetWordSpace;
    property WordWrap: boolean read FWordWrap write SetWordwrap default false;
  end;

  { TPRRect }
  TPRRect = class(TPRItem)
  private
    FLineWidth: Single;
    FLineColor: TColor;
    FLineStyle: TPenStyle;
    FFillColor: TColor;
    procedure SetLineColor(Value: TColor);
    procedure SetFillColor(Value: TColor);
    procedure SetLineWidth(Value: Single);
    procedure SetLineStyle(Value: TPenStyle);
  protected
    procedure Paint; override;
    procedure Print(ACanvas: TPRCanvas; ARect: TRect); override;
  public
    constructor Create(AOwner: TComponent); override;
  published
    property LineWidth: Single read FLineWidth write SetLineWidth;
    property LineColor: TColor read FLineColor write SetLineColor default clBlack;
    property LineStyle: TPenStyle read FLineStyle write SetLineStyle;
    property FillColor: TColor read FFillColor write SetFillColor default clNone;
  end;

  { TPRImage }
  TPRImage = class(TPRItem)
  private
    FPicture: TPicture;
    FSharedImage: boolean;
    procedure SetPicture(Value: TPicture);
  protected
    procedure Paint; override;
    procedure Print(ACanvas: TPRCanvas; ARect: TRect); override;
  public
    constructor Create(AOwner: TComponent); override;
    destructor Destroy; override;
  published
    property Picture: TPicture read FPicture write SetPicture;
    property SharedImage: boolean read FSharedImage write FSharedImage;
  end;

procedure Register;

implementation

const
  LINE_PITCH: integer = 378;
  LINE_COLOR: TColor = clSilver;
  DEFAULT_MARGIN = 32;
  PROTECT_AREA_COLOR: TColor = $00EFEFEF;
  MIN_PANEL_SIZE = 10;
  MAX_IMAGE_NUMBER = 65535;
{$IFDEF USE_JPFONTS}
  PDFFONT_CLASS_NAMES: array[0..6] of string = (
                           'FixedWidth',
                           'Arial',
                           'Times-Roman',
                           'Gothic',
                           'Mincyo',
                           'PGothic',
                           'PMincyo');
  PDFFONT_CLASS_BOLD_NAMES: array[0..6] of string = (
                           'FixedWidth-Bold',
                           'Arial-Bold',
                           'Times-Bold',
                           'Gothic,Bold',
                           'Mincyo,Bold',
                           'PGothic,Bold',
                           'PMincyo,Bold');
  PDFFONT_CLASS_ITALIC_NAMES: array[0..6] of string = (
                           'FixedWidth-Italic',
                           'Arial-Italic',
                           'Times-Italic',
                           'Gothic,Italic',
                           'Mincyo,Italic',
                           'PGothic,Italic',
                           'PMincyo,Italic');
  PDFFONT_CLASS_BOLDITALIC_NAMES: array[0..6] of string = (
                           'FixedWidth-BoldItalic',
                           'Arial-BoldItalic',
                           'Times-BoldItalic',
                           'Gothic,BoldItalic',
                           'Mincyo,BoldItalic',
                           'PGothic,BoldItalic',
                           'PMincyo');
  ITEM_FONT_NAMES: array[0..6] of string = (
                           'Courier New',
                           'Arial',
                           'Century',
                           #130#108#130#114#32#131#83#131#86#131#98#131#78,
                           #130#108#130#114#32#150#190#146#169,
                           #130#108#130#114#32#130#111#131#83#131#86#131#98#131#78,
                           #130#108#130#114#32#130#111#150#190#146#169);
  ITEM_FONT_CHARSETS: array[0..6] of TFontCharset = (
                           ANSI_CHARSET,
                           ANSI_CHARSET,
                           ANSI_CHARSET,
                           SHIFTJIS_CHARSET,
                           SHIFTJIS_CHARSET,
                           SHIFTJIS_CHARSET,
                           SHIFTJIS_CHARSET);
{$ELSE}
  PDFFONT_CLASS_NAMES: array[0..2] of string = (
                           'FixedWidth',
                           'Arial',
                           'Times-Roman');
  PDFFONT_CLASS_BOLD_NAMES: array[0..2] of string = (
                           'FixedWidth-Bold',
                           'Arial-Bold',
                           'Times-Bold');
  PDFFONT_CLASS_ITALIC_NAMES: array[0..2] of string = (
                           'FixedWidth-Italic',
                           'Arial-Italic',
                           'Times-Italic');
  PDFFONT_CLASS_BOLDITALIC_NAMES: array[0..2] of string = (
                           'FixedWidth-BoldItalic',
                           'Arial-BoldItalic',
                           'Times-BoldItalic');
  ITEM_FONT_NAMES: array[0..2] of string = (
                           'Courier New',
                           'Arial',
                           'TimesNewRoman');
  ITEM_FONT_CHARSETS: array[0..2] of TFontCharset = (
                           ANSI_CHARSET,
                           ANSI_CHARSET,
                           ANSI_CHARSET);
{$ENDIF}

{ common routines }

procedure PaintGrid(Canvas: TCanvas; Width, Height: integer;
  OffsetX, OffsetY: integer);
var
  LinePos: integer;
  LineCount: integer;
  LineFlg: boolean;

  // sub routine to set pen style
  procedure SetPen(Canvas: TCanvas; flg: boolean);
  begin
    Canvas.Pen.Color := LINE_COLOR;
    if flg then
      Canvas.Pen.Style := psSolid
    else
      Canvas.Pen.Style := psDot;
  end;

begin
  with Canvas do
  begin
    // drawing vertical lines.
    LineCount := 0;
    LineFlg := true;
    LinePos := - OffsetX;
    while LinePos < Width do
    begin
      if LinePos > 0 then
      begin
        MoveTo(LinePos, 0);
        SetPen(Canvas, LineFlg);
        LineTo(LinePos, Height - 1);
      end;
      inc(LineCount);
      LineFlg := not LineFlg;
      LinePos := trunc(LineCount * LINE_PITCH / 20) - OffsetX;
    end;

    // drawing horizontal lines.
    LineCount := 0;
    LineFlg := true;
    LinePos := - OffsetY;
    while LinePos < Height do
    begin
      if LinePos > 0 then
      begin
        MoveTo(0, LinePos);
        SetPen(Canvas, LineFlg);
        LineTo(Width - 1, LinePos);
      end;
      inc(LineCount);
      LineFlg := not LineFlg;
      LinePos := trunc(LineCount * LINE_PITCH / 20) - OffsetY;
    end;
  end;
end;

{ TPReport }

// Create
constructor TPReport.Create(AOwner: TComponent);
begin
  inherited Create(AOwner);
  FFileName := 'default.pdf';
  FCreationDate := now;
  FDoc := nil;
  FCanvas := TPRCanvas.Create;
end;

// Destroy
destructor TPReport.Destroy;
begin
  FCanvas.Free;
  if FDoc <> nil then Abort;
  inherited;
end;

// BeginDoc
procedure TPReport.BeginDoc;
begin
  if FDoc <> nil then Abort;
  FDoc := TPdfDoc.Create(Self);
  with FDoc do
  begin
    CompressionMethod := FCompressionMethod;
    NewDoc;
    Root.PageMode := PageMode;
    Info.Author := Author;
    Info.CreationDate := CreationDate;
    Info.Creator := Creator;
    Info.Keywords := Keywords;
    Info.ModDate := ModDate;
    Info.Subject := Subject;
    Info.Title := Title;
  end;
  FPage := 0;
end;

// Print
procedure TPReport.Print(APage: TPRPage);
begin
  FDoc.AddPage;
  inc(FPage);
  FCanvas.PdfCanvas := FDoc.Canvas;
  APage.Print(FCanvas);
end;

// EndDoc
procedure TPReport.EndDoc;
var
  FStream: TStream;
begin
  if FDoc <> nil then
  begin
    FStream := TFileStream.Create(FFileName, fmCreate);
    FDoc.SaveToStream(FStream);
    FStream.Free;
    FDoc.Free;
    FDoc := nil;
  end
  else
    raise EInvalidOperation.Create('document is null..');
end;

// Abort
procedure TPReport.Abort;
begin
  if FDoc <> nil then
  begin
    FDoc.Free;
    FDoc := nil;
  end
end;

// GetPdfDoc
function TPReport.GetPdfDoc: TPdfDoc;
begin
  result := FDoc;
end;

{ TPRCanvas }

// Create
constructor TPRCanvas.Create;
begin
  inherited;
  FCanvas := nil;
end;

// SetPdfCanvas
procedure TPRCanvas.SetPdfCanvas(ACanvas: TPdfCanvas);
begin
  FCanvas := ACanvas;
end;

procedure TPRCanvas.SetCharSpace(charSpace: Single);
begin
  PdfCanvas.SetCharSpace(charSpace);
end;

procedure TPRCanvas.SetWordSpace(wordSpace: Single);
begin
  PdfCanvas.SetWordSpace(wordSpace);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91精品国产91久久久久久最新毛片| 久久久三级国产网站| 精品久久久久久最新网址| 国产精品久久久久久久浪潮网站| 亚洲一区影音先锋| 成人一区二区三区视频| 91精品国产91热久久久做人人 | 成人免费高清视频在线观看| 欧美老年两性高潮| 日韩美女视频19| 国产一区二区三区| 91精品国产综合久久精品麻豆| 中文字幕亚洲区| 欧美一区二区福利视频| 亚洲欧美日韩在线不卡| 成人一区二区三区在线观看| 久久一区二区视频| 久草精品在线观看| 91精品国产综合久久精品图片| 亚洲电影在线免费观看| 欧美性感一类影片在线播放| 有坂深雪av一区二区精品| 99精品一区二区| 亚洲欧洲精品成人久久奇米网| 国产高清久久久| 久久久.com| 国产精品99久| 欧美极品xxx| 成人高清免费观看| 中文字幕亚洲成人| 99re视频精品| 亚洲色图欧洲色图婷婷| 99精品视频在线播放观看| 亚洲欧洲精品一区二区三区不卡| 白白色 亚洲乱淫| 日韩一区欧美小说| 日本电影欧美片| 图片区小说区国产精品视频| 欧美日本精品一区二区三区| 日本少妇一区二区| 日韩欧美电影在线| 国产一区二区美女| 国产精品理论片在线观看| 99精品视频一区二区三区| 日韩美女啊v在线免费观看| 色噜噜久久综合| 日本美女视频一区二区| 亚洲精品一线二线三线无人区| 国产成人在线免费观看| 亚洲欧美在线另类| 欧美日韩1区2区| 老汉av免费一区二区三区| 国产午夜亚洲精品不卡| 91美女蜜桃在线| 日韩精品成人一区二区三区| 久久久www免费人成精品| 99精品视频在线播放观看| 天堂蜜桃91精品| 国产拍揄自揄精品视频麻豆| 91精品1区2区| 久久成人免费日本黄色| 自拍偷自拍亚洲精品播放| 在线播放91灌醉迷j高跟美女| 精品一区二区三区在线观看国产| 国产精品久久久久aaaa| 在线播放欧美女士性生活| 懂色av一区二区三区蜜臀| 亚洲一区日韩精品中文字幕| 精品国产露脸精彩对白| 色婷婷综合久久久中文一区二区| 日本欧美加勒比视频| 国产精品久线观看视频| 777亚洲妇女| 99免费精品在线观看| 美女视频一区二区| 亚洲美女屁股眼交| 久久精品一区二区三区四区| 欧美最新大片在线看| 国产精品66部| 奇米精品一区二区三区在线观看一| 国产精品免费人成网站| 欧美一级爆毛片| 在线影院国内精品| 福利一区二区在线| 免费看黄色91| 亚洲成人免费观看| 亚洲色大成网站www久久九九| 精品蜜桃在线看| 欧美精品自拍偷拍| 91国偷自产一区二区开放时间| 国产一区91精品张津瑜| 日韩中文字幕一区二区三区| 亚洲日本在线视频观看| 国产丝袜在线精品| 精品久久久久av影院| 91麻豆精品国产91久久久久久久久 | 国产精品久久久久婷婷| 日韩精品综合一本久道在线视频| 在线视频欧美精品| 色综合一区二区| www.一区二区| 成人永久aaa| 粉嫩一区二区三区在线看| 精品一区二区三区蜜桃| 日韩国产在线观看| 亚洲成人激情综合网| 一区二区高清视频在线观看| 综合久久久久综合| 中文字幕五月欧美| 国产精品短视频| 欧美日韩一区不卡| 91.com在线观看| 日韩欧美国产系列| 欧美一级高清大全免费观看| 91精品国产91热久久久做人人| 777亚洲妇女| 日韩免费电影一区| 精品99久久久久久| 久久久亚洲精品一区二区三区| 久久嫩草精品久久久精品| 日韩视频免费观看高清完整版在线观看 | 亚洲成a人片综合在线| 夜夜精品浪潮av一区二区三区| 亚洲激情综合网| 亚洲制服丝袜av| 香蕉av福利精品导航| 免费在线观看一区| 国产一区二区三区美女| 国产成人精品免费| 99国产精品久久久久久久久久久 | 欧美一区二区在线观看| 日韩精品在线网站| 久久久影视传媒| 国产婷婷色一区二区三区四区 | 91色在线porny| 在线观看91精品国产入口| 欧美日韩一区在线| 精品久久久久久久人人人人传媒| 久久免费美女视频| 亚洲免费av高清| 爽好多水快深点欧美视频| 精品一区中文字幕| 成人高清视频在线| 欧美区在线观看| 欧美国产视频在线| 一二三四区精品视频| 久久精品国产999大香线蕉| 国产成人午夜高潮毛片| 欧洲一区二区三区在线| 337p亚洲精品色噜噜噜| 国产网站一区二区| 亚洲精品国产一区二区精华液| 秋霞午夜av一区二区三区| 高清成人在线观看| 8v天堂国产在线一区二区| 国产三级一区二区| 亚洲国产欧美另类丝袜| 国产毛片精品国产一区二区三区| 在线欧美一区二区| 久久久99精品免费观看不卡| 亚洲一区欧美一区| 高清成人免费视频| 日韩午夜在线播放| 亚洲蜜桃精久久久久久久| 国产一区二三区好的| 欧美性色欧美a在线播放| 国产亚洲综合av| 免费久久精品视频| 91国内精品野花午夜精品| 国产精品视频免费| 日韩成人dvd| 欧美影院一区二区| 国产精品网站在线| 国产精一区二区三区| 欧美另类一区二区三区| 伊人性伊人情综合网| 从欧美一区二区三区| 精品剧情v国产在线观看在线| 亚洲午夜激情网页| 91小视频免费观看| 国产精品免费丝袜| 国产高清一区日本| 久久久久久**毛片大全| 免费成人结看片| 555夜色666亚洲国产免| 亚洲一区二区欧美激情| 99re在线视频这里只有精品| 久久青草欧美一区二区三区| 老司机免费视频一区二区| 欧美日韩不卡一区二区| 亚洲免费av网站| 在线观看区一区二| 亚洲柠檬福利资源导航| 91亚洲精品久久久蜜桃网站| 国产精品第13页| 色综合天天综合色综合av| 亚洲欧美在线aaa| 在线观看成人免费视频| 亚洲伦理在线精品| 91久久精品午夜一区二区|