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

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

?? lunarcalendar.pas

?? Clock 桌面時鐘 日歷 陰歷 看到的delphi程序 轉發
?? PAS
?? 第 1 頁 / 共 2 頁
字號:
Unit LunarCalendar;
Interface

Uses SysUtils,
  Windows,
  DateUtils,
  Classes,
  StdCtrls,
  Grids,
  Controls,
  UnitBitmapRgn,
  AAFont,
  Graphics,
  Forms,
  Math,
  ExtCtrls,
  LunarObj,
  MacForm,
  Messages;

Type

  TCalendarType = (liSolar, liLunar, liSolarLunar, liLunarSolar);

  TCalendarHint = Class;
  TLunarRec = Packed Record
    iSolarDay,
      iSolarMonth,
      iSolarYear,
      iWeekName,

    iLunarDay,
      iLunarMonth,
      iLunarYear: Integer;

    isMonthLeap,
      isToday,
      isThisMonth,
      isThisYear,
      isWeekEnd: Boolean;

    sEnWeekName,
      sCnWeekName,
      sLongWeekName,

    sLunarYear,
      sLunarMonth,
      sLunarDay,

    sSolarYear,
      sSolarMonth,
      sLongSolarMonth,
      sSolarDay: String;

    solarFestival,
      lunarFestival,
      solarTerm: String;
  End;
  PLunarRec = ^TLunarRec;

  TLunar = Class(TObject)
  Protected
    Procedure init;
  Public
    CalendarValue: Array[1..42] Of TLunarRec;

    Procedure Caculate(aYear, aMonth: Integer);
    Function CaculateToday: TLunarRec;
  End;

  TLunarPanel = Class(TCustomPanel)
  Private
    GridWidth, GridHeight, TopHeight: Integer;
    RectSize: TRect;
    FTodayRec: TLunarRec;
    SFont: TAAFontEx;

    CHint: TCalendarHint;
    Bmp: TBitmap;
    FCalendarType: TCalendarType;
    FDate: TDate;

    FLunar: TLunar;

    FBackFont,
      FSolarFont,
      FLunarFont,
      FWeekFont: TFont;

    FEnWeekName,
      FShowGrid,
      FShowBorder,
      FShowMonth: Boolean;

    FBorderColor,
      FTermColor,
      FTodayColor,
      FGridColor,
      FWeekEndColor: TColor;

    OldPos: Integer;
    Procedure Swap(Var oss, osl: String);
    Procedure SwapFont(Var ofs, ofl: TFont);
  Protected
    Procedure MouseLeave(Var Msg: TMessage); Message CM_MOUSELEAVE;
    Procedure PaintBmp(ABmp: TBitmap);
    Procedure SetBackFont(Value: TFont);
    Procedure SetBorderColor(Value: TColor);
    Procedure SetCalendarType(Value: TCalendarType);
    Procedure SetEnWeekName(Value: Boolean);
    Procedure SetLunarFont(Value: TFont);
    Procedure SetShowGrid(Value: Boolean);
    Procedure SetShowMonth(Value: Boolean);
    Procedure SetTermColor(Value: TColor);
    Procedure SetTodayColor(Value: TColor);
    Procedure SetWeekEndColor(Value: TColor);
    Procedure SetWeekFont(Value: TFont);
    Procedure SetSolarFont(Value: TFont);
    Function PosToRect(X, Y: Integer; Var ARect: TRect): Integer;
    Procedure MouseMove(Shift: TShiftState; X, Y: Integer); Override;
    Procedure CreateWnd; Override;
    Procedure Paint; Override;
    Procedure SetGridColor(Value: TColor);
    Procedure SetShowBorder(Value: Boolean);
    Procedure WMHIDELUNAR(Var Message: TMessage); Message WM_HIDELUNAR;
  Public
    Constructor Create(AOwner: TComponent); Override;
    Destructor Destroy; Override;
    Procedure InvalidateDate;
    Procedure UpdateDate(y, m: WORD); Overload;
    Procedure UpdateDate(ADate: TDate); Overload;
    Procedure UpdateDateNow;
    Function CellValue(APos: integer): PLunarRec;
    Procedure NextMonth;
    Procedure PrevYear;
    Procedure PrevMonth;
    Procedure NextYear;
    Function DrawThis: TBitmap;
    Property Date: TDate Read FDate;
    Property Lunar: TLunar Read FLunar;
    Property TodayRec: TLunarRec Read FTodayRec;
    Property EffectFont: TAAFontEx Read SFont Write SFont;
  Published
    Property BackFont: TFont Read FBackFont Write SetBackFont;
    Property LunarFont: TFont Read FLunarFont Write SetLunarFont;
    Property WeekFont: TFont Read FWeekFont Write SetWeekFont;
    Property SolarFont: TFont Read FSolarFont Write SetSolarFont;

    Property CalendarType: TCalendarType Read FCalendarType Write
      SetCalendarType;

    Property EnWeekName: Boolean Read FEnWeekName Write SetEnWeekName;
    Property ShowGrid: Boolean Read FShowGrid Write SetShowGrid;
    Property ShowMonth: Boolean Read FShowMonth Write SetShowMonth;

    Property BorderColor: TColor Read FBorderColor Write SetBorderColor;
    Property TermColor: TColor Read FTermColor Write SetTermColor;
    Property TodayColor: TColor Read FTodayColor Write SetTodayColor;
    Property WeekEndColor: TColor Read FWeekEndColor Write SetWeekEndColor;
    Property GridColor: TColor Read FGridColor Write SetGridColor;
    Property ShowBorder: Boolean Read FShowBorder Write SetShowBorder;

    Property PopupMenu;
  End;

  TCalendarHint = Class(TCustomControl)
  Private
    FAlpha: Integer;
    FStrings, FNames: TStringlist;
    FMaxNameLen: Integer;
    Procedure CMTextChanged(Var Message: TMessage); Message CM_TEXTCHANGED;
    Procedure SetAlpha(Value: Integer);
    Procedure WMNCHitTest(Var Message: TWMNCHitTest); Message WM_NCHITTEST;
  Protected
    Procedure CreateParams(Var Params: TCreateParams); Override;
    Procedure Paint; Override;
    Procedure SetLayeredAttribs;
  Public
    Constructor Create(AOwner: TComponent); Override;
    Destructor Destroy; Override;
    Procedure SetPosition;
  Published
    Property Alpha: Integer Read FAlpha Write SetAlpha;
  End;

