亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 編程 > Delphi > 正文

Delphi控件制作技巧[二]

2019-11-18 18:03:06
字體:
來源:轉載
供稿:網友
 

unit USWLMSelectDa;

{$S-,W-,R-}                                            
{$C PRELOAD}

interface

uses
  Windows,Messages,SysUtils, Types, Classes, Graphics, Controls,StdCtrls,Forms,
  StrUtils,Math,ADODB,TFlatButtonUnit,USWLMStyleEdit;

type
  TEditDataType = (sdString, sdInteger,sdFloat,sdMoney,sdDate);
  TVAlignment = (tvaTopJustify, tvaCenter, tvaBottomJustify);
  TDataStyle = (dsBm, dsZj, dsMc);
type
  TSelectDa = class(TCustomControl)
  private
    FPen: TPen;
    FBrush:TBrush;
    FFont:TFont;
    FCaption:string;
    FBmText:string;
    FZjText:string;
    FMcText:string;
    FDataType: TEditDataType;
    FPrecision: Integer;
    FReadOnly:Boolean;
    FEditFont:TFont;
    FHAlignment : TAlignment;
    FVAlignment : TVAlignment;
    FEdit:TStyleEdit;
    FButton:TFlatButton;
    FTitleName:string;
    FTableName:string;
    FDataStyle:TDataStyle;
    FBmField:string;
    FZjField:string;
    FMcField:string;
    FOnClick: TNotifyEvent;
    FOnEnter: TNotifyEvent;
    FOnExit: TNotifyEvent;
    FOnKeyPress: TKeyPressEvent;
    procedure SetPen(const Value:TPen);
    procedure SetBrush(const Value:TBrush);
    procedure SetFont(const Value:TFont);
    procedure SetCaption(const Value:string);
    procedure SetBmText(const Value:string);
    procedure SetZjText(const Value:string);
    procedure SetMcText(const Value:string);
    procedure SetDataType(const Value: TEditDataType);
    procedure SetPrecision(const Value: Integer);
    procedure SetReadOnly(const Value:Boolean);
    procedure SetEditFont(const Value:TFont);
    procedure SetHAlignment(const Value:TAlignment);
    procedure SetVAlignment(const Value:TVAlignment);
    procedure SetTitleName(const Value:string);
    procedure SetTableName(const Value:string);
    procedure SetDataStyle(const Value:TDataStyle);
    procedure SetBmField(const Value:string);
    procedure SetZjField(const Value:string);
    procedure SetMcField(const Value:string);
    function  GetAsFloat(): string;
    function  GetAsMoney(): string;
    function  GetAsInteger(): string;
    function  GetAsText(): string;
    function  GetAsDate(): string;
    procedure SetAsFloat(const Value: string);
    procedure SetAsMoney(const Value: string);
    procedure SetAsInteger(const Value: string);
    procedure SetAsText(const Value: string);
    procedure StyleChanged(Sender: TObject);
    procedure SetBackColor(const Value : TColor);
    procedure SetColorOnEnter(const Value : TColor);
    {
    procedure DoClick(Sender: TObject);
    procedure DoEnter(Sender: TObject);
    procedure DoExit(Sender: TObject);
    procedure DoKeyPress(Sender: TObject; var Key: Char);
    }

    procedure SetOnClick(const Value:TNotifyEvent);
    procedure SetOnKeyPress(const Value:TKeyPressEvent);
    procedure SetOnEnter(const Value:TNotifyEvent);
    procedure SetOnExit(const Value:TNotifyEvent);

  protected
    procedure Paint; override;
  public
    constructor Create(AOwner: TComponent); override;
    destructor  Destroy; override;
  published
    property Pen: TPen read FPen write SetPen;
    property Brush: TBrush read FBrush write SetBrush;
    property Font: TFont read FFont write SetFont;
    property Caption:string read FCaption write SetCaption;
    property Bm:string read FBmText write SetBmText ;
    property Zjf:string read FZjText write SetZjText ;
    property Mc:string read FMcText write SetMcText ;
    property Text:string read FMcText write SetMcText;
    property DataType: TEditDataType read FDataType write SetDataType default SdString;
    property Precision: Integer read Fprecision write SetPrecision default 2;
    property ReadOnly: Boolean read FReadOnly write SetReadOnly default False;
    property EditFont: TFont read FEditFont write SetEditFont;
    property HAlignment:TAlignment read FHAlignment write SetHAlignment default taLeftJustify;
    property VAlignment:TVAlignment read FVAlignment write SetVAlignment default tvaBottomJustify;
    property TitleName:string read FTitleName write SetTitleName ;
    property TableName:string read FTableName write SetTableName ;
    property DataStyle:TDataStyle read FDataStyle write SetDataStyle default dsBm;
    property BmField:string read FBmField write SetBmField ;
    property ZjField:string read FZjField write SetZjField ;
    property McField:string read FMcField write SetMcField ;
    property AsFloat:string read GetAsFloat {write SetAsFloat};
    property AsMoney:string read GetAsMoney {write SetAsMoney};
    property AsInt: string read GetAsInteger {write SetAsInteger};
    property AsDate: string read GetAsDate ;
    property AsStr: string read GetAsText write SetAsText;
    property OnClick: TNotifyEvent read FOnClick write SetOnClick;
    property OnKeyPress: TKeyPressEvent read FOnKeyPress write SetOnKeyPress;
    property OnEnter: TNotifyEvent read FOnEnter write SetOnEnter;
    property OnExit: TNotifyEvent read FOnExit write SetOnExit;
    property BackColor : TColor write SetBackColor;
    property ColorOnEnter : TColor write SetColorOnEnter;
    property AlignDisabled;
    property VisibleDockClientCount;
    property ControlCount;
    property ParentWindow;
    property Showing;
    property TabOrder;
    property TabStop;
  end;

