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

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

?? tflatchecklistboxunit.pas

?? 貨代程序
?? PAS
?? 第 1 頁 / 共 2 頁
字號:
unit TFlatCheckListBoxUnit;

interface

{$I DFS.inc}

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, ExtCtrls, FlatUtilitys;

type
  TFlatCheckListBox = class(TCustomControl)
  private
    FSelected: Integer;
    FTransparent: TTransparentMode;
    FOnClickCheck: TNotifyEvent;
    cWheelMessage: Cardinal;
    scrollType: TScrollType;
    firstItem: Integer;
    maxItems: Integer;
    FSorted: Boolean;
    FItems: TStringList;
    FItemsRect: TList;
    FItemsHeight: Integer;
    FChecked: set of Byte;
    FScrollBars: Boolean;
    FUseAdvColors: Boolean;
    FAdvColorBorder: TAdvColors;
    FArrowColor: TColor;
    FCheckColor: TColor;
    FBorderColor: TColor;
    FItemsRectColor: TColor;
    FItemsSelectColor: TColor;
    procedure SetColors (Index: Integer; Value: TColor);
    procedure SetAdvColors (Index: Integer; Value: TAdvColors);
    procedure SetUseAdvColors (Value: Boolean);
    procedure SetSorted (Value: Boolean);
    procedure SetItems (Value: TStringList);
    procedure SetItemsRect;
    procedure SetItemsHeight (Value: Integer);
    function GetChecked (Index: Integer): Boolean;
    procedure SetChecked (Index: Integer; Value: Boolean);
    function GetSelCount: Integer;
    procedure SetScrollBars (Value: Boolean);
    function GetItemIndex: Integer;
    procedure SetItemIndex (Value: Integer);
    procedure WMSize (var Message: TWMSize); message WM_SIZE;
    procedure WMMove (var Message: TWMMove); message WM_MOVE;
    procedure CMEnabledChanged (var Message: TMessage); message CM_ENABLEDCHANGED;
    procedure CMSysColorChange (var Message: TMessage); message CM_SYSCOLORCHANGE;
    procedure CMParentColorChanged (var Message: TWMNoParams); message CM_PARENTCOLORCHANGED;
    procedure ScrollTimerHandler (Sender: TObject);
    procedure ItemsChanged (Sender: TObject);
    procedure WMSetFocus (var Message: TWMSetFocus); message WM_SETFOCUS;
    procedure WMKillFocus (var Message: TWMKillFocus); message WM_KILLFOCUS;
    procedure CNKeyDown (var Message: TWMKeyDown); message CN_KEYDOWN;
    procedure WMMouseWheel (var Message: TMessage); message WM_MOUSEWHEEL;
    procedure SetTransparent (const Value: TTransparentMode);
  protected
    procedure CalcAdvColors;
    procedure DrawCheckRect (canvas: TCanvas; start: TPoint; checked: Boolean);
    procedure DrawScrollBar (canvas: TCanvas);
    procedure Paint; override;
    procedure Loaded; override;
    procedure MouseDown (Button: TMouseButton; Shift: TShiftState; X, Y: Integer); override;
    procedure MouseUp (Button: TMouseButton; Shift: TShiftState; X, Y: Integer); override;
    procedure WndProc (var Message: TMessage); override;
   {$IFDEF DFS_COMPILER_4_UP}
    procedure SetBiDiMode(Value: TBiDiMode); override;
   {$ENDIF}
  public
    constructor Create (AOwner: TComponent); override;
    destructor Destroy; override;
    property Checked [Index: Integer]: Boolean read GetChecked write SetChecked;
    property SelCount: Integer read GetSelCount;
    procedure Clear;
    property ItemIndex: Integer read GetItemIndex write SetItemIndex;
  published
    property Items: TStringList read FItems write SetItems;
    property ItemHeight: Integer read FItemsHeight write SetItemsHeight default 17;
    property ScrollBars: Boolean read FScrollBars write SetScrollBars default false;
    property Color default $00E1EAEB;
    property ColorArrow: TColor index 0 read FArrowColor write SetColors default clBlack;
    property ColorBorder: TColor index 1 read FBorderColor write SetColors default $008396A0;
    property ColorItemsRect: TColor index 2 read FItemsRectColor write SetColors default clWhite;
    property ColorItemsSelect: TColor index 3 read FItemsSelectColor write SetColors default $009CDEF7;
    property ColorCheck: TColor index 4 read FCheckColor write SetColors default clBlack;
    property AdvColorBorder: TAdvColors index 0 read FAdvColorBorder write SetAdvColors default 40;
    property UseAdvColors: Boolean read FUseAdvColors write SetUseAdvColors default false;
    property Sorted: Boolean read FSorted write SetSorted default false;
    property TransparentMode: TTransparentMode read FTransparent write SetTransparent default tmNone;
    property Align;
    property Font;
    property ParentFont;
    property ParentColor;
    property ParentShowHint;
    property Enabled;
    property Visible;
    property PopupMenu;
    property ShowHint;

    property OnClick;
    property OnClickCheck: TNotifyEvent read FOnClickCheck write FOnClickCheck;
    property OnMouseMove;
    property OnMouseDown;
    property OnMouseUp;
   {$IFDEF DFS_COMPILER_4_UP}
    property Anchors;
    property BiDiMode write SetBidiMode;
    property Constraints;
    property DragKind;
    property ParentBiDiMode;
    property OnEndDock;
    property OnStartDock;
   {$ENDIF}
  end;