Procedure Register;

Implementation
Uses Main;

Const
  START_YEAR = 1900;
  END_YEAR = 2100;

Procedure Register;
Begin
  Classes.RegisterComponents('Custom', [TLunarPanel]);
End;

Procedure TLunar.init;
Var
  i: Integer;
Begin
  For i := Low(CalendarValue) To High(CalendarValue) Do
    With CalendarValue[i] Do
    Begin
      iLunarDay := 0;
      iLunarMonth := 0;
      iLunarYear := 0;
      iWeekName := 0;

      iSolarDay := 0;
      iSolarMonth := 0;
      iSolarYear := 0;

      isWeekEnd := False;
      isMonthLeap := false;
      isToday := false;
      isThisMonth := false;
      isThisYear := false;

      sEnWeekName := '';
      sCnWeekName := '';
      sLongWeekName := '';

      sLunarMonth := '';
      sLunarDay := '';
      sLunarYear := '';

      sSolarYear := '';
      sSolarMonth := '';
      sLongSolarMonth := '';
      sSolarDay := '';

      solarTerm := '';
      solarFestival := '';
      lunarFestival := '';
    End;
End;

Procedure TLunar.Caculate(aYear, aMonth: Integer);
Var
  i, p, firstNode: Integer;
  SystemTime: TSystemTime;
  ld: TLunarDate;