procedure Register;

implementation

uses Consts;

procedure TSelectDa.SetPen(const Value: TPen);
begin
  FPen.Assign(Value);
  Invalidate;
end;

procedure TSelectDa.SetBrush(const Value:TBrush);
begin
  FBrush.Assign(Value);
  Invalidate;
end;

procedure TSelectDa.SetFont(const Value:TFont);
begin
  FFont.Assign(Value);
  Invalidate;
end;

procedure TSelectDa.SetCaption(const Value:string);
begin
  if FCaption <> Value then
  begin
    FCaption:=Value;
    Invalidate;
  end;
end;

procedure TSelectDa.SetBmText(const Value:string);
begin
  if FBmText <> Value then
  begin
    FBmText:=Value;
    Invalidate;
  end;
end;

procedure TSelectDa.SetZjText(const Value:string);
begin
  if FZjText <> Value then
  begin
    FZjText:=Value;
  end;
end;

procedure TSelectDa.SetMcText(const Value:string);
begin
  if FMcText <> Value then
  begin
    FMcText:=Value;
    Invalidate;
  end;
end;

procedure TSelectDa.SetReadOnly(const Value:Boolean);
begin
  if FReadOnly<>Value then
  begin
    FReadOnly:=Value;
    Invalidate;
  end;
end;

procedure TSelectDa.SetEditFont(const Value:TFont);
begin
  FEditFont.Assign(Value);
  Invalidate;
end;

procedure TSelectDa.SetPrecision(const Value: Integer);
begin
  if Fprecision<>Value then
  begin
    case Value of
    1..6:FPrecision:=Value;
    else FPrecision:=2;
    end;
    Invalidate;
  end;
end;

procedure TSelectDa.SetDataType(const Value: TEditDataType);
begin
  if FDataType <> Value then
  begin
    FDataType:=Value;
    case FDataType of
      SdString:FEdit.InputStyle:=IsString;
      SdInteger:FEdit.InputStyle:=IsInteger;
      SdFloat:FEdit.InputStyle:=IsFloat;
      SdMoney:FEdit.InputStyle:=IsMoney;
      SdDate:FEdit.InputStyle:=IsDate;
      else FEdit.InputStyle:=IsString;
    end;
    Invalidate;
  end;
end;

procedure TSelectDa.SetHAlignment(const Value:TAlignment);
begin
  if FHAlignment <> Value then
  begin
      FHAlignment:=Value;
      Invalidate;
  end;
end;

procedure TSelectDa.SetVAlignment(const Value:TVAlignment);
begin
  if FVAlignment <> Value then
  begin
      FVAlignment:=Value;
      Invalidate;
  end;
end;

procedure TSelectDa.SetTitleName(const Value:string);
begin
  if FTitleName<>Value then FTitleName:=Value;