implementation

var
  ScrollTimer: TTimer = nil;

const
  FTimerInterval = 600; 
  FScrollSpeed = 100;

constructor TFlatCheckListBox.Create (AOwner: TComponent);
begin
  inherited;
  if ScrollTimer = nil then
  begin
    ScrollTimer := TTimer.Create(nil);
    ScrollTimer.Enabled := False;
    ScrollTimer.Interval := FTimerInterval;
  end;
  ControlStyle := ControlStyle + [csOpaque];
  SetBounds(Left, Top, 137, 99);
  FItems := TStringList.Create;
  FItemsRect := TList.Create;
  FItemsHeight := 17;

  TStringList(FItems).OnChange := ItemsChanged;

  FScrollBars := false;
  firstItem := 0;
  FArrowColor := clBlack;
  FBorderColor := $008396A0;
  FItemsRectColor := clWhite;
  FItemsSelectColor := $009CDEF7;
  FCheckColor := clBlack;
  ParentColor := True;
  ParentFont := True;
  Enabled := true;
  Visible := true;
  FUseAdvColors := false;
  FAdvColorBorder := 40;
  FSorted := false;
  FTransparent := tmNone;
  FSelected := -1;
  cWheelMessage:= RegisterWindowMessage(MSH_MOUSEWHEEL);
end;

destructor TFlatCheckListBox.Destroy;
var
  counter: Integer;
begin
  ScrollTimer.Free;
  ScrollTimer := nil;
  FItems.Free;
  for counter := 0 to FItemsRect.Count - 1 do
    Dispose(FItemsRect.Items[counter]);
  FItemsRect.Free;
  inherited;
end;

procedure TFlatCheckListBox.WndProc (var Message: TMessage);
begin
  if Message.Msg = cWheelMessage then
  begin
    SendMessage (Self.Handle, WM_MOUSEWHEEL, Message.wParam, Message.lParam);
  end;
  inherited;
end;

procedure TFlatCheckListBox.WMMouseWheel (var Message: TMessage);
var
  fScrollLines: Integer;
begin
  if not(csDesigning in ComponentState) then
  begin
    SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0, @fScrollLines, 0);

    if (fScrollLines = 0) then
      fScrollLines := maxItems;

    if ShortInt(Message.WParamHi) = -WHEEL_DELTA then
      if firstItem + maxItems + fScrollLines <= FItems.Count then
        Inc(firstItem, fScrollLines)
      else
        if FItems.Count - maxItems < 0 then
          firstItem := 0
        else
          firstItem := FItems.Count - maxItems
    else
      if ShortInt(Message.WParamHi) = WHEEL_DELTA then
        if firstItem - fScrollLines < 0 then
          firstItem := 0
        else
          dec(firstItem, fScrollLines);
    Invalidate;
  end;
end;

procedure TFlatCheckListBox.ItemsChanged (Sender: TObject);
begin
  if Enabled then
  begin
    FChecked := FChecked - [0..High(Byte)];
    Invalidate;
  end;
end;