Begin
  init;

  GetLocalTime(SystemTime);
  firstNode := WeekDay(aYear, aMonth, 1); //1號為周幾

  For i := 1 To MonthDays(aYear, aMonth) Do
  Begin
    p := i + firstNode;

    With CalendarValue[p] Do
    Begin
      iWeekName := WeekDay(aYear, aMonth, i);

      sEnWeekName := WeekEnName(iWeekName);
      sLongWeekName := WeekEnName(iWeekName, true);
      sCnWeekName := WeekCnName(iWeekName);

      isWeekEnd := iWeekName In [6, 7];

      iSolarDay := i;
      sSolarDay := IntToStr(i);

      iSolarMonth := aMonth;

      sSolarMonth := MonthEnName(aMonth);
      sLongSolarMonth := MonthEnName(aMonth, true);

      iSolarYear := aYear;
      sSolarYear := IntToStr(aYear);

      isThisMonth := aMonth = SystemTime.wMonth;
      isThisYear := aYear = SystemTime.wYear;
      isToday := isThisYear And isThisMonth And (i = SystemTime.wDay);

      ld := Lunar(aYear, aMonth, i);

      iLunarYear := ld.Year;
      iLunarMonth := ld.Month;
      iLunarDay := ld.Day;
      isMonthLeap := ld.isLeap;

      sLunarYear := FormatLunarYear(iLunarYear);
      sLunarMonth := FormatLunarMonth(iLunarMonth, isMonthLeap);
      sLunarDay := FormatLunarDay(iLunarDay);

      solarTerm := LunarObj.SolarTerm(aYear, aMonth, i);
      solarFestival := LunarObj.solarFestival(aYear, aMonth, i);
      lunarFestival := LunarObj.lunarFestival(iLunarYear, iLunarMonth,
        iLunarDay);
    End;
  End;
End;

Function TLunar.CaculateToday: TLunarRec;
Var
  y, m, d: word;
  ld: TLunarDate;
Begin
  DecodeDate(Now, y, m, d);

  With Result Do
  Begin
    iWeekName := WeekDay(y, m, d);

    sEnWeekName := WeekEnName(iWeekName);
    sLongWeekName := WeekEnName(iWeekName, true);
    sCnWeekName := WeekCnName(iWeekName);

    isWeekEnd := iWeekName In [1, 7];

    iSolarDay := d;
    sSolarDay := IntToStr(d);

    iSolarMonth := m;

    sSolarMonth := MonthEnName(m);
    sLongSolarMonth := MonthEnName(m, true);

    iSolarYear := y;
    sSolarYear := IntToStr(y);

    isThisMonth := true;
    isThisYear := true;
    isToday := true;

    ld := Lunar(y, m, d);

    iLunarYear := ld.Year;
    iLunarMonth := ld.Month;
    iLunarDay := ld.Day;
    isMonthLeap := ld.isLeap;

    sLunarYear := FormatLunarYear(iLunarYear);
    sLunarMonth := FormatLunarMonth(iLunarMonth, isMonthLeap);
    sLunarDay := FormatLunarDay(iLunarDay);

    solarTerm := LunarObj.SolarTerm(y, m, d);
    solarFestival := LunarObj.solarFestival(y, m, d);
    lunarFestival := LunarObj.lunarFestival(iLunarYear, iLunarMonth, iLunarDay);
  End;
End;