end;

procedure TSelectDa.SetTableName(const Value:string);
begin
  if FTableName<>Value then
  begin
    FTableName:=Value;
    Invalidate;
  end;
end;

procedure TSelectDa.SetDataStyle(const Value:TDataStyle);
begin
  if FDataStyle<>Value then FDataStyle:=Value;
end;

procedure TSelectDa.SetBmField(const Value:string);
begin
  if FBmField<>Value then
  begin
      FBmField:=Value;
      Invalidate;
  end;
end;

procedure TSelectDa.SetZjField(const Value:string);
begin
  if FZjField<>Value then  FZjField:=Value;
end;

procedure TSelectDa.SetMcField(const Value:string);
begin
  if FMcField<>Value then
  begin
      FMcField:=Value;
      Invalidate;
  end;
end;

function  TSelectDa.GetAsDate(): string;
var
  TempDate:TDateTime;
begin
  if TryStrToDate(FMcText,TempDate) then Result:=FormatDateTime('YYYY-MM-DD',TempDate)
  else Result:='';
end;

function  TSelectDa.GetAsFloat: string;
  function StrToDouble(S:string):Double;
  begin
    if not trystrToFloat(s,Result) then Result:=0;
  end;
begin
  case FPrecision of
  1..6:  Result:=FormatFloat('###0.'+DupeString('0',FPrecision),StrToDouble(FMcText));
  else  Result:=FormatFloat('###0.00',StrToDouble(FMcText));
  end;
end;

function  TSelectDa.GetAsMoney: string;
  function StrToDouble(S:string):Double;
  begin
    if not trystrToFloat(s,Result) then Result:=0;
  end;
begin
  Result:=FormatFloat('###0.00',StrToDouble(FMcText));
end;

function  TSelectDa.GetAsInteger: string;
  Function StrToInteger(S:string):integer;
  begin
    if not trystrToInt(s,Result) then Result:=0;
  end;
begin
  Result:=IntToStr(StrToInteger(FMcText));
end;

function  TSelectDa.GetAsText: string;
begin
  Result:=FMcText;
end;

procedure TSelectDa.SetAsFloat(const Value: string);
  function StrToDouble(S:string):Double;
  begin
    if not trystrToFloat(s,Result) then Result:=0;
  end;
var
  f:Double;
begin
  f:=StrToDouble(Value);
  case FPrecision of
  1..6:
  begin
    f:=RoundTo(f,-FPrecision);
    SetMcText(FormatFloat('###0.'+DupeString('0',FPrecision),f));
  end
  else
  begin
    f:=RoundTo(f,-2);
    SetMcText(FormatFloat('###0.00',f));
  end;
  end;
end;

procedure TSelectDa.SetAsMoney(const Value: string);
  function StrToDouble(S:string):Double;
  begin
    if not trystrToFloat(s,Result) then Result:=0;
  end;
var
  f:Double;
begin
  f:=StrToDouble(Value);
  f:=RoundTo(f,-2);
  SetMcText(FormatFloat('###0.00',f));
end;

procedure TSelectDa.SetAsInteger(const Value: string);
  Function StrToInteger(S:string):integer;
  begin
    if not trystrToInt(s,Result) then Result:=0;
  end;
var
  i:Integer;
begin
  i:=StrToInteger(Value);
  SetMcText(IntToStr(i));
end;

procedure TSelectDa.SetAsText(const Value: string);
begin
  SetMcText(Value);
end;

procedure TSelectDa.StyleChanged(Sender: TObject);
begin
  Invalidate;
end;

procedure TSelectDa.SetBackColor(const Value : TColor);
begin
  FEdit.BackColor:=Value;
end;

procedure TSelectDa.SetColorOnEnter(const Value : TColor);
begin
  FEdit.ColorOnEnter:=Value;
end;