procedure TFlatCheckListBox.SetColors (Index: Integer; Value: TColor);
begin
  case Index of
    0: FArrowColor := Value;
    1: FBorderColor := Value;
    2: FItemsRectColor := Value;
    3: FItemsSelectColor := Value;
    4: FCheckColor := Value;
  end;
  Invalidate;       
end;

procedure TFlatCheckListBox.CalcAdvColors;
begin
  if FUseAdvColors then
  begin
    FBorderColor := CalcAdvancedColor(Color, FBorderColor, FAdvColorBorder, darken);
  end;
end;

procedure TFlatCheckListBox.SetAdvColors (Index: Integer; Value: TAdvColors);
begin
  case Index of
    0: FAdvColorBorder := Value;
  end;
  CalcAdvColors;
  Invalidate;
end;

procedure TFlatCheckListBox.SetUseAdvColors (Value: Boolean);
begin
  if Value <> FUseAdvColors then
  begin
    FUseAdvColors := Value;
    ParentColor := Value;
    CalcAdvColors;
    Invalidate;
  end;
end;

procedure TFlatCheckListBox.SetSorted (Value: Boolean);
begin
  if Value <> FSorted then
  begin
    FSorted := Value;
    FItems.Sorted := Value;
    FChecked := FChecked - [0..High(Byte)];
    Invalidate;
  end;
end;

procedure TFlatCheckListBox.SetItems (Value: TStringList);
var
  counter: Integer;
begin
  if Value.Count - 1 > High(Byte) then
    Exit;

  // delete all spaces at left and right
  for counter := 0 to Value.Count - 1 do
    Value[counter] := Trim(Value[counter]);

  FItems.Assign(Value);

  Invalidate;
end;

procedure TFlatCheckListBox.SetItemsRect;
var
  counter: Integer;
  ItemRect: ^TRect;
  position: TPoint;
begin
  // Delete all curent Rects
  FItemsRect.Clear;

  // calculate the maximum items to draw
  if ScrollBars then
    maxItems := (Height - 24) div (FItemsHeight + 2)
  else
    maxItems := (Height - 4) div (FItemsHeight + 2);

  // set left/top position for the the first item
  if ScrollBars then
   position := Point(ClientRect.left + 3, ClientRect.top + 13)
  else
    position := Point(ClientRect.left + 3, ClientRect.top + 3);

  for counter := 0 to maxItems - 1 do
  begin
    // create a new Item-Rect
    New(ItemRect);
    // calculate the Item-Rect
    ItemRect^ := Rect(position.x, position.y, ClientRect.Right - 3, position.y + FItemsHeight);
    // set left/top position for next Item-Rect
    position := Point(position.x, position.y + FItemsHeight + 2);
    // add the Item-Rect to the Items-Rect-List
    FItemsRect.Add(ItemRect);
  end;
  Invalidate;
end;

procedure TFlatCheckListBox.SetItemsHeight (Value: Integer);
begin
  if Value < 1 then
    Value := 1;

  FItemsHeight := Value;

  if not (csLoading in ComponentState) then
    if ScrollBars then
      SetBounds(Left, Top, Width, maxItems * (FItemsHeight + 2) + 24)
    else
      SetBounds(Left, Top, Width, maxItems * (FItemsHeight + 2) + 4);
      
  SetItemsRect;
end;

function TFlatCheckListBox.GetChecked (Index: Integer): Boolean;
begin
  Result := Index in FChecked;
end;

procedure TFlatCheckListBox.SetChecked (Index: Integer; Value: Boolean);
begin
  if Value then
    Include(FChecked, Index)
  else
    Exclude(FChecked, Index);
  Invalidate;
end;

{$IFDEF DFS_COMPILER_4_UP}
procedure TFlatCheckListBox.SetBiDiMode(Value: TBiDiMode);
begin
  inherited;
  Invalidate;
end;
{$ENDIF}

function TFlatCheckListBox.GetSelCount: Integer;
var
  counter: Integer;
begin
  Result := 0;
  for counter := 0 to High(Byte) do
    if counter in FChecked then
      Inc(Result);
end;

procedure TFlatCheckListBox.SetScrollBars (Value: Boolean);
begin
  if FScrollBars <> Value then
  begin
    FScrollBars := Value;
    if not (csLoading in ComponentState) then
      if Value then
        Height := Height + 20
      else
        Height := Height - 20;
    SetItemsRect;
  end;