Constructor TLunarPanel.Create(AOwner: TComponent);
Begin
  Inherited Create(AOwner);
  OldPos := -1;

  CHint := TCalendarHint.Create(Self);
  With CHint Do
  Begin
    Parent := Self;
    Hide;
  End;

  FLunar := TLunar.Create;
  FTodayRec := FLunar.CaculateToday;

  FDate := Now;

  GridWidth := 45;
  GridHeight := 36;
  TopHeight := 25;
  FBorderColor := $808080;

  RectSize.Left := 1;
  RectSize.Top := 1;

  RectSize.Right := GridWidth * 7 + 6 + RectSize.Left;
  RectSize.Bottom := (GridHeight + 1) * 6 + TopHeight + RectSize.Top;

  Height := RectSize.Top + RectSize.Bottom;
  Width := RectSize.Right + RectSize.Left;

  FEnWeekName := True;
  FShowGrid := False;
  FShowMonth := True;
  FShowGrid := True;

  FWeekFont := TFont.Create;
  With FWeekFont Do
  Begin
    Size := 12;
    Style := [fsBold];
  End;

  FTodayColor := clLime;
  FWeekEndColor := clRed;
  FGridColor := $C0C0C0;

  FSolarFont := TFont.Create;
  With FSolarFont Do
  Begin
    Size := 12;
    Style := [fsBold];
  End;

  FLunarFont := TFont.Create;

  FBackFont := TFont.Create;
  With FBackFont Do
  Begin
    Color := clYellow;
    Size := 80;
    Style := [fsBold];
  End;

  Bmp := TBitmap.Create;
  With Bmp Do
  Begin
    Height := self.Height;
    Width := self.Width;
  End;

  SFont := TAAFontEx.Create(bmp.Canvas);
  SFont.Quality := aqHigh;
End;

Destructor TLunarPanel.Destroy;
Begin
  FLunar.Free;
  bmp.Free;

  SFont.Free;
  CHint.Free;

  FSolarFont.Free;
  FLunarFont.Free;
  FWeekFont.Free;
  FBackFont.Free;
  Inherited;
End;

Procedure TLunarPanel.InvalidateDate;
Begin
  UpdateDate(FDate);
End;