constructor TSelectDa.Create(AOwner: TComponent);
begin
  inherited Create(AOwner);
  Width:=188;
  Height:=20;
  FCaption:='未命名';
  FBmText:='';
  FZjText:='';
  FMcText:='';
  FReadOnly:=False;
  FHAlignment:=taLeftJustify;
  FVAlignment:=tvaBottomJustify;
  FDataType:=SdString;
  FPrecision:=2;
  FTitleName:='';
  FTableName:='';
  FDataStyle:=dsBm;
  FBmField:='';
  FZjField:='';
  FMcField:='';
  FPen := TPen.Create;
  FPen.OnChange:=StyleChanged;
  FBrush := TBrush.Create;
  FBrush.OnChange:=StyleChanged;
  FFont := TFont.Create;
  FFont.OnChange:=StyleChanged;
  FFont.Charset:=GB2312_CHARSET;
  FFont.Name:='宋體';
  FFont.Size:=9;
  FEditFont := TFont.Create;
  FEditFont.OnChange:=StyleChanged;
  FEditFont.Charset:=GB2312_CHARSET;
  FEditFont.Name:='宋體';
  FEditFont.Size:=9;
  FEdit:=TStyleEdit.Create(Self);
  FEdit.Parent:=Self;
  FEdit.BorderStyle:=bsNone;
  FEdit.InputStyle:=isString;
  {
  FEdit.OnKeyPress:=DoKeyPress;
  FEdit.OnEnter:=DoEnter;
  FEdit.OnExit:=DoExit;
  }
  FButton:=TFlatButton.Create(Self);
  FButton.Parent:=Self;
  FButton.Font:=FFont;
  FButton.ColorBorder:=FBrush.Color;
  FButton.Color:=FBrush.Color;
  FButton.ColorDown:=FBrush.Color;
  FButton.ColorShadow:=FBrush.Color;
  FButton.ColorFocused:=FBrush.Color;
  FButton.Width:=19;
  FButton.Caption:='…';
  {
  FButton.OnClick:=DoClick;
  }
end;

procedure TSelectDa.Paint;
var
  aText:Pchar;
  aRect:TRect;
  Flag:DWord;
begin
  with Canvas do
  begin
    Font:=FFont;
    Pen:=FPen;
    Brush:=FBrush;
    FillRect(ClientRect);
    if FBmText<>'' then aText:=Pchar(FCaption+'['+FBmText+']') else aText:=Pchar(FCaption);
    aRect:=Rect(ClientRect.Left+FPen.Width, ClientRect.Top+FPen.Width, ClientRect.Right-FPen.Width, ClientRect.Bottom-FPen.Width);
    DrawText(Handle, aText, StrLen(aText), aRect, (DT_SINGLELINE or DT_VCENTER) or DT_LEFT);
    Inc(aRect.Left,TextWidth(aText));
    Dec(aRect.Right,FButton.Width);
    MoveTo(aRect.Left,aRect.Bottom);
    LineTo(aRect.Right,aRect.Bottom);
    Inc(aRect.Left,FPen.Width);
    if FReadOnly then
    begin
      FEdit.Visible:=False;
      FButton.Visible:=False;
      Flag:=DT_SINGLELINE;
      case FHAlignment of
        taLeftJustify:Flag:=Flag or DT_LEFT;
        taRightJustify:Flag:=Flag or DT_RIGHT;
        taCenter:Flag:=Flag or DT_CENTER;
        else Flag:=Flag or DT_LEFT;
      end;
      case FVAlignment of
        tvaTopJustify:Flag:=Flag or DT_TOP;
        tvaCenter:Flag:=Flag or DT_VCENTER;
        tvaBottomJustify:Flag:=Flag or DT_BOTTOM;
        else Flag:=Flag or DT_BOTTOM;
      end;
      Font:=FEditFont;
      case FDataType of
        SdString:DrawText(Handle, PChar(AsStr),  StrLen(PChar(AsStr)), aRect, Flag);
        SdInteger:DrawText(Handle, PChar(AsInt), StrLen(PChar(AsInt)), aRect, Flag);
        SdFloat:DrawText(Handle, PChar(AsFloat), StrLen(PChar(AsFloat)), aRect, Flag);
        SdMoney:DrawText(Handle, PChar(AsMoney), StrLen(PChar(AsMoney)), aRect, Flag);
        SdDate:DrawText(Handle, PChar(AsDate), StrLen(PChar(AsDate)), aRect, Flag);
      end;
    end
    else
    begin
      FEdit.Alignment:=FHAlignment;
      FEdit.Font:=FEditFont;
      FEdit.Text:=FMcText;
      FEdit.Width:=aRect.Right-aRect.Left;
      FEdit.Height:=Min(Max(TextHeight(FMcText),TextHeight(FCaption)),aRect.Bottom-aRect.Top);
      FEdit.Left:=aRect.Left;
      case FVAlignment of
        tvaTopJustify:FEdit.Top:=aRect.Top;
        tvaCenter:FEdit.Top:=aRect.Top+(aRect.Bottom-aRect.Top-FEdit.Height)div 2;
        tvaBottomJustify:FEdit.Top:=aRect.Top+(aRect.Bottom-aRect.Top-FEdit.Height);
        else FEdit.Top:=aRect.Top;
      end;
      FButton.Left:=aRect.Right;
      FButton.Top:=aRect.Top;
      FButton.Height:=aRect.Bottom-aRect.Top;
      if ((FDataType=SdString) and (FBmField<>'') and (FMcField<>'') and (FTableName<>''))
         or (FDataType=SdDate) then FButton.Visible:=True
      else FButton.Visible:=False;
    end;
  end;