end;

procedure TFlatCheckListBox.DrawScrollBar (canvas: TCanvas);
var
  x, y: Integer;
begin
  // Draw the ScrollBar background
  canvas.Brush.Color := Color;
  canvas.FillRect(Rect(ClientRect.Left, ClientRect.Top, ClientRect.Right, ClientRect.Top + 11));
  canvas.FillRect(Rect(ClientRect.Left, ClientRect.Bottom - 11, ClientRect.Right, ClientRect.Bottom));

  // Draw the ScrollBar border
  canvas.Brush.Color := FBorderColor;
  canvas.FrameRect(Rect(ClientRect.Left, ClientRect.Top, ClientRect.Right, ClientRect.Top + 11));
  canvas.FrameRect(Rect(ClientRect.Left, ClientRect.Bottom - 11, ClientRect.Right, ClientRect.Bottom));

  // Draw the up arrow
  x := (ClientRect.Right - ClientRect.Left) div 2 - 6;
  y := ClientRect.Top + 4;

  if (firstItem <> 0) and Enabled then
  begin
    canvas.Brush.Color := FArrowColor;
    canvas.Pen.Color := FArrowColor;
    canvas.Polygon([Point(x + 4, y + 2), Point(x + 8, y + 2), Point(x + 6, y)]);
  end
  else
  begin
    canvas.Brush.Color := clWhite;
    canvas.Pen.Color := clWhite;
    Inc(x); Inc(y);
    canvas.Polygon([Point(x + 4, y + 2), Point(x + 8, y + 2), Point(x + 6, y)]);
    Dec(x); Dec(y);
    canvas.Brush.Color := clGray;
    canvas.Pen.Color := clGray;
    canvas.Polygon([Point(x + 4, y + 2), Point(x + 8, y + 2), Point(x + 6, y)]);
  end;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