Procedure TLunarPanel.PaintBmp(ABmp: TBitmap);
Var
  tmpRect: TRect;
  J, h, w, k1, k2, tmp: Integer;
  sz, sz1: TSize;
  s1, s2, tmpStr: String;
  isToday, isWeekEnd, hasTerm: Boolean;
  Value: PLunarRec;

  Procedure DrawGrid;
  Var
    i, p: Integer;
  Begin // $c0c0c0
    With ABmp.Canvas Do
    Begin
      Pen.Color := FGridColor;
      p := RectSize.Left + GridWidth + 1;

      For i := 1 To 6 Do
      Begin
        MoveTo(p, RectSize.Top);
        LineTo(p, RectSize.Bottom);
        Inc(p, (GridWidth + 1));
      End;
      // draw head line
      p := TopHeight + RectSize.Top + 1;
      MoveTo(RectSize.Left, p);
      LineTo(RectSize.Right, p);

      For i := 1 To 5 Do
      Begin
        Inc(p, (GridHeight + 1));
        MoveTo(RectSize.Left, p);
        lineto(RectSize.Right, p);
      End;
    End;
  End;

  Procedure DrawBackground;
  Var
    s: String;
  Begin
    With ABmp.Canvas, ABmp Do
    Begin
      Brush.Color := clWhite;
      FillRect(ClientRect);

      If FShowMonth Then
      Begin
        Font.Assign(FBackFont);

        s := cellvalue(15)^.sSolarYear; // need change
        sz := sFont.TextExtent(s);

        h := (Height - 2 * sz.cy) Div 2;
        w := (Width - sz.cx) Div 2;

        SFont.TextOut(w, h, s);

        s := cellvalue(15)^.sSolarMonth; // need change
        sz := sFont.TextExtent(s);

        h := (Height - 2 * sz.cy) Div 2 + sz.cy;
        w := (Width - sz.cx) Div 2;

        SFont.TextOut(w, h, s);
      End;

      If FShowBorder Then
      Begin
        Brush.Color := FBorderColor;
        FrameRect(ClientRect);
      End;
    End;
  End;

  Procedure DrawWeekName(APos: Integer; ARect: TRect);
  Var
    s: String;
  Begin
    Case FEnWeekName Of
      True: s := WeekEnName(APos);
      False: s := WeekCnName(APos);
    End;

    sz := sFont.TextExtent(s);

    h := (TopHeight - sz.cy) Div 2;
    w := (GridWidth - sz.cx) Div 2;

    SFont.TextOut(ARect.Left + w, ARect.Top + h, s);
  End;

  Procedure DrawCal(ARect: TRect; Sas, Sal: String);
  Var
    tFs, tFl: TFont;
    aColor, aColor1: TColor;
  Begin
    tFs := FSolarFont;
    tFl := FLunarFont;

    aColor := tFs.Color;
    aColor1 := tfl.Color;

    If isWeekEnd Then
      tFs.Color := FWeekEndColor;

    If isToday Then
    Begin
      With ABmp.Canvas Do
      Begin
        Brush.Color := FTodayColor;
        FillRect(ARect);
        DrawFocusRect(ARect);
        Brush.Style := bsClear;
      End;
    End;

    If hasTerm Then
      tFl.Color := FTermColor;

    If FCalendarType In [liLunar, liLunarSolar] Then
    Begin
      Swap(Sas, Sal);
      SwapFont(tFs, tFl);
    End;

    ABmp.Canvas.Font.Assign(tFl);
    sz1 := sFont.TextExtent(sal);
    ABmp.Canvas.Font.Assign(tFs);
    sz := sFont.TextExtent(sas);

    Case FCalendarType Of
      liSolar, liLunar:
        Begin
          h := (GridHeight - sz.cy) Div 2;
          w := (GridWidth - sz.cx) Div 2;
          SFont.TextOut(ARect.Left + w, ARect.Top + h, sas);
        End;
      liSolarLunar, liLunarSolar:
        Begin

          h := (GridHeight - sz.cy - sz1.cy) Div 2;
          w := (GridWidth - sz.cx) Div 2;
          SFont.TextOut(ARect.Left + w, ARect.Top + h, sas);

          w := (GridWidth - sz1.cx) Div 2;
          h := h + sz.cy;
          ABmp.Canvas.Font.Assign(tFl);
          SFont.TextOut(ARect.Left + w, ARect.Top + h, sal);
        End;
    End;
    tFs.Color := aColor;
    tFl.Color := aColor1;
  End;

Begin
  ABmp.Canvas.Brush.Style := bsClear;
  DrawBackground;

  If FShowGrid Then
    DrawGrid;

  ABmp.Canvas.Brush.Style := bsClear;
  ABmp.Canvas.Font.Assign(FWeekFont);
  For j := 0 To 6 Do
  Begin
    tmpRect := Bounds(RectSize.Left + j * (GridWidth + 1), RectSize.Top,
      GridWidth, TopHeight);
    DrawWeekName(j + 1, tmpRect);
  End;

  k1 := 0;
  k2 := 0;
  ABmp.Canvas.Brush.Style := bsClear;
  For j := 1 To 42 Do
  Begin
    tmpRect := Bounds(RectSize.Left + k1 * (GridWidth + 1), RectSize.Top + 2 +
      TopHeight + k2 * (GridHeight + 1), GridWidth, GridHeight);

    Inc(k1);
    If k1 = 7 Then
    Begin
      k1 := 0;
      Inc(k2);
    End;

    Value := CellValue(j);

    tmp := Value^.iSolarDay;
    If tmp = 0 Then
      Continue;

    isToday := Value^.isToday;
    isWeekEnd := Value^.isWeekEnd;

    s1 := Value^.sSolarDay;
    s2 := Value^.sLunarDay;

    If Value^.iLunarDay = 1 Then
      s2 := Value^.sLunarMonth;

    tmpStr := value^.solarTerm;
    hasTerm := tmpStr <> '';
    If hasTerm Then
      s2 := tmpStr;

    DrawCal(tmpRect, s1, s2);
  End;