end;

destructor TSelectDa.Destroy;
begin
  FPen.Free;
  FBrush.Free;
  FFont.Free;
  FEditFont.Free;
  if Assigned(FEdit) then FreeAndNil(FEdit);
  if Assigned(FButton) then FreeAndNil(FButton);
  inherited Destroy;
end;

{
procedure TSelectDa.DoClick(Sender: TObject);
begin
  if Assigned(FOnClick) then FOnClick(Self);
end;

procedure TSelectDa.DoEnter(Sender: TObject);
begin
  if Assigned(FOnEnter) then FOnEnter(Self);
end;

procedure TSelectDa.DoExit(Sender: TObject);
begin
  if Assigned(FOnExit) then FOnExit(Self);
end;

procedure TSelectDa.DoKeyPress(Sender: TObject; var Key: Char);
begin
  if Assigned(FOnKeyPress) then FOnKeyPress(Self,Key);
end;
}

procedure TSelectDa.SetOnClick(const Value:TNotifyEvent);
begin
  if @FOnClick<>@Value then
  begin
    FOnClick:=Value;
    FButton.OnClick:=FOnClick;
  end;
end;

procedure TSelectDa.SetOnKeyPress(const Value:TKeyPressEvent);
begin
  if @FOnKeyPress<>@Value then
  begin
    FOnKeyPress:=Value;
    FEdit.OnKeyPress:=FOnKeyPress;
  end;
end;

procedure TSelectDa.SetOnEnter(const Value:TNotifyEvent);
begin
  if @FOnEnter<>@Value then
  begin
    FOnEnter:=Value;
    FEdit.OnEnter:=FOnEnter;
  end;
end;

procedure TSelectDa.SetOnExit(const Value:TNotifyEvent);
begin
  if @FOnExit<>@Value then
  begin
    FOnExit:=Value;
    FEdit.OnExit:=FOnExit;
  end;
end;

procedure Register;
begin
  RegisterComponents('swlmsoft', [TSelectDa]);
end;

end.


上一篇:變速齒輪Delphi實現

下一篇:Delphi關于線程的消息處理

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
學習交流
熱門圖片

新聞熱點

疑難解答

圖片精選

網友關注

亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
亚洲午夜精品久久久久久性色| 欧美极品美女视频网站在线观看免费| 91精品在线一区| 欧美一级淫片aaaaaaa视频| 日韩午夜在线视频| 欧美另类极品videosbestfree| 欧美日韩国产综合视频在线观看中文| 久久不射热爱视频精品| 亚洲免费伊人电影在线观看av| 国产精品免费一区二区三区都可以| 欧美xxxx18国产| 最新亚洲国产精品| 亚洲美女av在线播放| 亚洲欧美综合v| 欧美激情a∨在线视频播放| 亚洲国产小视频在线观看| 久久久999国产| 色偷偷偷亚洲综合网另类| 亚洲影院在线看| www.日韩免费| 国产精品视频网| 91精品久久久久久综合乱菊| 日韩在线一区二区三区免费视频| 欧美大片在线免费观看| 久久久久北条麻妃免费看| 国产精品免费久久久久久| 欧美激情久久久久久| 91免费精品国偷自产在线| 亚洲女人天堂av| 久久久久久97| 国产精品视频xxx| 欧美日韩国产成人高清视频| 一区二区三区回区在观看免费视频| 国产日韩精品在线| 国产国语videosex另类| 91精品国产99久久久久久| 国产精品久久色| 精品亚洲永久免费精品| 一道本无吗dⅴd在线播放一区| 国产精品欧美日韩一区二区| 日韩精品在线观看一区二区| 少妇高潮久久久久久潘金莲| 亚洲精品av在线| 欧美性一区二区三区| 欧美另类极品videosbest最新版本| 国产午夜精品美女视频明星a级| 草民午夜欧美限制a级福利片| 在线观看国产成人av片| 国产美女搞久久| 久久99久久99精品免观看粉嫩| 欧美性猛交xxx| 日韩中文字幕久久| 欧美激情乱人伦| 大桥未久av一区二区三区| 国产精品一区二区电影| 午夜免费久久久久| 欧美视频专区一二在线观看| 日韩国产欧美精品在线| 国产精品视频导航| 亚洲色图国产精品| www.99久久热国产日韩欧美.com| 国内揄拍国内精品| xxxx欧美18另类的高清| 久久99精品国产99久久6尤物| 九九热99久久久国产盗摄| 日韩av在线看| 亚洲精品videossex少妇| 神马久久桃色视频| 97视频在线看| 欧美亚洲激情在线| 日韩福利在线播放| 中文字幕久久精品| 亚洲精品免费网站| 欧美性生交大片免网| 欧美性猛交xxxx乱大交3| 欧美激情日韩图片| 97香蕉超级碰碰久久免费的优势| 国产日韩视频在线观看| 国产成人涩涩涩视频在线观看| 中文字幕国产亚洲| 国产一区欧美二区三区| 狠狠综合久久av一区二区小说| 成人亚洲激情网| 精品亚洲一区二区三区在线观看| 欧美激情国产精品| 国产三级精品网站| 日本sm极度另类视频| 亚洲成人精品久久| 日韩理论片久久| 色偷偷888欧美精品久久久| 国产精品旅馆在线| 人人做人人澡人人爽欧美| 在线视频亚洲欧美| 成人免费视频xnxx.com| 欧美超级乱淫片喷水| 色噜噜狠狠狠综合曰曰曰88av| 亚洲国产古装精品网站| 国产精品女主播视频| 国产综合色香蕉精品| 亚洲另类图片色| 97精品久久久| 欧美电影在线播放| 日韩精品免费综合视频在线播放| 国产免费一区二区三区在线能观看| 日韩av免费看网站| 日韩亚洲欧美成人| 色综合久久久久久中文网| 欧美裸体xxxx极品少妇| 久久琪琪电影院| 中文字幕精品视频| 欧美日韩一区二区在线播放| 欧美理论片在线观看| 九九热精品在线| 精品福利樱桃av导航| 久久久久久久97| 欧美成人精品在线| 亚洲欧洲国产一区| 国产精品成人av性教育| 亚洲电影第1页| 欧美高清视频免费观看| 欧美成人激情在线| 91亚洲精品久久久久久久久久久久| 欧美激情videos| 57pao成人国产永久免费| 成人国产精品一区| 国产精品自拍小视频| 超碰97人人做人人爱少妇| 久久亚洲国产精品成人av秋霞| 欧美高清无遮挡| 555www成人网| 欧美激情视频三区| 国产91亚洲精品| 奇米影视亚洲狠狠色| 久久精品视频一| 精品电影在线观看| 国产精品高精视频免费| 神马久久久久久| 欧美另类极品videosbestfree| 日韩久久免费视频| 亚洲精品视频免费| 国产在线播放91| 精品国产鲁一鲁一区二区张丽| 97超级碰在线看视频免费在线看| 日韩欧美国产一区二区| 欧美电影《睫毛膏》| 欧美性视频精品| 2018国产精品视频| 国产亚洲在线播放| 欧美黑人视频一区| 亚洲成人亚洲激情| 搡老女人一区二区三区视频tv| 4p变态网欧美系列| 日韩精品日韩在线观看| 中文字幕日韩免费视频| 一个人看的www欧美| 日韩精品中文字幕视频在线| 国产91成人在在线播放| 欧美精品成人在线| 亚洲三级黄色在线观看| 日韩欧美精品免费在线| 国产在线观看精品一区二区三区| 欧美视频在线看| 精品久久久一区二区| 2019中文字幕在线观看|