白白色 亚洲乱淫| 一区二区三区蜜桃| 9i在线看片成人免费| 五月开心婷婷久久| 日韩免费观看高清完整版| 免费一级片91| 综合av第一页| 精品毛片乱码1区2区3区| 色婷婷综合久色| 国产麻豆精品久久一二三| 一区二区三区资源| 国产精品美女久久福利网站| 日韩亚洲欧美中文三级| 在线观看日韩国产| 国产1区2区3区精品美女| 免费观看日韩av| 婷婷国产v国产偷v亚洲高清| 亚洲欧美偷拍卡通变态| 久久亚洲精精品中文字幕早川悠里| 欧美日韩中文另类| 91首页免费视频| 成人av电影免费观看| 麻豆精品一区二区| 亚洲国产成人av网| 午夜精品免费在线| 亚洲一区二区三区在线播放| 亚洲色图在线看| |精品福利一区二区三区| 国产精品色婷婷| 国产午夜精品一区二区三区视频 | 国产精品久久久久7777按摩| 亚洲精品一区二区三区四区高清 | 国产精品中文有码| 国产乱人伦偷精品视频免下载| 精品制服美女丁香| 国产精品中文字幕日韩精品| 伊人夜夜躁av伊人久久| 欧美一区二区在线免费观看| 欧美一级理论片| 久久综合中文字幕| 国产精品久久久久久亚洲毛片 | 欧美日韩亚州综合| 日韩午夜激情电影| 中文字幕精品—区二区四季| 国产精品国产三级国产aⅴ中文| 亚洲图片你懂的| 午夜精品久久久久久久久久| 韩国成人在线视频| 色综合色综合色综合色综合色综合| 在线观看亚洲精品视频| 精品国产免费人成电影在线观看四季 | 99re热这里只有精品视频| 欧美日韩激情一区二区| 欧美成人精品1314www| 国产精品免费视频观看| 午夜精品久久一牛影视| 国产不卡免费视频| 欧美日韩激情一区| 亚洲精品在线观| 亚州成人在线电影| 成人国产亚洲欧美成人综合网| 欧美伊人久久久久久午夜久久久久| 精品国产乱码久久久久久久久 | 亚洲欧美视频一区| 国产在线精品视频| 欧美日韩在线三区| 亚洲一区二三区| 亚洲精品自拍动漫在线| 蜜臀va亚洲va欧美va天堂| 欧美亚洲国产bt| 亚洲欧洲日韩一区二区三区| 麻豆91精品视频| 91麻豆精品国产91久久久资源速度 | av电影在线观看一区| 久久久亚洲精品一区二区三区| 午夜欧美电影在线观看| 欧美日韩国产影片| 三级一区在线视频先锋| 欧美精品v国产精品v日韩精品| 亚洲九九爱视频| 欧洲精品一区二区| 香蕉成人伊视频在线观看| 成人a级免费电影| 国产精品乱码妇女bbbb| 成人三级在线视频| 国产日韩视频一区二区三区| 男人的j进女人的j一区| 国产91精品久久久久久久网曝门| 久久久久久久久久美女| 国产一区二区视频在线播放| 精品国产91久久久久久久妲己| 日本系列欧美系列| 欧美一区二区三区在| 日本不卡一二三| 欧美电影免费观看高清完整版| 国产成人综合亚洲91猫咪| 久久久午夜精品理论片中文字幕| 国产毛片一区二区| 中文字幕一区二区三区在线播放| 成人avav在线| 一区二区三区日韩欧美精品| 欧美日韩一区二区三区四区五区 | 日韩一区欧美一区| 97久久超碰国产精品电影| 日本中文字幕一区二区有限公司| 日韩一级片网站| 国产自产v一区二区三区c| 中文av一区特黄| 欧美视频自拍偷拍| 国产在线国偷精品免费看| 久久久综合视频| 欧美日本一道本在线视频| 九九视频精品免费| 亚洲男人天堂av网| 2020国产精品自拍| 欧美性大战久久| 国产91露脸合集magnet| 一区二区三区欧美日| 精品国产伦一区二区三区免费| 99v久久综合狠狠综合久久| 亚洲va韩国va欧美va| 中文字幕av一区二区三区免费看 | 99久久综合99久久综合网站| 蜜桃av噜噜一区二区三区小说| 一区二区三区av电影 | 精品美女一区二区| 91精品国产综合久久精品图片| 欧美视频在线一区| 91一区在线观看| 91年精品国产| 色先锋久久av资源部| 色综合久久精品| 一本色道久久综合亚洲精品按摩| 成人午夜激情视频| 国产成人h网站| 国产精品资源在线看| 国产一区二区免费在线| 久久精品国产99国产| 奇米精品一区二区三区在线观看| 日精品一区二区三区| 日韩高清在线电影| 蜜桃久久久久久| 国产在线一区二区综合免费视频| 蜜臀久久久久久久| 韩日精品视频一区| www.性欧美| 欧美午夜精品免费| 欧美精品在欧美一区二区少妇| 91精品在线观看入口| 久久网站最新地址| 亚洲一线二线三线视频| 蜜臀av性久久久久蜜臀aⅴ流畅| 蜜臀久久久久久久| 国产91在线观看丝袜| 色婷婷国产精品| 欧美日韩免费电影| 91.成人天堂一区| 国产亚洲精品资源在线26u| 国产日韩精品视频一区| 日本视频中文字幕一区二区三区| 国产精品国产三级国产三级人妇 | 欧美夫妻性生活| 欧美a一区二区| 亚洲一区二区在线观看视频| 亚洲欧洲av另类| 日韩美女在线视频| 亚洲人快播电影网| 日韩午夜激情视频| 不卡视频一二三| 精品无人码麻豆乱码1区2区| |精品福利一区二区三区| 日韩一级免费一区| 风间由美一区二区三区在线观看 | 一区二区成人在线观看| 中文一区二区完整视频在线观看| 中文字幕第一区二区| 亚洲国产精品99久久久久久久久| 欧美激情中文不卡| 亚洲精品乱码久久久久久黑人 | 成人一级片网址| 在线播放日韩导航| 久久久三级国产网站| 免费观看成人av| 欧美一级电影网站| 亚洲v中文字幕| 欧美精选一区二区| 国产精品情趣视频| 日韩二区三区在线观看| 成人av网站免费| 国产人成亚洲第一网站在线播放| 免费观看久久久4p| 欧美一级生活片| 国产精品99久| 欧美精品一区二区三区久久久| 国产精品久久久久9999吃药| gogo大胆日本视频一区| 亚洲视频网在线直播| 91国产福利在线| 奇米影视在线99精品| 久久影院视频免费|