End;

Procedure TLunarPanel.SetBackFont(Value: TFont);
Begin
  FBackFont.Assign(Value);

  PaintBmp(Bmp);
  Invalidate;
End;

Procedure TLunarPanel.SetBorderColor(Value: TColor);
Begin
  If FBorderColor <> Value Then
  Begin
    FBorderColor := Value;
    PaintBmp(Bmp);
    Invalidate;
  End;
End;

Procedure TLunarPanel.SetCalendarType(Value: TCalendarType);
Begin
  If FCalendarType <> Value Then
  Begin
    FCalendarType := Value;
    PaintBmp(Bmp);
    Invalidate;
  End;
End;

Procedure TLunarPanel.SetEnWeekName(Value: Boolean);
Begin
  If FEnWeekName <> Value Then
  Begin
    FEnWeekName := Value;
    PaintBmp(Bmp);
    Invalidate;
  End;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久不卡网国产精品二区| 亚洲视频在线观看三级| 在线成人av网站| 久久午夜羞羞影院免费观看| 国产精品另类一区| 三级影片在线观看欧美日韩一区二区 | 久久精品国产亚洲a| 99久久久久久99| 日韩免费看的电影| 亚洲欧美另类图片小说| 精品中文av资源站在线观看| 91美女视频网站| 精品国产91洋老外米糕| 国产精品麻豆欧美日韩ww| 99久久国产综合色|国产精品| 亚洲精品欧美在线| 国产一区二区美女| 欧美精品日韩一本| 亚洲精品视频一区| 国产一本一道久久香蕉| 欧美日本一区二区三区四区| 日韩一区在线播放| voyeur盗摄精品| 久久久国产综合精品女国产盗摄| 亚洲线精品一区二区三区八戒| 国产91对白在线观看九色| 91精品视频网| 日韩va亚洲va欧美va久久| 色丁香久综合在线久综合在线观看| 中文字幕精品综合| 91网站在线播放| 欧美成人vr18sexvr| 一区二区三区在线观看国产| www.一区二区| 亚洲欧美在线视频观看| 91在线精品一区二区| 国产精品国产三级国产aⅴ中文| 国产成人av电影在线观看| 7777女厕盗摄久久久| 午夜精品久久久久久久蜜桃app| 911精品国产一区二区在线| 日本成人中文字幕在线视频| 日韩一区二区精品葵司在线| 日韩国产精品久久久久久亚洲| 99精品视频在线观看| 久久久www免费人成精品| 国产精品伊人色| 亚洲精品成人少妇| 欧美老年两性高潮| 国产精品一区专区| 亚洲欧美激情视频在线观看一区二区三区 | 欧美日韩国产123区| 久久国产视频网| 国产精品欧美一区喷水| 色欧美乱欧美15图片| 日本亚洲电影天堂| 中文字幕一区二区三区蜜月| 欧美二区在线观看| 欧美日韩免费一区二区三区视频| 亚洲黄色小说网站| 久久精品国产精品青草| 国产精品久久夜| 精品视频在线视频| 国产精品 日产精品 欧美精品| 亚洲欧美在线高清| 精品剧情在线观看| 欧美亚洲国产bt| 成人午夜视频在线观看| 久久精品国产免费| 亚洲最色的网站| 欧美激情一区二区| 精品国产乱码久久久久久夜甘婷婷| 不卡一区在线观看| 国产资源精品在线观看| 日韩二区三区四区| 亚洲午夜日本在线观看| 免费观看成人av| 国产精品天天看| 久久久亚洲精华液精华液精华液| 欧美日韩一区二区三区高清| 99久久免费精品高清特色大片| 精品综合免费视频观看| 日韩电影在线看| 七七婷婷婷婷精品国产| 日韩国产在线观看| 偷窥国产亚洲免费视频| 亚洲一区二区四区蜜桃| 亚洲私人影院在线观看| 亚洲午夜精品网| 亚洲同性gay激情无套| 亚洲青青青在线视频| 亚洲三级久久久| 亚洲国产美女搞黄色| 午夜影院在线观看欧美| 五月天欧美精品| 久久av老司机精品网站导航| 麻豆国产精品官网| 国产美女精品在线| 成人综合在线观看| 在线观看不卡一区| 4438x成人网最大色成网站| 日韩一级大片在线观看| 久久九九全国免费| 亚洲色图一区二区| 久久精品亚洲乱码伦伦中文| 成人免费视频视频在线观看免费| 岛国精品在线观看| 欧美性高清videossexo| 日韩欧美中文字幕精品| 日本一区二区免费在线| 亚洲女同ⅹxx女同tv| 日韩国产一二三区| 国产91精品一区二区麻豆网站| 色婷婷综合五月| 日韩美女视频一区二区在线观看| 日本一区二区免费在线| 亚洲成在线观看| 国产精品456| 欧美二区三区的天堂| 国产精品狼人久久影院观看方式| 天天综合日日夜夜精品| 成人av综合一区| 精品理论电影在线观看| 亚洲激情五月婷婷| 国产99久久精品| 亚洲欧美一区二区视频| 亚洲福利一区二区三区| 国产精品一区专区| 精品国产一区二区在线观看| 一区二区三区不卡视频| 丁香网亚洲国际| 久久婷婷国产综合精品青草| 亚洲乱码中文字幕| 色诱亚洲精品久久久久久| 欧美电视剧在线观看完整版| 亚洲国产精品人人做人人爽| 91玉足脚交白嫩脚丫在线播放| 国产三级精品三级在线专区| 乱中年女人伦av一区二区| 欧美在线一区二区| 亚洲一区二区三区爽爽爽爽爽| 不卡视频免费播放| 1000精品久久久久久久久| eeuss鲁一区二区三区| 国产精品理论在线观看| 国产拍揄自揄精品视频麻豆| 亚洲一区二区三区四区在线观看 | 亚洲一区二区美女| 欧美日精品一区视频| 亚洲一区二区欧美| 在线成人av网站| 男女男精品网站| 久久精品一二三| www.色精品| 午夜精品久久久久影视| 日韩免费观看高清完整版在线观看| 韩国女主播成人在线| 国产精品女同互慰在线看 | 欧美一区二区在线看| 久久国产福利国产秒拍| 国产喷白浆一区二区三区| 色婷婷av久久久久久久| 天堂在线亚洲视频| 在线看国产日韩| 国产日本一区二区| 色婷婷综合中文久久一本| 青青草97国产精品免费观看| 久久精品亚洲国产奇米99| 92精品国产成人观看免费| 国产精品99久久久久久有的能看| 国产精品女主播在线观看| 欧美美女一区二区| 国产999精品久久久久久绿帽| 亚洲国产一区二区在线播放| 久久综合九色综合97婷婷| 色综合久久久久网| 国产丶欧美丶日本不卡视频| 亚洲电影第三页| 一区二区三区四区在线| 日韩精品一区在线| 色88888久久久久久影院野外| 精品一区二区三区视频| 亚洲一区在线播放| 国产精品日日摸夜夜摸av| 日韩免费观看2025年上映的电影| 91麻豆蜜桃一区二区三区| 国产精品久久久久久久浪潮网站| 视频一区中文字幕国产| 国产精品理伦片| 亚洲国产精品传媒在线观看| 欧美一区二区在线看| 欧美三级中文字幕在线观看| 99re成人在线| 成人动漫一区二区| 国产高清久久久| 精品亚洲porn| 久久精品国产99国产| 蜜桃视频在线一区| 亚洲精品菠萝久久久久久久| 色综合色综合色综合色综合色综合|