WinSubClass.pas
上传用户:xjwsee
上传日期:2008-08-02
资源大小:796k
文件大小:278k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1.       if not isunicode then findbtn;
  2.       hList:=0;
  3.    end;
  4. end;
  5. {Procedure TSkinCombox.Init(sf:Tcomponent;sd:TSkinData;acanvas:TCanvas;acolor:boolean=false);
  6. begin
  7.    if inited then exit;
  8.    inherited init(sf,sd,acanvas,acolor);
  9.    dwStyle := GetWindowLong( hWnd, GWL_STYLE );
  10.    vb:=nil;
  11.    if true then begin
  12.       fillchar(info,sizeof(info),#0);
  13.       info.cbSize:=sizeof(tagCOMBOBOXINFO);
  14.       if GetComboBoxInfo(hwnd,info) then begin
  15.          hList:=info.hwndList ;
  16.          dwStyle := GetWindowLong( hlist, GWL_STYLE );
  17.          if not ispopupwindow(hlist) and (dwstyle and ws_child > 0) then begin
  18.             vb:=TSkinScrollbarH.Create(owner);
  19.             vb.Inithwnd(hlist,sd,nil,skinform);
  20.          end;
  21.       end;
  22.    end else begin
  23.       findbtn;
  24.       hList:=0;
  25.    end;
  26. end; }
  27. procedure TSkinCombox.ButtonProc(var Message: TMessage);
  28. var s:string;
  29. begin
  30.    message.result:=CallWindowProc(FBtnPrevWndProc,hbtn,message.msg,
  31.                     message.WParam,message.LParam);
  32.    case message.msg of
  33.     WM_LBUTTONDOWN, WM_LBUTTONDBLCLK:
  34.       begin
  35.        state:=state+[scDown];
  36.        invalidate;
  37.       end;
  38.     wm_paint: begin
  39.            paintcontrol;
  40.       end;
  41.     WM_LBUTTONUP:
  42.       begin
  43.        state:=state-[scDown];
  44.        invalidate;
  45.       end;
  46.     end;
  47. end;
  48. procedure TSkinCombox.SkinDropList;
  49. begin
  50.  {$IFDEF demo}
  51.  {$else}
  52.    dwStyle := GetWindowLong( hWnd, GWL_STYLE );
  53.    if  ((dwStyle and CBS_DROPDOWN)=CBS_DROPDOWN) then begin
  54.       fillchar(info,sizeof(info),#0);
  55.       info.cbSize:=sizeof(tagCOMBOBOXINFO);
  56.       if (@pGetComboBoxInfo<>nil) and pGetComboBoxInfo(hwnd,info) then begin
  57.          hList:=info.hwndList ;
  58.          db:=TComboxScrollBar.Create(owner);
  59.          db.Inithwnd(hlist,fsd,nil,skinform);
  60.       end else begin
  61.          db:=nil;
  62.       end;
  63.    end;
  64.  {$endif}
  65. end;
  66. procedure TSkinCombox.DeleteDropList;
  67. begin
  68.     db.Unsubclass;
  69.     db.Free;
  70.     db:=nil;
  71. end;
  72. procedure TSkinCombox.CNCommand(var Message: TWMCommand);
  73. begin
  74.   case Message.NotifyCode of
  75.     CBN_DROPDOWN:  begin
  76.         isDrop:= true;
  77. //        fsd.DoDebug('CBN_DROPDOWN');
  78. //        SkinDropList;
  79.       end;
  80.     CBN_CLOSEUP: begin
  81.         isDrop:= false;
  82. //        fsd.DoDebug('CBN_DROPUP');
  83. //        DeleteDropList;
  84.       end;
  85.    end;
  86. end;
  87. {type
  88.   TAcCombo = class(TCustomCombo);
  89. procedure TSkinCombox.FindScrollbar;
  90. var barinfo : tagScrollBarInfo;
  91.     b:boolean;
  92.     r:TRect;
  93.     ahwnd:Thandle;
  94. begin
  95.    ahwnd:=TAcCombo(control).ListHandle;
  96.    fillchar(barinfo,sizeof(barinfo),#0);
  97.    barinfo.cbSize := SizeOf(barinfo);
  98.    b:= GetScrollBarInfo(hlist, OBJID_VSCROLL, barinfo);
  99.    if b then
  100.      r:= barinfo.rcScrollBar;
  101. end;}
  102. procedure TSkinCombox.AfterProc(var Message: TMessage);
  103. var s:string;
  104.     p:Tpoint;
  105. begin
  106.   {$IFDEF combobox}
  107.     s:= MsgtoStr(message);
  108.     if s<>''  then skinaddlog('****Combobox '+s);
  109.   {$ENDIF}
  110.     case message.msg of
  111. {    CM_MOUSEENTER:
  112.       if Enabled then begin
  113.         state:=state+[scMouseIn];
  114. //        invalidate;
  115.       end;}
  116.     CM_MOUSELEAVE:
  117.       if (scMouseIn in state) then begin
  118.         state:=state-[scMouseIn];
  119.         invalidate;
  120.       end;
  121.     WM_KILLFOCUS,WM_SETFOCUS:;
  122.     WM_MouseMove: begin
  123.        P := point( Message.LParamLo, Message.LParamhi);
  124.        if (scMouseIn in state) then begin
  125.           if not PtInRect(rbtn,p) and  Enabled then begin
  126.             state:=state-[scMouseIn];
  127.             invalidate;
  128.           end;
  129.        end else if PtInRect(rbtn,p) and Enabled then begin
  130.             state:=state+[scMouseIn];
  131.             invalidate;
  132.        end;
  133.       end;
  134.     WM_LBUTTONDOWN, WM_LBUTTONDBLCLK:
  135.       begin
  136. //       vb.AttachHwnd(self,hlist,sb_Vert);
  137. //       vb.Invalidate;
  138.        state:=state+[scDown];
  139.        invalidate;
  140.       end;
  141.     WM_NCPaint:  invalidate;
  142.     WM_DRAWITEM: invalidate;
  143.     WM_LBUTTONUP:
  144.       begin
  145.        state:=state-[scDown];
  146.        invalidate;
  147.       end;
  148.     CN_COMMAND:CNCommand(TWMCommand(message));
  149. {    WM_CTLCOLORLISTBOX : begin
  150.          if hlist<>message.LParam then begin
  151.              hlist:=message.LParam;
  152.              skinaddlog('******* skin combobox');
  153.           //   box.Inithwnd(hlist,fsd,fcanvas,skinform);
  154.          end;
  155.       end;}
  156.     else inherited AfterProc(message);
  157.     end;
  158. end;
  159. procedure TSkinCombox.DrawSkinMap3( dc:HDC; rc:TRect;
  160.        bmp:Tbitmap;I,N:integer);
  161. var temp:Tbitmap;
  162.     w,h,x:integer;
  163. begin
  164.     temp:=Tbitmap.create;
  165.     w:=bmp.width div n;
  166.     h:=bmp.height;
  167. //    temp.height:=rc.bottom-rc.top;
  168.     temp.height:=h;
  169.     temp.width:=rc.right-rc.left;
  170.     x:=(i-1)*w;
  171.     temp.canvas.copyrect( rect(0,0,rc.right-rc.left,h),
  172.              bmp.canvas,rect(x,0,x+w,h));
  173.     DrawTranmap(DC,rc,temp);
  174.     temp.free;
  175. end;
  176. procedure TSkinCombox.DrawBorder( dc:HDC; rc:TRect);
  177. var r,r1:Trect;
  178.     acolor:Tcolor;
  179.     c1:Tcolor;
  180.     b1,b2:HBRUSH;
  181.     s:string;
  182.     Exstyle:dword;
  183. begin
  184.    getclientrect(hwnd,r1);
  185.    if (r.right=(r1.right-r1.left)) or
  186.       (r.bottom=(r1.bottom-r1.top)) then exit;
  187.    r1:=rc;
  188.    B1:=CreateSolidBrush(fsd.colors[csButtonShadow]);
  189.    FrameRect(dc,r1,b1);
  190.    c1:=clwhite;
  191.    B2:=CreateSolidBrush(c1);
  192.    InflateRect(r1,-1,-1);
  193.    FrameRect(dc,r1,b2);
  194.    deleteobject(B2);
  195.    deleteobject(B1);
  196. end;
  197. procedure TSkinCombox.DrawArrow( dc:HDC; rc:TRect;i:integer);
  198. var w:integer;
  199.     r1,r2:Trect;
  200. begin
  201. //    w:= fsd.comboxarrow.Map.Width div fsd.comboxarrow.frame;
  202.     GetWindowRect( hbtn, r1 );
  203.     GetWindowRect( hwnd, r2 );
  204.     offsetrect(r1,-r2.left,-r2.Top);
  205. //    r1:=Rect(0,0,width,control.Height-4);
  206. //    r2:=Rect((i-1)*w,0,i*w,fsd.comboxarrow.Map.height);
  207.     FillColor( dc,r1,fsd.colors[csbuttonface]);
  208.     DrawSkinMap1(dc,r1,fsd.comboxarrow.map,i,fsd.comboxarrow.frame);
  209. end;
  210. procedure TSkinCombox.DrawControl(dc:HDC; rc:TRect);
  211. var cs,w,h,i,m,w1,h1,rg:integer;
  212.     r,r1,r2:Trect;
  213. begin
  214.    if (fsd.combox=nil) or (fsd.combox.map.empty) then exit;
  215. //   if isdrop then findscrollbar;
  216.    dwStyle := GetWindowLong( hWnd, GWL_STYLE );
  217.    ExStyle := GetWindowLong( hWnd, GWL_ExSTYLE );
  218.    fillchar(info,sizeof(info),#0);
  219.    info.cbSize:=sizeof(tagCOMBOBOXINFO);
  220.    if @pGetComboBoxInfo<>nil then begin
  221.      pGetComboBoxInfo(hwnd,info);
  222.      rbtn:=info.rcButton;
  223.      if (info.stateButton and STATE_SYSTEM_INVISIBLE) = STATE_SYSTEM_INVISIBLE then begin
  224.     //  drawedit(dc,rc);
  225.         exit;
  226.      end;
  227.    end;
  228.    if fsd.combox.style=1 then begin
  229.       DrawControl1( dc,rc);
  230.       exit;
  231.    end;
  232.    r:=rc;
  233.    offsetrect(r,-r.left,-r.Top);
  234.    r1:=r;
  235.    r2:=r;
  236.    Focused := (GetFocus= hWnd);
  237.    enabled := (dwstyle and WS_DISABLED)=0;
  238.    i:=1;
  239.    if focused then i:=4;
  240.    if (scDown in state)  then i:=2
  241.    else if (scMouseIn in state) then i:=4;
  242.    if not enabled then i:=3;
  243.    w1 := GetSystemMetrics( SM_CXHSCROLL );
  244.    if  not HasButton then begin
  245.       if fsd.combox.style=2 then begin
  246.          if (exstyle and WS_EX_LEFTSCROLLBAR) = 0 then
  247.            DrawRect2( dc,r2,fsd.combox.map,fsd.combox.r,i,fsd.ComBox.frame,1)
  248.          else if Assigned(fsd.Comboxborder) then begin
  249.         //r2.right:=r.left+w1+2;
  250.            DrawRect2( dc,r2,fsd.Comboxborder.map,fsd.Comboxborder.r,i,fsd.Comboxborder.frame,1);
  251.          end;
  252.          exit;
  253.       end;
  254.    end else begin
  255.       DrawBorder(dc,rc);
  256.       DrawArrow( dc,rc,i);
  257.       exit;
  258.    end;
  259.    if (exstyle and WS_EX_LEFTSCROLLBAR) = 0 then begin
  260.        rg:=ExcludeClipRect(dc,r1.left+2,r1.top+2,r1.right-w1-4,r1.bottom-2);
  261.        r2.Left:=r.Right-w1-2;
  262.        r1:=r2;
  263.        r1.Right:=r.Right-2;
  264.        DrawSkinMap( dc,r,fsd.Comboxborder,i,fsd.Comboxborder.frame);
  265.        DrawSkinMap2( dc,r2,fsd.combox.map,i,fsd.ComBox.frame);
  266.    end else begin
  267.        rg:=ExcludeClipRect(dc,r.left+w1+4,r.top+2,r.right-2,r.bottom-2);
  268.        r2.right:=r.left+w1+2;
  269.        r1:=r2;
  270.        r1.left:= 2;
  271.        r1.Right:=r1.left+w1;
  272.        DrawSkinMap( dc,r,fsd.Comboxborder,i,fsd.Comboxborder.frame);
  273.        DrawSkinMap2( dc,r2,fsd.combox.maskmap,i,fsd.ComBox.frame);
  274.    end;
  275.    rbtn:=r2;
  276.    if (fsd.ExtraImages<>nil) and (not fsd.ExtraImages.map.empty) then begin
  277.       w:= fsd.ExtraImages.map.width div fsd.ExtraImages.frame;
  278.       h:= fsd.ExtraImages.map.height;
  279.       r1.left:=r1.left+(r1.right-r1.left-w) div 2;
  280.       r1.top:=r1.top+(r1.bottom-r1.top-h) div 2;
  281.       r1.right:=r1.left+w;
  282.       r1.bottom:=r1.top+h;
  283.       DrawSkinMap1( dc,r1,fsd.ExtraImages.map,i,fsd.ExtraImages.frame);
  284. //       fcanvas.copyrect(r1,fsd.ExtraImages.map.canvas,rect(0,0,w1,h1));
  285. //      DrawSkinMap2( dc,r1,fsd.ExtraImages.map,i,fsd.ExtraImages.frame);
  286.    end;
  287. //   ExcludeClipRect(dc,0,0,0,0);
  288. //   deleteobject(rg);
  289. //   SetWindowRgn(hwnd,0,false);
  290. end;
  291. procedure TSkinCombox.DrawEdit( dc:HDC; rc:TRect);
  292. var r1:Trect;
  293.     c1:Tcolor;
  294.     b1,b2:HBRUSH;
  295. begin
  296.    r1:=rc;
  297.    B1:=CreateSolidBrush(fsd.colors[csButtonShadow]);
  298.    FrameRect(dc,r1,b1);
  299.    deleteobject(B1);
  300.    c1:=clwhite;
  301.    B2:=CreateSolidBrush(c1);
  302.    InflateRect(r1,-1,-1);
  303.    FrameRect(dc,r1,b2);
  304.    deleteobject(B2);
  305. end;
  306. procedure TSkinCombox.DrawControl1( dc:HDC; rc:TRect);
  307. var w,w1,h,h1,i:integer;
  308.     r,r1,r2:Trect;
  309.     c:Tcolor;
  310.     temp:Tbitmap;
  311.     b:HBRUSH;
  312. begin
  313.    r:=rc;
  314.    offsetrect(r,-r.left,-r.Top);
  315.    Focused := (GetFocus= hWnd);
  316.    enabled := (dwStyle and WS_DISABLED)=0;
  317.    i:=1;
  318.    if not enabled then i:=3;
  319.    if focused then i:=4;
  320.    if (scDown in state)  then i:=2
  321.    else if (scMouseIn in state) then i:=4;
  322.    r1:=r;
  323.    w1:= fsd.combox.map.width div fsd.combox.frame;
  324.    h:=  fsd.combox.map.height;
  325.    h1:= GetSystemMetrics(SM_CYVTHUMB);
  326.    fcanvas.handle:=dc;
  327.    c:=fcanvas.brush.color;
  328.    fcanvas.brush.handle:=GetCurrentObject(dc,OBJ_BRUSH);
  329.    InflateRect(R1, -1, -1);
  330.    fcanvas.FrameRect(R1);
  331.    InflateRect(R1, -1, -1);
  332.    //background
  333.    r2:=r1;
  334.    if (exstyle and WS_EX_LEFTSCROLLBAR) = 0 then
  335.         r1.left := r1.right- h1
  336.    else
  337.       r1.Right := r1.Left+ h1;
  338.    fcanvas.fillRect(R1);
  339.    //do not strech button
  340.    r1:=r2;
  341.    if (exstyle and WS_EX_LEFTSCROLLBAR) = 0 then
  342.         r1.left := r1.right - w1//GetSystemMetrics(SM_CYVTHUMB)
  343.    else
  344.       r1.Right := r1.Left + w1;//GetSystemMetrics(SM_CYVTHUMB);
  345.    if (h<h1) then r1.Bottom:=r1.Top+h;
  346.    c:=fcanvas.brush.color;
  347.    fcanvas.brush.color:=fsd.colors[csButtonShadow];
  348.    fcanvas.FrameRect(R);
  349.    fcanvas.brush.color:=c;
  350. //   fcanvas.FrameRect(R1);
  351.    rbtn:=r1;
  352.    DrawSkinMap1(dc,r1,fsd.combox.map,i,fsd.combox.frame);
  353. //   w:= fsd.ComBox.map.width div fsd.ComBox.frame;
  354. //   h:= fsd.ComBox.map.height;
  355. //   r2:=rect((i-1)*w,0,i*w,h);
  356. //   fcanvas.copyrect(r1,fsd.ComBox.map.canvas,r2);
  357. end;
  358. constructor TArrowButton.Create(AOwner: TComponent);
  359. begin
  360.     control:=nil;
  361.     cw:= GetSystemMetrics( SM_CXHSCROLL );
  362.     hwnd:=0;
  363.     tabstop:=false;
  364.     inherited create(aowner);
  365. end;
  366. destructor TArrowButton.Destroy;
  367. begin
  368.     inherited destroy;
  369. end;
  370. procedure TArrowButton.Attach(aobj:Tskincontrol;acontrol:Twincontrol);
  371. var ExStyle : dword;
  372.     Style : dword;
  373.     r,r2:TRect;
  374. begin
  375.    obj:=aobj;
  376.    control:=acontrol;
  377.    hwnd:= control.Handle;
  378.    ExStyle := GetWindowLong( hWnd, GWL_ExSTYLE );
  379.    getwindowrect(hwnd,r);
  380.    offsetrect(r,-r.Left,-r.Right);
  381.    ParentWindow:=hwnd;
  382.    self.width:=cw;
  383.    self.height:= control.Height-4; //cw+1; 
  384.    self.Top := 0;
  385.    if (exstyle and WS_EX_LEFTSCROLLBAR) = 0 then begin
  386.        self.Left:=r.Right-cw-4;
  387.    end else begin
  388.        self.left:= 2;
  389.    end;
  390.    Style := GetWindowLong( hWnd, GWL_STYLE );
  391.    Style := Style or WS_CLIPCHILDREN;
  392.    SetWindowLong( hWnd, GWL_STYLE ,style);
  393. end;
  394. procedure TArrowButton.MoveArrow( r:TRect);
  395. var ExStyle : dword;
  396. begin
  397.     ExStyle := GetWindowLong( hWnd, GWL_ExSTYLE );
  398.     if (exstyle and WS_EX_LEFTSCROLLBAR) = 0 then begin
  399.        self.Left:=r.Right-cw-4;
  400.    end else begin
  401.        self.left:= 2;
  402.    end;
  403. end;
  404. procedure TArrowButton.CMMouseEnter(Var aMsg: TMessage);
  405. begin
  406.     if control.Enabled then begin
  407.         state:=state+[scMouseIn];
  408.         invalidate;
  409.     end;
  410. end;
  411. procedure TArrowButton.CMMouseLeave(Var aMsg: TMessage);
  412. begin
  413.    if control.Enabled then begin
  414.         state:=state-[scMouseIn];
  415.         invalidate;
  416.    end;
  417. end;
  418. procedure TArrowButton.WMLButtonDown(Var aMsg: TMessage);
  419. var p:Tpoint;
  420. begin
  421.     inherited;
  422.     inc(amsg.LParamLo,self.Left);
  423.     inc(amsg.LParamHi,self.Top);
  424.     postmessage(hwnd,WM_LButtonDown,amsg.WParam,amsg.lparam);
  425.     postmessage(hwnd,WM_LBUTTONUP,amsg.WParam,amsg.lparam);
  426.     invalidate;
  427. end;
  428. procedure TArrowButton.WMLButtonUP(Var aMsg: TMessage);
  429. var p:Tpoint;
  430. begin
  431.     inherited;
  432.     windows.setfocus(hwnd);
  433. //    invalidate;
  434. end;
  435. procedure TArrowButton.Paint;
  436. var i,w:integer;
  437.     r1,r2:Trect;
  438. begin
  439.     i:=1;
  440.     if (scMouseIn in state)  then i:=4;
  441.     w:= obj.fsd.comboxarrow.Map.Width div obj.fsd.comboxarrow.frame; 
  442.     r1:=Rect(0,0,width,control.Height-4);
  443.     r2:=Rect((i-1)*w,0,i*w,obj.fsd.comboxarrow.Map.height);
  444.     canvas.Brush.color := obj.fsd.colors[csbuttonface];
  445.     canvas.FillRect(r1);
  446.     canvas.copyrect(r1,obj.fsd.comboxarrow.map.canvas,r2);
  447. end;
  448. destructor TSkinDateTime.Destroy;
  449. begin
  450.     inherited destroy;
  451. end;
  452. procedure TSkinDateTime.Init(sf:Tcomponent;sd:TSkinData;acanvas:TCanvas;acolor:boolean=false);
  453. begin
  454.    if inited then exit;
  455.    inherited init(sf,sd,acanvas,acolor);
  456.    arrow:=TArrowButton.create(self);
  457.    arrow.attach(self,control);
  458. end;
  459. procedure TSkinDateTime.AfterProc(var Message: TMessage);
  460. var s:string;
  461.     dwstyle:dword;
  462. begin
  463.     case message.msg of
  464.        WM_Size:begin
  465.           if arrow<>nil then arrow.repaint;
  466.           //invalidate;
  467.        end;
  468.     else inherited Afterproc(message);
  469.     end;
  470. end;
  471. procedure TSkinDateTime.DrawControl( dc:HDC; rc:TRect);
  472. var r,r1:Trect;
  473.     acolor:Tcolor;
  474.     c1:Tcolor;
  475.     b1,b2:HBRUSH;
  476.     s:string;
  477.     Exstyle:dword;
  478. begin
  479.    getclientrect(hwnd,r1);
  480.    arrow.MoveArrow(rc);
  481.    if (r.right=(r1.right-r1.left)) or
  482.       (r.bottom=(r1.bottom-r1.top)) then exit;
  483.    r1:=rc;
  484.    B1:=CreateSolidBrush(fsd.colors[csButtonShadow]);
  485.    FrameRect(dc,r1,b1);
  486.    c1:=clwhite;
  487.    B2:=CreateSolidBrush(c1);
  488.    InflateRect(r1,-1,-1);
  489.    FrameRect(dc,r1,b2);
  490. //   InflateRect(r1,-1,-1);
  491. //   FrameRect(dc,r1,b2);
  492. //   dec(r1.Bottom);
  493. //   FrameRect(dc,r1,b2);
  494.    deleteobject(B2);
  495.    deleteobject(B1);
  496. end;
  497. constructor TWScrollbar.Create(AOwner: TComponent);
  498. begin
  499.     control:=nil;
  500.     cw:= GetSystemMetrics( SM_CXHSCROLL );
  501.     hwnd:=0;
  502.     tabstop:=false;
  503.     inherited create(aowner);
  504.     scrollpos:=-1;
  505. end;
  506. destructor TWScrollbar.Destroy;
  507. begin
  508.     inherited destroy;
  509. end;
  510. procedure TWScrollbar.CreateParams(var Params: TCreateParams);
  511. begin
  512.   inherited CreateParams(Params);
  513.   with Params do begin
  514.     ExStyle := WS_EX_TOOLWINDOW;
  515.   end;
  516. end;
  517. procedure TWScrollbar.attach(aobj:TSkinControl;aControl:Twincontrol;aType:byte);
  518. var s:string;
  519.     parenthwnd:Thandle;
  520.     dw:Dword;
  521. begin
  522.    obj:=aobj;
  523.    hwnd:=acontrol.handle;
  524.    control:=acontrol;
  525.    sbtype:=aType;
  526.    sbDir:=sbType;
  527.    color := obj.GetParentColor(obj.fsd.colors[csbuttonface]);
  528.    
  529.    if (sbdir=sb_CTL) and (control<>nil) then begin
  530.       s:=lowercase(GetEnumProperty(control,'Kind'));
  531.       if s='sbhorizontal' then sbdir:=sb_HORZ
  532.       else sbdir:=sb_vert;
  533. //      if control.ClassName='T32ScrollBar' then
  534. //          sbtype:=sb_vert;
  535.    end;
  536.    parenthwnd:=GetParent(hWnd);
  537. //   dw:=GetWindowLong(parenthwnd,GWL_STYLE) ;
  538. //   if parenthwnd= 0 then exit;
  539.    ParentWindow:=parenthwnd;
  540.    setposition(hwnd);
  541. //   SetWindowLong(ParentWindow,GWL_STYLE,dw or WS_CLIPSIBLINGS ) ;
  542. end;
  543. procedure TWScrollbar.attachHwnd(aobj:TSkinControl;ahwnd:Thandle;aType:byte);
  544. var s:string;
  545.     parenthwnd:Thandle;
  546. begin
  547.    obj:=aobj;
  548.    hwnd:=ahwnd;
  549.    control:=nil;
  550.    sbtype:=aType;
  551.    sbDir:=sbType;
  552.    parenthwnd:=GetParent(hWnd);
  553.    ParentWindow:=parenthwnd;
  554.    setposition(hwnd);
  555. end;
  556. // MapWindowPoints(ComboWnd, Handle, Point, 1);
  557. procedure TWScrollbar.HideScrollbar;
  558. begin
  559.     ShowWindow(handle,SW_HIDE);
  560.     sbVisible:=false;
  561.     visible:=false;
  562. end;
  563. procedure TWScrollbar.ButtonUp;
  564. begin
  565.     fdown:=false;
  566.     ReleaseCapture;
  567.     if sbtype=SB_CTL then invalidate;
  568. end;
  569. procedure TWScrollbar.SetPosition(ahwnd:Thandle);
  570. var parenthwnd,prehwnd:Thandle;
  571.     r1:TRect;
  572.     p,p1:Tpoint;
  573.     barinfo : tagScrollBarInfo;
  574.     b:boolean;
  575.     dw:dword;
  576. begin
  577.    hwnd:=ahwnd;
  578.    parenthwnd:=GetParent(hWnd);
  579.    fillchar(barinfo,sizeof(barinfo),#0);
  580.    barinfo.cbSize := SizeOf(barinfo);
  581.    if sbtype=SB_VERT then begin
  582.       b:=obj.fsd.GetScrollBarInfo(hwnd, OBJID_VSCROLL, barinfo);
  583.    end else if sbtype=SB_Horz then begin
  584.      b:= obj.fsd.GetScrollBarInfo(hwnd, OBJID_HSCROLL, barinfo);
  585.    end else if sbtype=SB_CTL then
  586.        b:= GetControlInfo2(barinfo);
  587.    sbVisible:=b;
  588.    if not b then begin
  589.      exit; //recreatewnd
  590.    end;
  591.    dw:=GetWindowLong(hWnd,GWL_STYLE);
  592.    if (dw and ws_visible)=0 then begin
  593.       sbVisible:=false;
  594.       ShowWindow(handle,SW_HIDE);
  595.       exit;
  596.    end;
  597.    if ((barinfo.rgstate[0] and STATE_SYSTEM_INVISIBLE)>0) then begin
  598.        if sbDir=SB_vert then
  599.          ShowWindow(handle,SW_HIDE)
  600.        else
  601.        ShowWindow(handle,SW_HIDE);
  602.        sbVisible:=false;
  603.    end else begin
  604.       r1:= barinfo.rcScrollBar;
  605.       p:=r1.TopLeft;
  606.       windows.screentoclient(hwnd,p);
  607.       sbrect.TopLeft:=p;
  608.       p:=r1.BottomRight;
  609.       windows.screentoclient(hwnd,p);
  610.       sbrect.BottomRight:=p;
  611.       offsetrect(r1,-r1.left,-r1.top);
  612.       if sbDir=SB_vert then len:=r1.Bottom
  613.       else len:=r1.Right;
  614.       p:=point(barinfo.rcScrollBar.Left,barinfo.rcScrollBar.Top);
  615.       offsetSC:=p;
  616.       windows.screentoclient(parenthwnd,p);
  617. //      p1:=barinfo.rcScrollBar.TopLeft;
  618. //      MapWindowPoints(0,hwnd,P1, 1);
  619.       prehwnd:=GetNextWindow(hwnd,GW_HWNDPREV);
  620.       if prehwnd=0 then prehwnd:=HWND_TOP;
  621.       ShowWindow(handle,SW_Show);
  622.       sbVisible:=true;
  623.       if sbtype<>SB_CTL then begin
  624.         SetWindowPos(handle, prehwnd, p.x,p.Y,r1.Right,r1.Bottom,0);//SWP_NOREDRAW);
  625.         MoveWindow( handle,p.x,p.Y,r1.Right,r1.Bottom,true);
  626.       end else begin
  627.          p:=point(barinfo.rcScrollBar.Left,barinfo.rcScrollBar.Top);
  628.          SetWindowPos(handle, prehwnd, p.x,p.Y,r1.Right,r1.Bottom,0);//SWP_NOREDRAW);
  629.          MoveWindow( handle,p.x,p.Y,r1.Right,r1.Bottom,true);
  630.       end;
  631.    end;
  632. end;
  633. function TWScrollbar.GetScrollPos(p:Tpoint):integer;
  634. var x:integer;
  635. begin
  636.     if sbDir=SB_Horz then x:=p.x
  637.     else x:=p.y;
  638.     if x<cw then result:=SB_LINEUP
  639.     else if x<thumbtop then result:=SB_PAGEUP
  640.     else if x<thumbbottom then result:=SB_THUMBTRACK
  641.     else if x<len-cw then result:=SB_PAGEDOWN
  642.     else result:=SB_LINEDOWN;
  643. end;
  644. procedure TWScrollbar.WMERASEBKGND(var Msg: TMessage);
  645. begin
  646. //    inherited;
  647. //    if obj.sizing then inherited;
  648.     Msg.Result := 1;
  649. end;
  650. procedure TWScrollbar.WMLButtonDBClick(Var aMsg: TMessage);
  651. begin
  652.    WMLButtonDown(amsg);
  653. end;
  654. function TWScrollbar.GetControlInfo(var info:tagScrollBarInfo):boolean;
  655. var sb:TScrollbar;
  656.     p:TPoint;
  657.     asize:integer;
  658.     amax:integer;
  659. begin
  660.    result:=false;
  661.    if control=nil then exit;
  662.    sb:=TScrollbar(control);
  663.    result:=true;
  664.    p:=point(0,0);
  665.    windows.ClientToScreen(hwnd,p);
  666.    info.rcScrollBar := sb.ClientRect;
  667.    offsetrect(info.rcScrollBar,p.x,p.Y);
  668.    if sbDir=sb_horz then len:=info.rcScrollBar.Right-info.rcScrollBar.Left
  669.    else len:=info.rcScrollBar.bottom-info.rcScrollBar.top;
  670.    amax:=sb.Max-sb.Min;
  671.    if sb.PageSize<>0 then begin
  672.        asize:=MulDiv(len-2*cw,sb.pagesize-1,amax);
  673.        if sb.Position<>sb.Min then
  674.           info.xyThumbTop := cw+MulDiv(len-2*cw,sb.Position-sb.Min,amax)
  675.        else
  676.           info.xyThumbTop := cw;
  677.    end else begin
  678.       asize:=cw;
  679.       if sb.Position<>sb.Min then
  680.          info.xyThumbTop := cw+MulDiv(len-3*cw,sb.Position-sb.Min,amax)
  681.       else
  682.          info.xyThumbTop := cw;
  683.    end;
  684.    info.xyThumbBottom := info.xyThumbTop+asize;
  685. end;
  686. function TWScrollbar.GetControlInfo2(var info:tagScrollBarInfo):boolean;
  687. var sb:TScrollbar;
  688.     p:TPoint;
  689.     asize:integer;
  690.     amax:integer;
  691.     si:SCROLLINFO;
  692. begin
  693.    result:=false;
  694.    if control=nil then exit;
  695.    sb:=TScrollbar(control);
  696.    result:=true;
  697.    p:=point(0,0);
  698.    windows.ClientToScreen(hwnd,p);
  699. //   info.rcScrollBar := sb.ClientRect;
  700.    info.rcScrollBar := sb.BoundsRect;
  701. //   offsetrect(info.rcScrollBar,p.x,p.Y);
  702.    si.cbSize := sizeof( si );
  703.    si.fMask := SIF_ALL;
  704.    if sbDir=sb_horz then begin
  705.       GetScrollInfo( hWnd, SB_CTL, si );
  706.    end else begin
  707.       GetScrollInfo( hWnd, SB_CTL ,si );
  708.    end;
  709.    if sbDir=sb_horz then len:=info.rcScrollBar.Right-info.rcScrollBar.Left
  710.    else len:=info.rcScrollBar.bottom-info.rcScrollBar.top;
  711.    amax:=si.nMax-si.nMin;
  712.    if amax=0 then amax:=9999999;
  713.    if si.nPage<>0 then begin
  714.        asize:=MulDiv(len-2*cw,si.nPage-1,amax);
  715.        if asize<8 then begin
  716.          asize := 8;
  717.          if si.npos<>si.nMin then
  718.             info.xyThumbTop := cw + Muldiv(len - 2*cw-asize, si.nPos-si.nMin,amax)
  719.          else
  720.             info.xyThumbTop := cw;
  721.        end else begin
  722.           if si.npos<>si.nMin then
  723.              info.xyThumbTop := cw+MulDiv(len-2*cw,si.npos-si.nMin,amax)
  724.           else
  725.             info.xyThumbTop := cw;
  726.        end;
  727.    end else begin
  728.       asize:=cw;
  729.       if si.npos<>si.nMin then
  730.          info.xyThumbTop := cw+MulDiv(len-3*cw,si.npos-si.nMin,amax)
  731.       else
  732.          info.xyThumbTop := cw;
  733.    end;
  734.    info.xyThumbBottom := info.xyThumbTop+asize;
  735. end;
  736. procedure TWScrollbar.WMMouseLeave(Var aMsg: TMessage);
  737. begin
  738.    if not fdown then begin
  739.     scrollpos:=-1;
  740.     invalidate();
  741.    end;
  742. end;
  743. procedure TWScrollbar.WMMouseMove(Var aMsg: TMessage);
  744. var  p:Tpoint;
  745.      i:integer;
  746. begin
  747.     inherited;
  748.     P := point(amsg.LParamLo,amsg.LParamhi);
  749.     i:=getscrollpos(p)  ;
  750.     if i<>scrollpos then begin
  751.        scrollpos:=i;
  752.        invalidate();
  753.     end;
  754.     WinSkinData.DoTrackMouse(Handle);
  755. end;
  756. procedure TWScrollbar.WMLButtonDown(Var aMsg: TMessage);
  757. var  p:Tpoint;
  758.      x:integer;
  759.      barinfo : tagScrollBarInfo;
  760.      b:boolean;
  761. begin
  762.     inherited;
  763.     P := point(amsg.LParamLo,amsg.LParamhi);
  764.     GetCursorPos(trackp);
  765.     fillchar(barinfo,sizeof(barinfo),#0);
  766.     barinfo.cbSize := SizeOf(barinfo);
  767.     if sbtype=SB_VERT then begin
  768.        b:=obj.fsd.GetScrollBarInfo(hwnd, OBJID_VSCROLL, barinfo);
  769.     end else if sbtype=SB_Horz then begin
  770.        b:= obj.fsd.GetScrollBarInfo(hwnd, OBJID_HSCROLL, barinfo);
  771.     end else if sbtype=SB_CTL then
  772.        b:= GetControlInfo(barinfo);
  773.     if b then begin
  774.       trackthumb:=barinfo.xyThumbTop;
  775.     end;
  776.     scrollpos:=getscrollpos(p)  ;
  777.     if sbtype=SB_CTL then begin
  778.     end else begin
  779.         offsetSC:=point(barinfo.rcScrollBar.Left,barinfo.rcScrollBar.Top);
  780.         amsg.LParamLo:=amsg.LParamLo+offsetSc.x;// inc(amsg.LParamLo,offsetSc.x);
  781.         amsg.LParamHi:=amsg.LParamHi+offsetSc.y;//inc(amsg.LParamHi,offsetSc.y);
  782.     end;
  783.     fdown:=true;
  784.     invalidate;
  785.     scrollpos:=getscrollpos(p)  ;
  786.     releasecapture;
  787.     if sbtype=SB_VERT then begin
  788.        sendmessage(hwnd,CM_Scroll1,C_Paramv,amsg.lparam);
  789.     end else if sbtype=SB_HORZ then
  790.        sendmessage(hwnd,CM_Scroll1,C_Paramh,amsg.lparam)
  791.     else
  792.        sendmessage(hwnd,CM_Scroll2,c_paramB,amsg.lparam);
  793.     fdown:=false;
  794.     ReleaseCapture;
  795.     if sbtype=SB_CTL then invalidate;
  796. end;
  797. procedure TWScrollbar.WMLButtonUp(Var aMsg: TMessage);
  798. var  p:Tpoint;
  799.      x:integer;
  800. begin
  801.     inherited;
  802.     P := point(amsg.LParamLo,amsg.LParamhi);
  803.     if sbdir<>SB_CTL then begin
  804.        inc(amsg.LParamLo,offsetSc.x);
  805.        inc(amsg.LParamHi,offsetSc.y);
  806.     end;
  807.     fdown:=false;
  808.     ReleaseCapture;
  809.     if sbtype=SB_VERT then
  810.        postmessage(hwnd,CM_Scroll3,C_Paramv,amsg.lparam)
  811.     else  if sbtype=SB_HORZ then
  812.        postmessage(hwnd,CM_Scroll3,C_Paramh,amsg.lparam)
  813.     else
  814.        postmessage(hwnd,CM_Scroll4,c_paramB,amsg.lparam);
  815.     if sbtype=SB_CTL then invalidate;
  816. end;
  817. procedure TWScrollbar.doLog(Message: TMessage);
  818. var s:string;
  819. begin
  820.   {$IFDEF test}
  821.     s:= MsgtoStr(message);
  822.     if s<>''  then form1.memo2.lines.add(s);
  823.   {$ENDIF}
  824. end;
  825. procedure TWScrollbar.GetThumb(rc:TRect);
  826. var p:Tpoint;
  827.     size:integer;
  828. begin
  829.     GetCursorPos(p);
  830.     size:=thumbbottom-thumbtop;
  831.     thumbtop:=trackthumb;
  832.     if(sbDir=sb_Vert) then
  833.          inc(thumbtop,p.Y-trackp.y)
  834.     else
  835.          inc(thumbtop,p.x-trackp.x);
  836.     if thumbtop<cw then thumbtop:=cw;
  837.     if thumbtop>Len-cw-size then thumbtop:=Len-cw-size;
  838.     thumbbottom:=thumbtop+size;
  839. end;
  840. procedure TWScrollbar.Paint;
  841. var rc,rc1,rc2:TRect;
  842.     p:Tpoint;
  843.     barinfo : tagScrollBarInfo;
  844.     b,sbenable:boolean;
  845.     temp:TBitmap;
  846.     fsd:TSkindata;
  847.     bw,i1,i2,swidth,n:integer;
  848. begin
  849. //   if not sbvisible then exit;
  850.    fsd:=obj.fsd;
  851.    if (fsd.SArrow=nil) or fsd.sarrow.map.empty then exit;
  852.    fillchar(barinfo,sizeof(barinfo),#0);
  853.    barinfo.cbSize := SizeOf(barinfo);
  854.    if sbtype=SB_VERT then begin
  855.       b:=fsd.GetScrollBarInfo(hwnd, OBJID_VSCROLL, barinfo);
  856.    end else if sbtype=SB_Horz then begin
  857.      b:= fsd.GetScrollBarInfo(hwnd, OBJID_HSCROLL, barinfo);
  858.    end else if sbtype=SB_CTL then
  859.        b:= GetControlInfo2(barinfo);
  860. //     b:= GetScrollBarInfo(obj.hwnd, OBJID_CLIENT, barinfo);
  861.    if not b then exit; //recreatewnd
  862.    if (barinfo.rgstate[0] and STATE_SYSTEM_INVISIBLE)>0 then  exit;
  863.    if (barinfo.rgstate[0] and STATE_SYSTEM_UNAVAILABLE)>0 then
  864.       sbEnable:=false
  865.    else sbEnable:=true;
  866. //   if self.enabled<>sbenable then self.Enabled:=sbenable;
  867.    bw:=cw;
  868.    rc:= barinfo.rcScrollBar;
  869.    offsetrect(rc,-rc.left,-rc.top);
  870.    if (rc.Bottom<0) or (rc.Right<0) then exit;
  871.    if (rc.Bottom>Height) or (rc.Right>Width) then exit;
  872. //   if (rc.right>fsd.cxMax) or (rc.Bottom>fsd.cyMax) then exit;
  873.    if sbtype=SB_vert then len:=rc.Bottom
  874.    else len:=rc.Right;
  875.    swidth:=fsd.SArrow.map.height;
  876. //   if swidth>cw then swidth:=cw;
  877.    if abs(swidth-cw)>2 then swidth:=cw;
  878.    
  879.    //Tscrollbar
  880.    if sbtype=SB_CTL then begin
  881.       if sbDir=sb_Horz then rc.bottom:=swidth
  882.       else rc.right:=swidth;
  883.    end;
  884.    temp:=Tbitmap.create;
  885.    try
  886.    temp.width:=rc.right;
  887.    temp.height:=rc.bottom;
  888.    except
  889.    temp.Free;
  890.    exit;
  891.    end;
  892.    SetStretchBltMode(temp.canvas.handle,STRETCH_DELETESCANS);
  893.    temp.canvas.brush.color:=fsd.colors[csbuttonface];
  894.    temp.canvas.fillrect(rc);
  895.    //for ws_vscroll ws_hscroll
  896.    if sbtype<>SB_CTL then begin
  897.      if sbDir=sb_Horz then rc.bottom:=swidth
  898.      else rc.right:=swidth;
  899.    end;
  900.    rc1:=rc;
  901.    i1:=1;
  902.    if not sbEnable then i1:=3;
  903.    if sbDir=SB_Horz then begin
  904.      rc1.left:=rc1.left+bw;
  905.      rc1.right:=rc1.right-bw;
  906.      DrawRect2(temp.canvas.handle,rc1,fsd.HBar.map,
  907.                    fsd.HBar.r,i1,4,fsd.hbar.trans,fsd.hbar.tile);
  908.    end else begin
  909.      rc1.top:=rc1.top+bw;
  910.      rc1.bottom:=rc1.bottom-bw;
  911.      DrawRect2(temp.canvas.handle,rc1,fsd.VBar.map,
  912.                    fsd.VBar.r,i1,4,fsd.vbar.trans,fsd.hbar.tile);
  913.    end;
  914.    //Button
  915.    rc1 := rc; rc2 := rc;
  916.    if ( sbDir=SB_Horz ) then begin //HBar
  917.       if (rc.right)<2*bw then  bw := rc.right  div 2;
  918.       rc1.right := rc1.left + bw;
  919.       rc2.left := rc2.right - bw;
  920.       i1:=1;i2:=5;
  921.    end else begin// SB_VERT
  922.       if rc.bottom<2*bw then bw := rc.bottom div 2;
  923.       rc1.bottom := rc1.top + bw;
  924.       rc2.top := rc2.bottom - bw;
  925.       i1:=9;i2:=13;
  926. //      if fdown and (scrollpos=SB_LINEUP) then inc(i1);
  927. //      if fdown and (scrollpos=SB_LINEDown) then inc(i2);
  928.    end;
  929.    if (scrollpos=SB_LINELeft) then begin
  930.          if fdown then inc(i1)
  931.          else inc(i1,3);
  932.    end;
  933.    if (scrollpos=SB_LINERight) then begin
  934.          if fdown then inc(i2)
  935.          else inc(i2,3);
  936.    end;
  937.    obj.DrawSkinMap3( temp.canvas,rc1,fsd.SArrow.map,i1,23);
  938.    obj.DrawSkinMap3( temp.canvas,rc2,fsd.SArrow.map,i2,23);
  939.    if fdown and (scrollpos=SB_THUMBTRACK) and (sbtype<>sb_Ctl) then
  940.       GetThumb(rc)
  941.    else begin
  942.       thumbtop:=barinfo.xyThumbTop;
  943.       thumbBottom:=barinfo.xyThumbBottom;
  944.    end;
  945.    i1:=1;
  946.    if (scrollpos=SB_THUMBTRACK) then begin
  947.       if fdown then inc(i1)
  948.       else inc(i1,2);
  949.    end;
  950.    if sbEnable then begin
  951.      if ( sbDir=SB_VERT ) then begin
  952.         i2:=20;
  953.         rc1:=Rect(0,thumbtop,swidth,thumbbottom);
  954.         if (thumbtop<Height) and (thumbbottom<Height) then
  955.         DrawRect2(temp.canvas.handle,rc1,fsd.VSlider.map,
  956.                    fsd.Vslider.r,i1,fsd.Hslider.frame,fsd.hslider.trans)
  957.      end else begin// SB_HORZ
  958.         i2:=17;
  959.         rc1:=Rect(thumbtop,0,thumbbottom,swidth);
  960.         if (thumbtop<Width) and (thumbbottom<Width) then
  961.         DrawRect2(temp.canvas.handle,rc1,fsd.HSlider.map,
  962.                    fsd.Hslider.r,i1,fsd.Hslider.frame,fsd.hslider.trans)
  963.      end;
  964.      if (scrollpos=SB_THUMBTRACK) then begin
  965.         if fdown then inc(i2)
  966.         else inc(i2,2);
  967.      end;
  968.      bw := fsd.SArrow.map.Height;
  969.      if (thumbbottom-thumbtop+2)>bw then begin
  970.         n:=(thumbbottom-thumbtop-bw) div 2  ;
  971.         if ( sbDir=SB_VERT ) then begin
  972.           rc2:=Rect(0,thumbtop+n,swidth,thumbtop+n+bw) ;
  973.           if (rc2.Top<Height) and (rc2.Bottom<Height)then
  974.           obj.DrawSkinMap3( temp.canvas,rc2,fsd.SArrow.map,i2,23);
  975.         end else begin
  976.           rc2:=Rect(thumbtop+n,0,thumbtop+n+bw,swidth);
  977.           if (rc2.left<Width) and (rc2.Right<Width) then
  978.           obj.DrawSkinMap3( temp.canvas,rc2,fsd.SArrow.map,i2,23);
  979.         end;
  980.      end;
  981.    end;
  982.    //windows.getclientrect(hwnd,rc);
  983.    rc:=clientrect;
  984.    if sbtype=SB_CTL then
  985.      StretchBlt(canvas.Handle,rc.Left,rc.Top,rc.Right,rc.Bottom,
  986.                  temp.Canvas.Handle ,0 ,0 ,temp.width,temp.height,Srccopy)
  987.    else
  988.      StretchBlt(canvas.Handle,0,0,temp.width,temp.height,
  989.                  temp.Canvas.Handle ,0 ,0 ,temp.width,temp.height,Srccopy);
  990.    temp.free;
  991. end;
  992. {constructor TEScrollbar.Create(AOwner: TComponent);
  993. begin
  994.     control:=nil;
  995.     cw:= GetSystemMetrics( SM_CXHSCROLL );
  996.     hwnd:=0;
  997.     inherited create(aowner);
  998. end;
  999. destructor TEScrollbar.Destroy;
  1000. begin
  1001.     inherited destroy;
  1002. end;
  1003. procedure TEScrollbar.attach(aobj:TSkinControl;aParentControl:Twincontrol;
  1004.                              aScrollbar:Tcontrol;aType:byte);
  1005. var s:string;
  1006. begin
  1007.    obj:=aobj;
  1008.    Pcontrol:=aParentControl;
  1009.    hwnd:=aParentControl.handle;
  1010.    control:=ascrollbar;
  1011.    sbtype:=aType;
  1012.    sbDir:=sbType;
  1013.    if (aType=255) and (control<>nil) then begin
  1014.       s:=lowercase(GetEnumProperty(control,'Kind'));
  1015.       if s='sbhorizontal' then sbdir:=sb_HORZ
  1016.       else sbdir:=sb_vert;
  1017.    end;
  1018.    ParentWindow:=GetParent(hWnd);
  1019.    setposition;
  1020. end;
  1021. procedure TEScrollbar.ButtonUp;
  1022. begin
  1023.     fdown:=false;
  1024.     ReleaseCapture;
  1025.     invalidate;
  1026. end;
  1027. procedure TEScrollbar.HideScrollbar;
  1028. begin
  1029.     ShowWindow(handle,SW_HIDE);
  1030.     sbVisible:=false;
  1031. end;
  1032. procedure TEScrollbar.SetPosition;
  1033. var r1:TRect;
  1034.     p,p1:Tpoint;
  1035.     barinfo : tagScrollBarInfo;
  1036.     b:boolean;
  1037.     Parenthwnd: Thandle; 
  1038. begin
  1039.    fillchar(barinfo,sizeof(barinfo),#0);
  1040.    barinfo.cbSize := SizeOf(barinfo);
  1041.    GetControlInfo(barinfo);
  1042. //   sbVisible:=b;
  1043.    if barinfo.rgstate[0] >0 then begin
  1044.        ShowWindow(handle,SW_HIDE);
  1045.        sbVisible:=false;
  1046.    end else begin
  1047.       r1:= barinfo.rcScrollBar;
  1048.       sbrect:=r1;
  1049.       ParentHwnd := GetParent(hWnd);
  1050.       p:=point(r1.Left,r1.Top);
  1051.       MapWindowPoints(hwnd,parenthwnd,P, 1);
  1052.       offsetrect(r1,-r1.Left,-r1.Top);
  1053.       if sbDir=SB_vert then len:=r1.Bottom
  1054.       else len:=r1.Right;
  1055.       SetWindowPos(handle, HWND_TOP, p.X,p.y,r1.Right,r1.Bottom,SWP_SHOWWINDOW or SWP_NOREDRAW);
  1056. //      if sbDir=SB_vert then
  1057. //      SetWindowPos(handle, HWND_TOP, r1.Left,r1.Top,r1.Right,r1.Bottom,SWP_SHOWWINDOW or SWP_NOREDRAW)
  1058. //      else
  1059. //       SetWindowPos(handle, HWND_TOP, r1.Left,r1.Top,r1.Right,r1.Bottom,SWP_SHOWWINDOW or SWP_NOREDRAW);
  1060.    end;
  1061. end;
  1062. function TEScrollbar.GetControlInfo(var info:tagScrollBarInfo):boolean;
  1063. var p:TPoint;
  1064.     asize:integer;
  1065.     pagesize,amax,amin:integer;
  1066.     position:integer;
  1067.     s:string;
  1068. begin
  1069.    result:=false;
  1070.    if control=nil then exit;
  1071.    p:=point(0,0);
  1072.    windows.ClientToScreen(hwnd,p);
  1073.    info.rcScrollBar := rect(control.left,control.top,
  1074.               control.left+control.Width,control.top+control.height);
  1075. //   offsetrect(info.rcScrollBar,p.x,p.Y);
  1076.    if sbDir=sb_horz then len:=info.rcScrollBar.Right-info.rcScrollBar.Left
  1077.    else len:=info.rcScrollBar.bottom-info.rcScrollBar.top;
  1078.    PageSize := GetIntProperty(control,'PageSize') ;
  1079.    amax := GetIntProperty(control,'Max') ;
  1080.    amin := GetIntProperty(control,'Min') ;
  1081.    Position := GetIntProperty(control,'Position') ;
  1082. //   s := lowercase(GetEnumProperty(control,'Visible'));
  1083. //   if s='true' then sbVisible:=true
  1084. //   else sbVisible:=false;
  1085.    sbVisible:=control.Visible;
  1086.    result:=sbVisible;
  1087.    if PageSize<>0 then begin
  1088.        asize:=MulDiv(len-2*cw,pagesize-amin,amax);
  1089.        if Position<>0 then
  1090.           info.xyThumbTop := cw+MulDiv(len-2*cw,Position,amax)
  1091.        else
  1092.           info.xyThumbTop := cw;
  1093.    end else begin
  1094.       asize:=cw;
  1095.       if Position<>0 then
  1096.          info.xyThumbTop := cw+MulDiv(len-3*cw,Position,amax)
  1097.       else
  1098.          info.xyThumbTop := cw;
  1099.    end;
  1100.    info.xyThumbBottom := info.xyThumbTop+asize;
  1101. end;
  1102. function TEScrollbar.GetScrollPos(p:Tpoint):integer;
  1103. var x:integer;
  1104. begin
  1105.     if sbDir=SB_Horz then x:=p.x
  1106.     else x:=p.y;
  1107.     if x<cw then result:=SB_LINEUP
  1108.     else if x<thumbtop then result:=SB_PAGEUP
  1109.     else if x<thumbbottom then result:=SB_THUMBTRACK
  1110.     else if x<len-cw then result:=SB_PAGEDOWN
  1111.     else result:=SB_LINEDOWN;
  1112. end;
  1113. procedure TEScrollbar.GetThumb(rc:TRect);
  1114. var p:Tpoint;
  1115.     size:integer;
  1116. begin
  1117.     GetCursorPos(p);
  1118.     size:=thumbbottom-thumbtop;
  1119.     thumbtop:=trackthumb;
  1120.     if(sbDir=sb_Vert) then
  1121.          inc(thumbtop,p.Y-trackp.y)
  1122.     else
  1123.          inc(thumbtop,p.x-trackp.x);
  1124.     if thumbtop<cw then thumbtop:=cw;
  1125.     if thumbtop>Len-cw-size then thumbtop:=Len-cw-size;
  1126.     thumbbottom:=thumbtop+size;
  1127. end;
  1128. procedure TEScrollbar.WMLButtonDown(Var aMsg: TMessage);
  1129. var  p:Tpoint;
  1130.      x:integer;
  1131.      barinfo : tagScrollBarInfo;
  1132.      b:boolean;
  1133. begin
  1134.     inherited;
  1135.     P := point(amsg.LParamLo,amsg.LParamhi);
  1136. //    inc(amsg.LParamLo,Sbrect.left);
  1137. //    inc(amsg.LParamHi,sbRect.top);
  1138.     GetCursorPos(trackp);
  1139.     fillchar(barinfo,sizeof(barinfo),#0);
  1140.     barinfo.cbSize := SizeOf(barinfo);
  1141.     b:= GetControlInfo(barinfo);
  1142.     if b then begin
  1143.       trackthumb:=barinfo.xyThumbTop;
  1144.     end;
  1145.     scrollpos:=getscrollpos(p);
  1146. //    SetCapture(handle);
  1147.     fdown:=true;
  1148.     invalidate;
  1149.     control.Perform(CM_Scroll2,c_paramB,amsg.lparam);
  1150. //    postmessage(hwnd,CM_Scroll2,c_paramB,amsg.lparam);
  1151. end;
  1152. procedure TEScrollbar.WMERASEBKGND(var Msg: TMessage);
  1153. begin
  1154.    Msg.Result := 1;
  1155. end;
  1156. procedure TEScrollbar.Paint;
  1157. var rc,rc1,rc2:TRect;
  1158.     p:Tpoint;
  1159.     barinfo : tagScrollBarInfo;
  1160.     b,sbenable:boolean;
  1161.     temp:TBitmap;
  1162.     fsd:TSkindata;
  1163.     bw,i1,i2,swidth:integer;
  1164. begin
  1165.    fsd:=obj.fsd;
  1166.    if (fsd.SArrow=nil) or fsd.sarrow.map.empty then exit;
  1167.    fillchar(barinfo,sizeof(barinfo),#0);
  1168.    barinfo.cbSize := SizeOf(barinfo);
  1169.    b:= GetControlInfo(barinfo);
  1170.    if barinfo.rgstate[0]>1 then
  1171.       sbEnable:=false;
  1172.    bw:=cw;
  1173.    rc:= barinfo.rcScrollBar;
  1174.    offsetrect(rc,-rc.left,-rc.top);
  1175.    if sbtype=SB_vert then len:=rc.Bottom
  1176.    else len:=rc.Right;
  1177.    swidth:=fsd.SArrow.map.height;
  1178.    if swidth+3<cw then swidth:=cw;
  1179.    temp:=Tbitmap.create;
  1180.    temp.width:=rc.right;
  1181.    temp.height:=rc.bottom;
  1182.    SetStretchBltMode(temp.canvas.handle,STRETCH_DELETESCANS);
  1183.    temp.canvas.brush.color:=fsd.colors[csbuttonface];
  1184.    temp.canvas.fillrect(rc);
  1185.    if sbDir=sb_Horz then rc.bottom:=swidth
  1186.    else rc.right:=swidth;
  1187.    rc1:=rc;
  1188.    i1:=1;
  1189.    if not sbEnable then i1:=3;
  1190.    if sbDir=SB_Horz then begin
  1191.      rc1.left:=rc1.left+bw;
  1192.      rc1.right:=rc1.right-bw;
  1193.      DrawRect2(temp.canvas.handle,rc1,fsd.HBar.map,
  1194.                    fsd.HBar.r,i1,4,fsd.hbar.trans,fsd.hbar.tile);
  1195.    end else begin
  1196.      rc1.top:=rc1.top+bw;
  1197.      rc1.bottom:=rc1.bottom-bw;
  1198.      DrawRect2(temp.canvas.handle,rc1,fsd.VBar.map,
  1199.                    fsd.VBar.r,i1,4,fsd.vbar.trans,fsd.hbar.tile);
  1200.    end;
  1201.    //Button
  1202.    rc1 := rc; rc2 := rc;
  1203.    if ( sbDir=SB_Horz ) then begin //HBar
  1204.       if (rc.right)<2*bw then  bw := rc.right  div 2;
  1205.       rc1.right := rc1.left + bw;
  1206.       rc2.left := rc2.right - bw;
  1207.       i1:=1;i2:=5;
  1208.       if fdown and (scrollpos=SB_LINELeft) then inc(i1);
  1209.       if fdown and (scrollpos=SB_LINERight) then inc(i2);
  1210.    end else begin// SB_VERT
  1211.       if rc.bottom<2*bw then bw := rc.bottom div 2;
  1212.       rc1.bottom := rc1.top + bw;
  1213.       rc2.top := rc2.bottom - bw;
  1214.       i1:=9;i2:=13;
  1215.       if fdown and (scrollpos=SB_LINEUP) then inc(i1);
  1216.       if fdown and (scrollpos=SB_LINEDown) then inc(i2);
  1217.    end;
  1218.    obj.DrawSkinMap3( temp.canvas,rc1,fsd.SArrow.map,i1,23);
  1219.    obj.DrawSkinMap3( temp.canvas,rc2,fsd.SArrow.map,i2,23);
  1220.    if (scrollpos=SB_THUMBTRACK) then
  1221.       GetThumb(rc)
  1222.    else begin
  1223.       thumbtop:=barinfo.xyThumbTop;
  1224.       thumbBottom:=barinfo.xyThumbBottom;
  1225.    end;
  1226. //      thumbtop:=barinfo.xyThumbTop;
  1227. //      thumbBottom:=barinfo.xyThumbBottom;
  1228.    i1:=1;
  1229.    if fdown and (scrollpos=SB_THUMBTRACK) then
  1230.       inc(i1);
  1231.    if ( sbDir=SB_VERT ) then begin
  1232.         rc1:=Rect(0,thumbtop,swidth,thumbbottom);
  1233.         DrawRect2(temp.canvas.handle,rc1,fsd.VSlider.map,
  1234.                    fsd.Vslider.r,i1,fsd.Hslider.frame,fsd.hslider.trans)
  1235.    end else begin// SB_HORZ
  1236.         rc1:=Rect(thumbtop,0,thumbbottom,swidth);
  1237.         DrawRect2(temp.canvas.handle,rc1,fsd.HSlider.map,
  1238.                    fsd.Hslider.r,i1,fsd.Hslider.frame,fsd.hslider.trans)
  1239.    end;
  1240.    StretchBlt(canvas.Handle,0,0,temp.width,temp.height,
  1241.                  temp.Canvas.Handle ,0 ,0 ,temp.width,temp.height,Srccopy);
  1242.    temp.free;
  1243. end;}
  1244. constructor TSkinScrollbar.Create(AOwner: TComponent);
  1245. begin
  1246.    inherited create(aowner);
  1247.    hb:=nil;
  1248.    vb:=nil;
  1249.    sizing:=false;
  1250.    border:=false;
  1251.    kind:=0;
  1252.    nobe:=true;
  1253. end;
  1254. destructor TSkinScrollbar.Destroy;
  1255. begin
  1256. //   if control=nil then begin
  1257.       if hb<>nil then
  1258.           hb.free;
  1259.       if vb<>nil then
  1260.          vb.free;
  1261.       hb:=nil;
  1262.       vb:=nil;
  1263. //   end;
  1264.    inherited;
  1265. end;
  1266. procedure TSkinScrollbar.InitScrollbar(acontrol:Twincontrol;sd:TSkinData;acanvas:TCanvas;sf:Tcomponent);
  1267. var s:string;
  1268.     PropInfo:PPropInfo;
  1269. begin
  1270.    fsd:=sd;
  1271.    skinform:=sf;
  1272.    control:=acontrol;
  1273.    hwnd := control.handle;
  1274.    painted:= (Win32Platform = VER_PLATFORM_WIN32_NT) and (Win32MajorVersion >= 5) and (Win32MinorVersion >= 1);
  1275.    Twinskinform(skinform).addcontrollist(self);
  1276.    s:=lowercase(GetEnumProperty(control,'BorderStyle'));
  1277.    if s<>'bsnone' then border:=true;
  1278.    if control<>nil then s:=control.classname;
  1279.    if s='TImageScrollBox' then border:=false;
  1280.    if kind=1 then border:=false;
  1281.    PropInfo:=GetPropInfo(control,'FixedColor');
  1282.    if (PropInfo<>nil) and
  1283.          (propinfo^.PropType^.Kind = tkInteger) then begin
  1284.          oldcolor :=Tcolor(GetOrdProp(control,PropInfo));
  1285.          newcolor:=true;
  1286.          SetProperty(control,'FixedColor',inttostr(fsd.colors[csbuttonface]));
  1287.    end;
  1288.    hb:=TWscrollbar.create(self);
  1289.    hb.attach(self,control,sb_horz);
  1290.    vb:=TWscrollbar.create(self);
  1291.    vb.attach(self,control,sb_vert);
  1292.    hb.Enabled:=control.Enabled;
  1293.    vb.Enabled:=control.Enabled;
  1294.    if not control.Visible then begin
  1295.       vb.HideScrollbar;hb.HideScrollbar;
  1296.    end;
  1297.    OldWndProc:= Control.WindowProc;
  1298.    Control.WindowProc := NewWndProc;
  1299. end;
  1300. Procedure TSkinScrollBar.SkinChange;
  1301. var s:string;
  1302.     PropInfo:PPropInfo;
  1303. begin
  1304. //   inherited Skinchange;
  1305.    PropInfo:=GetPropInfo(control,'FixedColor');
  1306.    if (PropInfo<>nil) and
  1307.          (propinfo^.PropType^.Kind = tkInteger) then begin
  1308.          oldcolor :=Tcolor(GetOrdProp(control,PropInfo));
  1309.          newcolor:=true;
  1310.          SetProperty(control,'FixedColor',inttostr(fsd.colors[csbuttonface]));
  1311.    end;
  1312. end;
  1313. procedure TSkinScrollBar.SetScrollbarPos(message:TMessage);
  1314. begin
  1315.    if hb<>nil then hb.SetPosition(hwnd);
  1316.    if vb<>nil then vb.SetPosition(hwnd);
  1317. end;
  1318. procedure TSkinScrollBar.DrawBorder( dc:HDC; rc:TRect);
  1319. var r,r1:Trect;
  1320.     acolor:Tcolor;
  1321.     c1:Tcolor;
  1322.     b1,b2:HBRUSH;
  1323.     s:string;
  1324. begin
  1325.    r1:=rc;
  1326.    B1:=CreateSolidBrush(fsd.colors[csButtonShadow]);
  1327. //   B1:=CreateSolidBrush(fsd.colors[csButtonDkshadow]);
  1328.    FrameRect(dc,r1,b1);
  1329.    c1:=fsd.colors[csButtonface];//clwhite;
  1330.    B2:=CreateSolidBrush(c1);
  1331.    InflateRect(r1,-1,-1);
  1332.    FrameRect(dc,r1,b2);
  1333.    deleteobject(B2);
  1334.    deleteobject(B1);
  1335. end;
  1336. procedure TSkinScrollBar.DrawControl( dc:HDC; rc:TRect);
  1337. var r:Trect;
  1338.     style:dword;
  1339. begin
  1340. //   painted:=true;
  1341.    style:=GetWindowLong(hWnd,GWL_STYLE);
  1342.    if (vb<>nil) then begin
  1343.       if vb.sbvisible then vb.Invalidate
  1344.       else if (style and ws_vscroll)>0 then
  1345.         vb.SetPosition(hwnd);
  1346.    end;
  1347.    if (hb<>nil) then  begin
  1348.       if hb.sbvisible then hb.Invalidate
  1349.       else if (style and ws_hscroll)>0 then
  1350.         hb.SetPosition(hwnd);
  1351.    end;
  1352.    if (vb<>nil) and (hb<>nil) and vb.sbvisible and hb.sbvisible then begin
  1353.       r:=rect(vb.sbRect.left+2,hb.sbRect.top+2,vb.sbRect.right+2,hb.sbRect.bottom+2);
  1354.       FillBG( dc,r);
  1355.    end;
  1356. //   if border then drawborder(dc,rc);
  1357. end;
  1358. procedure TSkinScrollbar.BENCPAINT(adc:HDC);
  1359. var    rc:TRect;
  1360. begin
  1361.   if GetWindowRect( hWnd, rc ) then begin;
  1362.     try
  1363.       OffsetRect( rc, -rc.left, -rc.top );
  1364.       DrawBorder(adc,rc);
  1365.     except
  1366.     end;
  1367.   end;
  1368. end;
  1369. function TSkinScrollbar.BeforeProc(var Message: TMessage):boolean;
  1370. var
  1371.   DC: HDC;
  1372. begin
  1373.   case message.msg of
  1374.     WM_NCPAINT:
  1375.     begin
  1376.       if border then begin
  1377.         default(message);
  1378.         DC := GetWindowDC(Control.Handle);
  1379.         BENCPaint(DC);
  1380.         ReleaseDC(Control.Handle, DC);
  1381.         Result := False;    
  1382.       end else result:=true;
  1383.     end
  1384.     else result:=inherited beforeProc(message);
  1385.   end;
  1386. end;
  1387. procedure TSkinScrollbar.AfterProc(var Message: TMessage);
  1388. var s:string;
  1389.     dwstyle:dword;
  1390. begin
  1391.   {$IFDEF scrollbartest}
  1392.     s:= MsgtoStr(message);
  1393.     if s<>''  then fsd.DoDebug('Scrollbar '+s);
  1394.   {$ENDIF}
  1395.     case message.msg of
  1396.        CM_VISIBLECHANGED : begin
  1397.           if message.wParam=0 then begin
  1398.              vb.HideScrollbar;hb.HideScrollbar;
  1399.           end else begin
  1400.              SetScrollbarPos(message);
  1401.           end;
  1402.        end;
  1403.        CM_ENABLEDCHANGED:begin
  1404.           hb.Enabled:= control.Enabled;
  1405.           vb.Enabled:= control.Enabled;
  1406.        end;
  1407.        CM_RECREATEWND: begin
  1408.           if (control<>nil) and (skinform<>nil) then
  1409.              postmessage(Twinskinform(skinform).hwnd,CN_ReCreateWnd,hwnd,0);
  1410.          end;
  1411.        WM_Size,WM_WINDOWPOSCHANGED:begin
  1412.           sizing:=true;
  1413.           SetScrollbarPos(message);
  1414.           //invalidate;
  1415.        end;
  1416.        WM_VSCROLL: begin
  1417.           vb.scrollpos:= message.WParamLo;
  1418.           vb.Invalidate;
  1419.        end;
  1420.        WM_HSCROLL: begin
  1421.           hb.scrollpos:= message.WParamLo;
  1422.           hb.Invalidate;
  1423.        end;
  1424.        WM_MOUSEWHEEL: begin
  1425.           if (vb<>nil) and vb.sbvisible then vb.Invalidate;
  1426.           if (hb<>nil) and hb.sbvisible then hb.Invalidate;
  1427.        end;
  1428.       CM_BENCPAINT: begin
  1429.          if Message.LParam = BE_ID then begin
  1430.           if Message.WParam <> 0 then begin
  1431.              BENCPAINT(Message.WParam);
  1432.           end;
  1433.           Message.Result := BE_ID;
  1434.          end ;
  1435.        end;
  1436.     else inherited Afterproc(message);
  1437.     end;
  1438. end;
  1439. procedure TSkinScrollBar.Unsubclass;
  1440. begin
  1441.    if newcolor then
  1442.        SetProperty(control,'FixedColor',inttostr(oldcolor));
  1443.    newcolor:=false;
  1444.    inherited unsubclass;
  1445.    if skinstate<>skin_deleted then begin
  1446.      if hb<>nil then hb.free;
  1447.      hb:=nil;
  1448.      if vb<>nil then vb.free;
  1449.      vb:=nil;
  1450.    end else begin
  1451.    end;
  1452. end;
  1453. constructor TComboxScrollBar.Create(AOwner: TComponent);
  1454. begin
  1455.   inherited create(aOwner);
  1456.   control:=nil;
  1457.   cw:= GetSystemMetrics( SM_CXHSCROLL );
  1458. end;
  1459. destructor TComboxScrollBar.Destroy;
  1460. begin
  1461.   inherited destroy;
  1462. end;
  1463. procedure TComboxScrollBar.AfterProc(var Message: TMessage);
  1464. begin
  1465.     case message.msg of
  1466.        WM_NCPaint: begin
  1467.          PaintControl;
  1468.       end;
  1469.        WM_HSCROLL : begin
  1470.          PaintControl;
  1471.        end;
  1472.        WM_VSCROLL  : begin
  1473.          PaintControl;
  1474.        end;
  1475.        $1ae: paintcontrol;
  1476.     else inherited AfterProc(message);
  1477.     end;
  1478. end;
  1479. function TComboxScrollBar.WMNCPaint(var message:TMessage):boolean;
  1480. var style:Dword;
  1481. begin
  1482. {   style:=GetWindowLong(hWnd,GWL_STYLE);
  1483.    if  (style and WS_VSCROLL) >0 then begin
  1484.       style := style and (not WS_VSCROLL);
  1485.       SetWindowLong(hWnd,GWL_STYLE,style);
  1486.       default(message);
  1487.       style := style or WS_VSCROLL;
  1488.       SetWindowLong(hWnd,GWL_STYLE,style);
  1489.       paintcontrol(message.WParam);
  1490.    end else begin
  1491.       default(message);
  1492.    end;      }
  1493. //   result:=false;
  1494.    result:=true;
  1495. end;
  1496. function TComboxScrollBar.BeforeProc(var Message: TMessage):boolean;
  1497. var s:string;
  1498. begin
  1499.   {$IFDEF combox}
  1500.     s:= MsgtoStr(message);
  1501.     if s<>''  then begin
  1502.       s:=format('ComboxScrollbar %s %1x %1x',[s,message.msg,message.wparam,message.lparam]);
  1503.     end else begin
  1504.       s:=format('ComboxScrollbar %1x %1x %1x',[message.msg,message.wparam,message.lparam]);
  1505.     end;
  1506.     skinaddlog(s);
  1507.   {$ENDIF}
  1508.     case message.msg of
  1509.        WM_NCMouseMove:begin
  1510.             if message.wparam in [HTVSCROLL,HTHSCROLL] then
  1511.             result:=false;
  1512.          end;
  1513.        WM_NCPAINT:begin
  1514.           result:= WMNCPaint(message);
  1515.        end;
  1516.        WM_NCLButtonDown:begin
  1517.             if NCLButtonDown(message) then  result:=false
  1518.             else result:=true;
  1519.          end;
  1520.     else result:=inherited BeforeProc(message);
  1521.     end;
  1522. end;
  1523. function TComboxScrollBar.NCLButtonDown(var Message: TMessage):boolean;
  1524. var p0,p:Tpoint;
  1525.     msgid:longword;
  1526.     pos:integer;
  1527.     barinfo : tagScrollBarInfo;
  1528.     b:boolean;
  1529.     bar :integer;
  1530.     bw:integer;
  1531.     trackpos,inloop:boolean;
  1532.     Msg:  TMsg;
  1533.     x,x0,maxx,minx,oldpos,oldthumb,xthumb:integer;
  1534.     si:SCROLLINFO;
  1535. begin
  1536.     result:=false;
  1537.     if message.wparam <> HTVSCROLL then exit;
  1538.     fillchar(barinfo,sizeof(barinfo),#0);
  1539.     barinfo.cbSize := SizeOf(barinfo);
  1540.     P := point(message.LParamLo,message.LParamhi);
  1541.     if(message.wParam = HTHSCROLL) then begin
  1542.         msgid := WM_HSCROLL;
  1543.         bar := SB_Horz;
  1544.         b:= fsd.GetScrollBarInfo(hwnd, OBJID_HSCROLL, barinfo);
  1545.     end else if(message.wParam = HTVSCROLL) then begin
  1546.        msgid := WM_VSCROLL;
  1547.         bar := SB_Vert;
  1548.         b:=fsd.GetScrollBarInfo(hwnd, OBJID_VSCROLL, barinfo);
  1549.     end;
  1550.     if not b then exit;
  1551.     if bar=SB_Horz then x:=p.x-barinfo.rcScrollBar.left
  1552.     else x:=p.y-barinfo.rcScrollBar.top;
  1553.     if (x<barinfo.xyThumbTop) or (x>barinfo.xyThumbBottom) then exit;
  1554.     //drag thumb
  1555.     SetCapture(hwnd);
  1556.     GetCursorPos(p0);
  1557.     si.cbSize := sizeof( SCROLLINFO );
  1558.     si.fMask := SIF_ALL;
  1559.     GetScrollInfo( hWnd, bar, si );
  1560.     oldpos:=si.nPos;
  1561.     oldthumb:=barinfo.xyThumbTop-cw;
  1562.     x0:=oldpos;
  1563.     maxx:= (barinfo.rcScrollBar.Bottom-barinfo.rcScrollBar.Top)-2*cw;
  1564.     bw:=(barinfo.xyThumbBottom-barinfo.xyThumbTop);
  1565.     SetCapture(hwnd);
  1566.     trackpos:=true;
  1567.     repeat
  1568.       if PeekMessage(Msg, 0, 0, 0, PM_REMOVE) then  begin
  1569.         case Msg.message of
  1570.           WM_Mousemove,WM_NCMouseMove:begin
  1571.              TranslateMessage(Msg);
  1572.              DispatchMessage(Msg);
  1573.              GetCursorPos(p);
  1574.              if(bar=SB_Vert) then begin
  1575.                 xthumb:= oldthumb+p.y-p0.y;
  1576.              end else begin
  1577.                 xthumb:= oldthumb+p.x-p0.x;
  1578.              end;
  1579.              if xthumb<0 then xthumb:=0;
  1580.              if si.npage=0 then begin
  1581.                if xthumb>maxx-bw then xthumb:=maxx-bw;
  1582.                x:= muldiv(xthumb,(si.nMax-si.nmin),maxx)+si.nmin;
  1583.                if x>si.nmax then x:=si.nmax;
  1584.              end else begin
  1585.                if xthumb>(maxx-bw) then xthumb:=maxx-bw+1;
  1586.                x:= muldiv(xthumb,(si.nmax-si.nmin-si.nPage),maxx-bw)+si.nmin;
  1587. //               if x>si.nMax-si.nMin-si.nPage-4 then
  1588. //               fsd.DoDebug(format('thumb %1d x %1d max %1d',[xthumb,x,si.nMax]));
  1589.                if x>=(si.nmax-si.npage) then
  1590.                      x:=si.nmax-si.npage+1;
  1591.              end;
  1592.              if x<si.nmin then x:= si.nmin;
  1593.              if x<>x0 then begin
  1594.                 si.fMask:=SIF_POS;
  1595.                 si.npos:=x;
  1596.                 si.nTrackPos:=x;
  1597. //                si.thumbpos:=xthumb;
  1598. //                SetScrollInfo(hwnd,bar,si,false);
  1599.                 sendmessage(hwnd,msgid,MAKEWPARAM(SB_THUMBTRACK,x),0);
  1600.              end;
  1601.              x0:=x;
  1602.             end;
  1603.           WM_NCLBUTTONUP,WM_LBUTTONUP: begin
  1604. //              setscrollbar(true,sp[bar].MsgID);
  1605.               trackpos:=false;
  1606.               sendmessage(hwnd,msgid,MAKEWPARAM(SB_THUMBPOSITION,x),0);
  1607.               postmessage(hwnd,msgid,SB_ENDSCROLL,0);
  1608.             end;
  1609.         else
  1610.           TranslateMessage(Msg);
  1611.           DispatchMessage(Msg);
  1612.         end;
  1613.       end;
  1614.     until not trackpos;
  1615.     ReleaseCapture;
  1616.     result:=true;
  1617. end;
  1618. procedure TComboxScrollBar.Unsubclass;
  1619. begin
  1620.      inherited unsubclass;
  1621. end;
  1622. procedure TComboxScrollBar.GetThumb(rc:TRect);
  1623. var p:Tpoint;
  1624.     size:integer;
  1625. begin
  1626.     GetCursorPos(p);
  1627.     size:=thumbbottom-thumbtop;
  1628.     thumbtop:=trackthumb;
  1629.     if(sbDir=sb_Vert) then
  1630.          inc(thumbtop,p.Y-trackp.y)
  1631.     else
  1632.          inc(thumbtop,p.x-trackp.x);
  1633.     if thumbtop<cw then thumbtop:=cw;
  1634.     if thumbtop>Len-cw-size then thumbtop:=Len-cw-size;
  1635.     thumbbottom:=thumbtop+size;
  1636. end;
  1637. //paint two bar,check two bar
  1638. procedure TComboxScrollBar.DrawControl( dc:HDC; rc:TRect);
  1639. begin
  1640.     paintscrollbar(dc,rc,SB_Vert);
  1641. end;
  1642. procedure TComboxScrollBar.PaintScrollbar( dc:HDC; rc:TRect; sbtype:integer );
  1643. var rc1,rc2,rr,rr2,rr1:TRect;
  1644.     p:Tpoint;
  1645.     b,sbenable:boolean;
  1646.     temp:TBitmap;
  1647.     bw,i1,i2,swidth,n:integer;
  1648.     _width,_height:integer;
  1649.     barinfo : tagScrollBarInfo;
  1650. begin
  1651. //   if not sbvisible then exit;
  1652.    if (fsd.SArrow=nil) or fsd.sarrow.map.empty then exit;
  1653.    GetWindowRect(hwnd,rr1);
  1654.    _width:= rr1.Right-rr1.Left;
  1655.    _height:= rr1.Bottom-rr1.Top;
  1656.    fillchar(barinfo,sizeof(barinfo),#0);
  1657.    barinfo.cbSize := SizeOf(barinfo);
  1658.    if sbtype=SB_VERT then begin
  1659.       b:=fsd.GetScrollBarInfo(hwnd, OBJID_VSCROLL, barinfo);
  1660.    end else if sbtype=SB_Horz then begin
  1661.      b:= fsd.GetScrollBarInfo(hwnd, OBJID_HSCROLL, barinfo);
  1662.    end ;
  1663.    if not b then exit; //recreatewnd
  1664.    if (barinfo.rgstate[0] and STATE_SYSTEM_INVISIBLE)>0 then  exit;
  1665.    if (barinfo.rgstate[0] and STATE_SYSTEM_UNAVAILABLE)>0 then
  1666.       sbEnable:=false
  1667.    else sbEnable:=true;
  1668.    bw:=cw;
  1669.    rr:= barinfo.rcScrollBar;
  1670.    rr2:=rr;
  1671. //   _width:= rr.Right-rr.Left;
  1672. //   _height:= rr.Bottom-rr.Top;
  1673.    offsetrect(rr,-rr.left,-rr.top);
  1674.    if (rr.Bottom<0) or (rr.Right<0) then exit;
  1675.    if (rr.Bottom>_height) or (rr.Right>_width) then exit;
  1676.    if sbtype=SB_vert then len:=rc.Bottom
  1677.    else len:=rc.Right;
  1678.    swidth:=fsd.SArrow.map.height;
  1679.    //swidth
  1680.    if abs(swidth-cw)>2 then swidth:=cw;
  1681.    if sbtype=SB_vert then rr.Right:=swidth
  1682.    else rr.Bottom:=swidth;
  1683.    temp:=Tbitmap.create;
  1684.    try
  1685.    temp.width:=rr.Right;
  1686.    temp.height:=rr.Bottom;
  1687.    except
  1688.    temp.Free;
  1689.    exit;
  1690.    end;
  1691.    SetStretchBltMode(temp.canvas.handle,STRETCH_DELETESCANS);
  1692.    temp.canvas.brush.color:=fsd.colors[csbuttonface];
  1693.    temp.canvas.fillrect(rr);
  1694.    //for ws_vscroll ws_hscroll
  1695. //   if sbtype<>SB_CTL then begin
  1696. //     if sbDir=sb_Horz then rc.bottom:=swidth
  1697. //     else rc.right:=swidth;
  1698. //   end;
  1699.    rc1:=rr;
  1700.    i1:=1;
  1701.    if not sbEnable then i1:=3;
  1702.    if sbtype=SB_Horz then begin
  1703.      rc1.left:=rc1.left+bw;
  1704.      rc1.right:=rc1.right-bw;
  1705.      DrawRect2(temp.canvas.handle,rc1,fsd.HBar.map,
  1706.                    fsd.HBar.r,i1,4,fsd.hbar.trans,fsd.hbar.tile);
  1707.    end else begin
  1708.      rc1.top:=rc1.top+bw;
  1709.      rc1.bottom:=rc1.bottom-bw;
  1710.      DrawRect2(temp.canvas.handle,rc1,fsd.VBar.map,
  1711.                    fsd.VBar.r,i1,4,fsd.vbar.trans,fsd.hbar.tile);
  1712.    end;
  1713.    //Button
  1714.    rc1 := rr; rc2 := rr;
  1715.    if ( sbtype=SB_Horz ) then begin //HBar
  1716.       if (rc.right)<2*bw then  bw := rc.right  div 2;
  1717.       rc1.right := rc1.left + bw;
  1718.       rc2.left := rc2.right - bw;
  1719.       i1:=1;i2:=5;
  1720.    end else begin// SB_VERT
  1721.       if rc.bottom<2*bw then bw := rc.bottom div 2;
  1722.       rc1.bottom := rc1.top + bw;
  1723.       rc2.top := rc2.bottom - bw;
  1724.       i1:=9;i2:=13;
  1725. //      if fdown and (scrollpos=SB_LINEUP) then inc(i1);
  1726. //      if fdown and (scrollpos=SB_LINEDown) then inc(i2);
  1727.    end;
  1728.    if (scrollpos=SB_LINELeft) then begin
  1729.          if fdown then inc(i1)
  1730.          else inc(i1,3);
  1731.    end;
  1732.    if (scrollpos=SB_LINERight) then begin
  1733.          if fdown then inc(i2)
  1734.          else inc(i2,3);
  1735.    end;
  1736.    DrawSkinMap3( temp.canvas,rc1,fsd.SArrow.map,i1,23);
  1737.    DrawSkinMap3( temp.canvas,rc2,fsd.SArrow.map,i2,23);
  1738.    if fdown and (scrollpos=SB_THUMBTRACK) then
  1739.       GetThumb(rr)
  1740.    else begin
  1741.       thumbtop:=barinfo.xyThumbTop;
  1742.       thumbBottom:=barinfo.xyThumbBottom;
  1743.    end;
  1744.    i1:=1;
  1745.    if (scrollpos=SB_THUMBTRACK) then begin
  1746.       if fdown then inc(i1)
  1747.       else inc(i1,2);
  1748.    end;
  1749.    if sbEnable then begin
  1750.      if ( sbtype=SB_VERT ) then begin
  1751.         i2:=20;
  1752.         rc1:=Rect(0,thumbtop,swidth,thumbbottom);
  1753.         if (thumbtop<_Height) and (thumbbottom<_Height) then
  1754.         DrawRect2(temp.canvas.handle,rc1,fsd.VSlider.map,
  1755.                    fsd.Vslider.r,i1,fsd.Hslider.frame,fsd.hslider.trans)
  1756.      end else begin// SB_HORZ
  1757.         i2:=17;
  1758.         rc1:=Rect(thumbtop,0,thumbbottom,swidth);
  1759.         if (thumbtop<_Width) and (thumbbottom<_Width) then
  1760.         DrawRect2(temp.canvas.handle,rc1,fsd.HSlider.map,
  1761.                    fsd.Hslider.r,i1,fsd.Hslider.frame,fsd.hslider.trans)
  1762.      end;
  1763.      if (scrollpos=SB_THUMBTRACK) then begin
  1764.         if fdown then inc(i2)
  1765.         else inc(i2,2);
  1766.      end;
  1767.      bw := fsd.SArrow.map.Height;
  1768.      if (thumbbottom-thumbtop+2)>bw then begin
  1769.         n:=(thumbbottom-thumbtop-bw) div 2  ;
  1770.         if ( sbtype=SB_VERT ) then begin
  1771.           rc2:=Rect(0,thumbtop+n,swidth,thumbtop+n+bw) ;
  1772.           if (rc2.Top<_Height) and (rc2.Bottom<_Height)then
  1773.              DrawSkinMap3( temp.canvas,rc2,fsd.SArrow.map,i2,23);
  1774.         end else begin
  1775.           rc2:=Rect(thumbtop+n,0,thumbtop+n+bw,swidth);
  1776.           if (rc2.left<_Width) and (rc2.Right<_Width) then
  1777.              DrawSkinMap3( temp.canvas,rc2,fsd.SArrow.map,i2,23);
  1778.         end;
  1779.      end;
  1780.    end;
  1781.    StretchBlt(Dc,rr2.Left-rr1.Left,rr2.Top-rr1.Top,temp.width,temp.height,
  1782.                  temp.Canvas.Handle ,0 ,0 ,temp.width,temp.height,Srccopy);
  1783.    temp.free;
  1784. end;
  1785. constructor TSkinScrollbarH.Create(AOwner: TComponent);
  1786. begin
  1787.    inherited create(aowner);
  1788.    hb:=nil;
  1789.    vb:=nil;
  1790. end;
  1791. destructor TSkinScrollbarH.Destroy;
  1792. begin
  1793.    if hb<>nil then hb.free;
  1794.    if vb<>nil then vb.free;
  1795.    hb:=nil;
  1796.    vb:=nil;
  1797.    inherited;
  1798. end;
  1799. procedure TSkinScrollbarH.InitHwnd(ahwnd:Thandle;sd:TSkinData;acanvas:TCanvas;sf:Tcomponent);
  1800. begin
  1801.    skinform:=sf;
  1802.    fsd:=sd;
  1803.    fCanvas:=acanvas;
  1804.    hwnd := ahwnd;
  1805.    control:=nil;
  1806.    Twinskinform(skinform).addcontrollist(self);
  1807.    hb:=TWscrollbar.create(self);
  1808.    hb.attachhwnd(self,hwnd,sb_horz);
  1809.    vb:=TWscrollbar.create(self);
  1810.    vb.attachhwnd(self,hwnd,sb_vert);
  1811.    FObjectInst := MakeObjectInstance(NewWndProc);
  1812.    FPrevWndProc := Pointer(GetWindowLong(hwnd,GWL_WNDPROC));
  1813.    SetWindowLong(hwnd, GWL_WNDPROC,LongInt(FObjectInst));
  1814.    skinstate:=skin_active;
  1815. end;
  1816. procedure TSkinScrollBarH.SetScrollbarPos(message:TMessage);
  1817. begin
  1818.    if hb<>nil then hb.SetPosition(hwnd);
  1819.    if vb<>nil then vb.SetPosition(hwnd);
  1820. end;
  1821. procedure TSkinScrollbarH.AfterProc(var Message: TMessage);
  1822. var s:string;
  1823. begin
  1824.     if not IsWindowVisible(hwnd) then
  1825.       vb.HideScrollbar;
  1826.     case message.msg of
  1827. //       WM_NCPaint:begin
  1828.        WM_Size,WM_NCPaint:begin
  1829.           SetScrollbarPos(message);
  1830.           invalidate;
  1831.        end;
  1832.        WM_VSCROLL: begin
  1833.           if vb<>nil then begin
  1834.           vb.scrollpos:= message.WParamLo;
  1835.           vb.Invalidate;
  1836.           end;
  1837.        end;
  1838.        WM_HSCROLL: begin
  1839.           if hb<>nil then begin
  1840.           hb.scrollpos:= message.WParamLo;
  1841.           hb.Invalidate;
  1842.           end;
  1843.        end;
  1844.     else inherited Afterproc(message);
  1845.     end;
  1846. end;
  1847. procedure TSkinScrollBarH.Unsubclass;
  1848. begin
  1849.    inherited unsubclass;
  1850.    if skinstate<>skin_deleted then begin
  1851.      if hb<>nil then hb.free;
  1852.      hb:=nil;
  1853.      if vb<>nil then vb.free;
  1854.      vb:=nil;
  1855.    end;
  1856. end;
  1857. procedure TSkinScrollBarH.DrawControl( dc:HDC; rc:TRect);
  1858. var r:Trect;
  1859. begin
  1860.       if (vb<>nil) and vb.sbvisible then vb.Invalidate;
  1861.       if (hb<>nil) and hb.sbvisible then hb.Invalidate;
  1862.       if (vb<>nil) and (hb<>nil) and vb.sbvisible and hb.sbvisible then begin
  1863.          r:=rect(vb.sbRect.left,hb.sbRect.top,vb.sbRect.right+2,hb.sbRect.bottom+2);
  1864.          FillBG( dc,r);
  1865.       end;
  1866. end;
  1867. Procedure TSkinHeader.Inithwnd(ahwnd:Thandle;sd:TSkinData;acanvas:TCanvas;sf:Tcomponent);
  1868. begin
  1869.    inherited InitHwnd(ahwnd,sd,acanvas,sf);
  1870.    indexitem:=-1;
  1871. //   trackinfo.cbSize:=16;
  1872. //   trackinfo.hwndTrack:=ahwnd;
  1873. //   trackinfo.dwFlags:=2;
  1874. //   Twinskinform(owner).addcontrollist(self);
  1875. end;
  1876. procedure TSkinHeader.Init(sf:Tcomponent;sd:TSkinData;acanvas:TCanvas;acolor:boolean=false);
  1877. begin
  1878.    inherited init(sf,sd,acanvas,acolor);
  1879.    indexitem:=-1;
  1880. end;
  1881. destructor TSkinHeader.Destroy;
  1882. begin
  1883.    setlength(items,0);
  1884.    inherited destroy;
  1885. end;
  1886. function TSkinHeader.BeforeProc(var Message: TMessage):boolean;
  1887. var s:string;
  1888. begin
  1889.     result:=true;
  1890.   {$IFDEF headertest}
  1891.     case message.msg of
  1892.       WM_Notify: begin
  1893.         s:='HeaderControl WM_Notify '+ inttostr(TWMNotify(message).NMHdr^.code);
  1894.       end;
  1895.       else s:= MsgtoStr(message);
  1896.     end;
  1897.     if s<>''  then skinaddlog('HeaderControl '+s);
  1898.   {$endif headertest}
  1899.     case message.msg of
  1900.       WM_ERASEBKGND:
  1901.         if (fsd.header<>nil) and (not fsd.header.map.empty) then begin
  1902. //          ERASEBKGND(message.wparam);
  1903.             message.result:=1;
  1904.             result:=false;
  1905.         end;
  1906.        wm_paint: begin
  1907.            wmpaint(message);
  1908.            result:=false;
  1909.          end;
  1910.       else  result:=inherited beforeproc(message);
  1911.     end;
  1912. end;
  1913. procedure TSkinHeader.WMMouseMove(var Message: TMessage);
  1914. var i:integer;
  1915.     p:Tpoint;
  1916. begin
  1917.    P := point( Message.LParamLo, Message.LParamhi);
  1918.    for i:=0 to high(items) do begin
  1919.       if PtInRect(items[i],p) and (i<>indexitem) then begin
  1920.          indexitem:=i;
  1921.          invalidate;
  1922. //         fsd.DoDebug('hower:'+inttostr(i));
  1923.       end;
  1924.    end;
  1925.    WinSkinData.DoTrackMouse(hwnd);
  1926. end;
  1927. procedure TSkinHeader.AfterProc(var Message: TMessage);
  1928. var  trackinfo : TTrackMouseEvent;
  1929. begin
  1930.     case message.msg of
  1931.       WM_MOUSEMOVE: WMMouseMove(message);
  1932.       WM_MOUSELEAVE: begin
  1933.           indexitem:=-1;
  1934.           invalidate;
  1935.         end;
  1936.       else  inherited Afterproc(message);
  1937.     end;
  1938. end;
  1939. procedure TSkinHeader.DrawControl( dc:HDC; rc:TRect);
  1940. var r1:TRect;
  1941.     i,n,x:integer;
  1942.     bfont,cfont:Hfont;
  1943.     temp,temp2:Tbitmap;
  1944.     imglist:Himagelist;
  1945. begin
  1946.   if (fsd.header=nil) or (fsd.header.map.empty) then exit;
  1947.    x:=0;
  1948.    temp:=Tbitmap.create;
  1949.    temp.width:=rc.right-rc.left;
  1950.    temp.height:=rc.bottom-rc.top;
  1951.    bfont:=sendmessage(hwnd,wm_getfont,0,0);
  1952.    enabled:=true;
  1953. //   temp.canvas.Font.Color := fsd.colors[csButtonText];
  1954. //   temp.canvas.Font.style := [];
  1955.    cfont:=selectobject(temp.canvas.handle,bfont);
  1956.    SetBkMode(temp.canvas.Handle, TRANSPARENT);
  1957.    imglist:=sendmessage(hwnd,HDM_GETIMAGELIST,0,0);
  1958.    n:=Header_GetItemCount(hwnd);
  1959.    SetLength(items,n);
  1960.    for i:= 0 to n-1 do begin
  1961.        if Header_GetItemRect(hwnd,i,@r1)<>0 then begin
  1962.           drawitem(imglist,temp.canvas,r1,i);
  1963.           Items[i]:=r1;
  1964.           InflateRect(Items[i],-3,0);          
  1965.           if x<r1.right then x:=r1.right;
  1966.        end;
  1967.    end;
  1968.    if x<rc.right then begin
  1969.        r1:=rect(x,rc.top,rc.right,rc.bottom);
  1970.        temp2:=GetHMap(r1,fsd.header.map,fsd.header.r,1,
  1971.             fsd.header.frame,fsd.header.tile);
  1972.        temp.canvas.draw(r1.left,r1.top,temp2);
  1973.        temp2.free;
  1974.    end;
  1975.    BitBlt(dc,rc.left ,rc.top,rc.right-rc.left,rc.bottom-rc.top,
  1976.                  temp.Canvas.Handle ,0 ,0 ,Srccopy);
  1977.    selectobject(temp.canvas.handle,cfont);
  1978.    temp.free;
  1979. end;
  1980. procedure TSkinHeader.DrawItemImgCaption(acanvas: TCanvas; rc:TRect;
  1981.  ImgList:hImageList;imgIndex:integer;text:widestring;talign:integer=DT_CENTER);
  1982. var
  1983.   imgrect,textrect,r1,r2: TRect;
  1984.   DrawStyle: Longint;
  1985.   h,w,margin:integer;
  1986. begin
  1987.    ImageList_GetIconSize(ImgList,w,h);
  1988.    if (imgindex<>-1) and (ImgList<>0) and ((rc.Right-rc.left)>w) then begin
  1989.        imgrect:=rect(0,0,w,h);
  1990.    end else  begin
  1991.      imgrect:=rect(0,0,0,0);
  1992.      w:=0;
  1993.    end;
  1994.       //DrawStyle:= DrawStyle or dt_WordBreak ;
  1995.    DrawStyle := DT_END_ELLIPSIS or DT_EXPANDTABS ;//DT_SINGLELINE;// or DT_CENTER;
  1996.    textrect:=rc;
  1997.    if (ImgList<>0) and (imgindex<>-1) then dec(textrect.right,-(2+w));
  1998.    if Length(Text)>0 then
  1999.      TNT_DrawTextw(acanvas.Handle,Text,textrect,DrawStyle or DT_CALCRECT or DT_NOCLIP)
  2000. //     DrawText(acanvas.Handle,PChar(Text),Length(Text),textrect,DrawStyle or DT_CALCRECT or DT_NOCLIP)
  2001.    else textrect.right:=textrect.left;
  2002.    offsetrect(imgrect,rc.left,rc.top);
  2003.    case talign of
  2004.      DT_CENTER :
  2005.         margin:=(rc.right-rc.left-w-(textrect.right-textrect.left)) div 2;
  2006.      DT_Left   :
  2007.         margin:=3;
  2008.      DT_right   :
  2009.         margin:=(rc.right-rc.left-w-(textrect.right-textrect.left))-2;
  2010.    end;
  2011.    if margin<2 then margin:=1;
  2012.    offsetrect(imgrect,margin,(rc.bottom-rc.top-w) div 2);
  2013.    OffsetRect(textrect,margin+w,
  2014.           ((rc.Bottom - rc.Top)-(textrect.Bottom-textrect.Top)) div 2);
  2015.    if (ImgList<>0) and (ImgIndex<>-1) then
  2016.       ImageList_Draw(imglist,ImgIndex,ACanvas.handle,
  2017.         imgrect.Left, imgrect.Top,ILD_TRANSPARENT);
  2018.    if Length(Text)=0 then exit;
  2019.    SetBkMode(aCanvas.Handle, TRANSPARENT);
  2020.    ACanvas.Brush.Style := bsClear;
  2021.    ACanvas.font.style:=[];
  2022.    if fsd.hasColors[csText] then
  2023.        ACanvas.Font.Color := fsd.colors[csText];
  2024.        
  2025.    if not enabled then ACanvas.Font.Color := clBtnShadow;
  2026.    if textrect.Left<rc.Left then textrect.Left:=rc.Left;
  2027.    if textrect.right>rc.right then textrect.right:=rc.right;
  2028.    DrawStyle:=CheckBiDi(DrawStyle);
  2029. //   DrawText(ACanvas.Handle, PChar(Text),Length(Text),textrect,DrawStyle);
  2030.    Tnt_DrawTextW(ACanvas.Handle,Text,textrect,DrawStyle);
  2031. end;
  2032. procedure TSkinHeader.DrawItem(ImgList:hImageList;acanvas:Tcanvas;rc:Trect;index:Integer);
  2033. var  Item: THDItemW;
  2034.      Buffer: array[0..200] of Char;
  2035.      temp:Tbitmap;
  2036.      text:widestring;
  2037.      DrawStyle: Longint;
  2038.      imgindex:integer;
  2039.      r1:Trect;
  2040.      i:integer;
  2041. begin
  2042.    FillChar(Item, SizeOf(Item), 0);
  2043.    FillChar(Buffer, SizeOf(Buffer), 0);
  2044. //   Item.pszText:=buffer;
  2045.    Item.pszText:=Pwidechar(@buffer);
  2046.    Item.cchTextMax:=SizeOf(Buffer);
  2047.    Item.mask := HDI_TEXT or HDI_FORMAT or HDI_IMAGE;
  2048.    SendMessage(Hwnd, HDM_GETITEMW, index, Longint(@Item));
  2049.    i:=1;
  2050.    if index=indexitem then i:=2;
  2051.    temp:=GetHMap(rc,fsd.header.map,fsd.header.r,i,
  2052.        fsd.header.frame,fsd.header.tile);
  2053.    text:=_Wstr(Item.pszText,-1);
  2054.    if text<>'' then begin
  2055.       case (item.fmt and $0ff) of
  2056.          HDF_CENTER : DrawStyle:=DT_CENTER;
  2057.          HDF_RIGHT  : DrawStyle:=DT_Right;
  2058.          else DrawStyle:=DT_Left;
  2059.       end;
  2060.       r1:=rc;
  2061.       if item.fmt and (LVCFMT_IMAGE or LVCFMT_COL_HAS_IMAGES)=0 then begin
  2062.            item.iImage:=-1;
  2063.       end;
  2064.       offsetrect(r1,-r1.Left,-r1.Top);
  2065.       //DrawStyle:= DrawStyle or dt_WordBreak ;
  2066.       DrawItemImgCaption(temp.canvas,r1,imglist,item.iImage,text,DrawStyle);
  2067.    end;
  2068.    BitBlt(acanvas.handle,rc.left ,rc.top,rc.right-rc.left,rc.bottom-rc.top,
  2069.                  temp.Canvas.Handle ,0 ,0 ,Srccopy);
  2070.    temp.free;
  2071. {  DrawText(dc,PChar(Text),Length(Text),r1,DrawStyle or DT_CALCRECT );
  2072.    case DrawStyle of
  2073.       DT_CENTER :
  2074.          OffsetRect(r1,((rc.right-rc.left)-(r1.right-r1.left)) div 2,
  2075.                        ((rc.Bottom-rc.Top)-(r1.Bottom-r1.Top)) div 2);
  2076.       DT_Right  :
  2077.          OffsetRect(r1, ((rc.right-rc.left)-(r1.right-r1.left)-4),
  2078.                       ((rc.Bottom - rc.Top) - (r1.Bottom - r1.Top)) div 2);
  2079.       else  OffsetRect(r1, 4,((rc.Bottom - rc.Top) - (r1.Bottom - r1.Top)) div 2);
  2080.    end;
  2081.    DrawText(dc, PChar(text), -1, r1, Drawstyle);}
  2082. end;
  2083. Procedure TSkinListview.InitScrollbar(acontrol:Twincontrol;sd:TSkinData;acanvas:TCanvas;sf:Tcomponent);
  2084. var hhwnd:Thandle;
  2085. begin
  2086.     inherited initScrollbar(acontrol,sd,acanvas,sf);
  2087. //    hhwnd := 0 ;
  2088.     hhwnd := SendMessage(acontrol.handle, LVM_GETHEADER, 0, 0);
  2089.     if hhwnd<>0 then begin
  2090.         header:=Tskinheader.create(self.owner);
  2091.         header.inithwnd(hhwnd,sd,acanvas,sf);
  2092.     end; 
  2093. end;
  2094. {function TSkinListview.BeforeProc(var Message: TMessage):boolean;
  2095. begin
  2096.     case message.msg of
  2097.       WM_Notify: begin
  2098.          WMNotify(TWMNotify(message));
  2099. //         if (message.result=CDRF_NOTIFYITEMDRAW) //then result:=false;
  2100. //            or (message.result=CDRF_SKIPDEFAULT) then result:=false;
  2101.       end;
  2102.       else  inherited beforeproc(message);
  2103.     end;
  2104. end; }
  2105. procedure TSkinListview.WMNotify(var Message: TWMNotify);
  2106. var s:string;
  2107. begin
  2108.   s:='';
  2109.   with Message do
  2110.     case NMHdr^.code of
  2111. //      NM_RELEASEDCAPTURE: s:='NM_RELEASEDCAPTURE '+inttostr(NMHdr^.code);
  2112.       NM_CUSTOMDRAW : begin
  2113.           s:='NM_CUSTOMDRAW ';
  2114.           with PNMCustomDraw(NMHdr)^ do begin
  2115.             case dwDrawStage of
  2116.               CDDS_PREPAINT: begin
  2117.                  s:=s+'CDDS_PREPAINT ';
  2118.                  Result := CDRF_NOTIFYITEMDRAW ;
  2119.               end;
  2120.               CDDS_ITEMPREPAINT : begin
  2121.                  s:=s+'CDDS_ITEMPREPAINT ';
  2122. //                 result:=CDRF_SKIPDEFAULT;
  2123.               end;
  2124.             end;
  2125.           end;
  2126.       end;
  2127.       HDN_BEGINDRAG:s:='Header HDN_BEGINDRAG'+inttostr(NMHdr^.code);
  2128.       HDN_ENDDRAG :s:='Header HDN_ENDDRAG';
  2129.       HDN_ITEMCLICKW :s:='Header HDN_ITEMCLICKW';
  2130.       else s:=' WMNotify'+inttostr(NMHdr^.code);
  2131.     end;
  2132. //  if s<>''  then skinaddlog(s);
  2133. end;
  2134. procedure TSkinListview.SetHeaderOwnerDraw;
  2135. var
  2136.   hHeader: THandle;
  2137.   hdi: THDItem;
  2138.   i: Integer;
  2139.   flg: Boolean;
  2140.   view:TSkinAcListView;
  2141. begin
  2142.   if fsd.header=nil then exit;
  2143.   if fsd.header.map.empty then exit;
  2144.   view:=TSkinAcListView(control);
  2145.   hHeader := SendMessage(hwnd, LVM_GETHEADER, 0, 0);
  2146.   flg := False;
  2147.   for i := 1 to view.Columns.Count do begin
  2148.       hdi.mask := HDI_FORMAT;
  2149.       Header_GetItem(hHeader, i - 1, hdi);
  2150.       hdi.mask := HDI_FORMAT;
  2151.       if hdi.fmt <> HDF_OWNERDRAW then
  2152.         Flg := True;
  2153.       hdi.fmt := HDF_OWNERDRAW;
  2154.       Header_SetItem(hHeader, i - 1, hdi);
  2155.   end;
  2156. end;
  2157. procedure TSkinListview.HeaderProc(var Message: TMessage);
  2158. begin
  2159.     case message.msg of
  2160. {       WM_DRAWITEM: begin
  2161.           if (TWMDrawItem(Message).DrawItemStruct^.CtlType = ODT_HEADER) then         begin
  2162. //              DrawHeaderItem(TWMDrawItem(Message).DrawItemStruct^);
  2163. //             done:=true;
  2164. //             Message.Result := 0;
  2165.           end;
  2166.        end;   }
  2167.       WM_ERASEBKGND:
  2168.         if (fsd.header<>nil) and (not fsd.header.map.empty) then begin
  2169. //          ERASEBKGND(message.wparam);
  2170.           message.result:=1;
  2171.          done:=true;
  2172.       end;
  2173. {      WM_Paint:
  2174.         if (fsd.header<>nil) and (not fsd.header.map.empty) then begin
  2175. //          ERASEBKGND(message.wparam);
  2176.           Drawheader;
  2177.           message.result:=0;
  2178.           done:=true;
  2179.       end;}
  2180.       else  with message do
  2181.        Result := CallWindowProc(FDefHeaderProc,hhwnd, Msg, WParam, LParam);
  2182.     end;
  2183. end;
  2184. procedure TSkinListview.DrawHeaderItem(DrawItemStruct: TDrawItemStruct);
  2185. const LV_MAX_COLS  = 255;
  2186. var
  2187.   s,anchor,stripped: string;
  2188.   ali: DWord;
  2189.   xsize,ysize: Integer;
  2190.   vcenter,iCount,ID : Integer;
  2191.   parr:array[0..LV_MAX_COLS] of Integer;
  2192.   view:TSkinAcListView;
  2193.   r1:Trect;
  2194.   function Min(a,b: Integer):Integer;
  2195.   begin
  2196.     if a > b then
  2197.       Result := b
  2198.     else
  2199.       Result := a;
  2200.   end;
  2201. begin
  2202.   for iCount := 0 to LV_MAX_COLS do
  2203.     parr[iCount] := iCount;
  2204.   view:=TSkinAcListView(control);
  2205.   iCount := view.Columns.count;
  2206.   SendMessage(Hwnd,LVM_GETCOLUMNORDERARRAY,iCount,longint(@parr));
  2207.   with DrawItemStruct do begin
  2208.    if (Integer(itemID) < view.Columns.Count) then begin
  2209.       s := view.Columns[parr[itemID]].Caption;
  2210.       fCanvas.Handle := hDC;
  2211.       fCanvas.Brush.Color:=clwhite;
  2212.       r1:= rcitem;
  2213. //      Inflaterect(r1,2,2);
  2214. //      offsetrect(r1,-1,-1);
  2215. //      fCanvas.Fillrect(r1);
  2216. {      Inflaterect(rcitem,-2,-1);
  2217.       case Columns[itemID].Alignment of
  2218.       taLeftJustify:ali := DT_LEFT;
  2219.       taCenter:ali := DT_CENTER;
  2220.       taRightJustify:ali := DT_RIGHT;
  2221.       else
  2222.         ali := 0;
  2223.       end;}
  2224.    end;
  2225.   end;
  2226. end;
  2227. procedure TSkinListview.Drawheader;
  2228. var dc:HDC ;
  2229.     rc,r1:TRect;
  2230.     view:TSkinAcListView;
  2231.     i,x:integer;
  2232. begin
  2233.    if not GetWindowRect( hhWnd, rc ) then exit;
  2234.    OffsetRect( rc, -rc.left, -rc.top );
  2235.    DC := GetWindowDC( hhWnd );
  2236.    view:=TSkinAcListView(control);
  2237.    x:=1;
  2238.    for i:= 0 to view.Columns.count-1 do begin
  2239.        r1:=rect(x,rc.top,x+view.columns[i].width,rc.bottom);
  2240.        drawitem(dc,r1,view.columns[i]);
  2241.        x:=x+view.columns[i].width;
  2242.    end;
  2243.    if x<rc.right then begin
  2244.        r1:=rect(x,rc.top,rc.right,rc.bottom);
  2245.        drawitem(dc,r1,nil);
  2246.    end;
  2247.    ReleaseDC( hhwnd, DC );
  2248. end;
  2249. procedure TSkinListview.drawitem(dc:HDC; rc:TRect;acolumn:TListColumn);
  2250. const
  2251.   Alignments: array[TAlignment] of Longint = (DT_LEFT, DT_RIGHT, DT_CENTER);
  2252. var temp:TBitmap;
  2253.   FontHeight: Integer;
  2254.   Flags: Longint;
  2255.   acolor:Tcolor;
  2256. begin
  2257.     if (rc.right<rc.left) or (rc.bottom<rc.top) then exit;
  2258.     temp:=GetHMap(rc,fsd.header.map,fsd.header.r,1,
  2259.        fsd.header.frame,fsd.statusbar.tile);
  2260.     BitBlt(dc,rc.left ,rc.top,rc.right-rc.left,rc.bottom-rc.top,
  2261.                  temp.Canvas.Handle ,0 ,0 ,Srccopy);
  2262.     temp.free;
  2263.     if acolumn=nil then exit;
  2264. {    if text='' then exit;
  2265.   with fCanvas do begin
  2266.     SetBkMode(Handle, TRANSPARENT);
  2267.     Font := TAcControl(control).Font;
  2268.     font.style:=[];
  2269.     FontHeight := TextHeight('W');
  2270.     if (fsd.GetPrecolor(acolor,fsd.statusbar.normalcolor)) then
  2271.           fcanvas.Font.Color:= acolor;
  2272.     with rc do  begin
  2273.       Top := ((Bottom + Top) - FontHeight) div 2;
  2274.       Bottom := Top + FontHeight;
  2275. //      left:=left+fsd.statusbar.r.left;
  2276.       left:=left+2;
  2277.     end;
  2278.     Flags := DT_EXPANDTABS or DT_VCENTER or Alignments[Align];
  2279. //    Flags := DrawTextBiDiModeFlags(Flags);
  2280.     DrawText(Handle, PChar(text), -1, rc, Flags);
  2281.   end;}
  2282. end;
  2283. function TSkinSizer.BeforeProc(var Message: TMessage):boolean;
  2284. begin
  2285.    result := inherited beforeProc(message);
  2286. {    result:=true;
  2287.     case message.msg of
  2288.       WM_ERASEBKGND: begin
  2289.        Message.Result := 0;
  2290.        result:=false;
  2291.       end;
  2292.     else result:=inherited beforeProc(message);
  2293.     end;  }
  2294. end;
  2295. procedure TSkinSizer.DrawControl( dc:HDC; rc:TRect);
  2296. var  b1:HBRUSH;
  2297. begin
  2298.    B1:=CreateSolidBrush(fsd.colors[csButtonFace]);
  2299.    fillRect(dc,rc,b1);
  2300.    deleteobject(B1);
  2301. end;
  2302. procedure TSkinTabsheet.DrawControl( dc:HDC; rc:TRect);
  2303. var  b1:HBRUSH;
  2304. begin
  2305.    B1:=CreateSolidBrush(fsd.colors[csButtonFace]);
  2306.    fillRect(dc,rc,b1);
  2307.    deleteobject(B1);
  2308.    if control<>nil then
  2309.       TAcWincontrol(control).PaintControls(dc,nil);
  2310. end;
  2311. function TSkinTabsheet.BeforeProc(var Message: TMessage):boolean;
  2312. var r:Trect;
  2313. begin
  2314.     result:=inherited beforeProc(message);
  2315.     case message.msg of
  2316.     wm_paint,wm_print:
  2317.       if kind = 0 then begin
  2318.         wmpaint(message);
  2319.         result:=false;
  2320.       end;
  2321.     WM_ERASEBKGND:
  2322.        if kind = 0 then begin
  2323.             GetClientRect(hwnd,r);
  2324.             FillRect( message.wparam,r,fsd.BGbrush);
  2325.             message.Result:=1;
  2326.             result:=false;
  2327.        end ;
  2328.     end;
  2329. end;
  2330. {Procedure TSkinTabsheet.Init(sf:Tcomponent;sd:TSkinData;acanvas:TCanvas;acolor:boolean=false);
  2331. begin
  2332.    inherited init(sf,sd,acanvas,acolor);
  2333. end;   }
  2334. function TSkinBoxH.BeforeProc(var Message: TMessage):boolean;
  2335. var  b1:HBRUSH;
  2336.      dc:HDC;
  2337.      rc:Trect;
  2338. begin
  2339. //   inherited beforeProc(message);
  2340.     result:=true;
  2341.     case message.msg of
  2342.       WM_ERASEBKGND: begin
  2343.         dc:=message.WParam;
  2344.         GetWindowRect( hWnd, rc );
  2345.         offsetrect(rc,-rc.Left,-rc.Top);
  2346.         B1:=CreateSolidBrush(fsd.colors[csButtonFace]);
  2347.         fillRect(dc,rc,b1);
  2348.         deleteobject(B1);
  2349.         Message.Result := 0;
  2350.         result:=false;
  2351.       end;
  2352.       WM_CTLCOLORSTATIC:begin
  2353.          default(message);
  2354.          message.Result:=fsd.BGBrush;
  2355.          result:=false;
  2356.       end;
  2357.     else result:=inherited beforeProc(message);
  2358.     end;
  2359. end;
  2360. destructor TSkinScControl.Destroy;
  2361. begin
  2362.    if sb<>nil then
  2363.           sb.free;
  2364.    sb:=nil;
  2365.    inherited;
  2366. end;
  2367. procedure TSkinScControl.InitScrollbar(acontrol:Twincontrol;sd:TSkinData;acanvas:TCanvas;sf:Tcomponent);
  2368. begin
  2369.    fsd:=sd;
  2370.    skinform:=sf;
  2371.    control:=acontrol;
  2372.    hwnd := control.handle;
  2373.    Twinskinform(skinform).addcontrollist(self);
  2374.    sb:=TWscrollbar.create(self);
  2375.    sb.ShowHint := control.ShowHint;
  2376.    sb.Hint := control.Hint;
  2377.    sb.attach(self,control,sb_ctl);
  2378.    if not control.Visible then begin
  2379.       sb.HideScrollbar;
  2380.    end;
  2381.    OldWndProc:= Control.WindowProc;
  2382.    Control.WindowProc := NewWndProc;
  2383. end;
  2384. //       SBM_SETSCROLLINFO: begin
  2385. procedure TSkinScControl.AfterProc(var Message: TMessage);
  2386. var s:string;
  2387.     dwstyle:dword;
  2388. begin
  2389.     case message.msg of
  2390.       CM_VISIBLECHANGED : begin
  2391.           if message.wParam=0 then begin
  2392.              sb.HideScrollbar  ;
  2393.           end else begin
  2394.              if sb<>nil then sb.SetPosition(hwnd);
  2395.           end;
  2396.           end;
  2397.       WM_WINDOWPOSCHANGED: begin
  2398.            if sb<>nil then sb.SetPosition(hwnd);
  2399.          end;
  2400.        WM_NCPaint:begin
  2401.           if control<>nil then
  2402.              hwnd := control.handle;
  2403.           if sb<>nil then sb.SetPosition(hwnd);
  2404.        end;
  2405.        SBM_SETSCROLLINFO:begin
  2406.           if sb<>nil then sb.Invalidate;
  2407.        end;
  2408.        CN_VSCROLL : begin
  2409.           if sb<>nil then sb.Invalidate;
  2410.        end;
  2411.     else inherited Afterproc(message);
  2412.     end;
  2413. end;
  2414. procedure TSkinScControl.DrawControl( dc:HDC; rc:TRect);
  2415. begin
  2416.    if (sb<>nil) then sb.Invalidate;
  2417. end;
  2418. procedure TSkinScControl.Unsubclass;
  2419. begin
  2420.    inherited unsubclass;
  2421.    if skinstate<>skin_deleted then begin
  2422.       if sb<>nil then sb.free;
  2423.       sb:=nil;
  2424.    end;
  2425. end;
  2426. {procedure TSkinSceControl.InitScrollbar(acontrol:Twincontrol;ascrollbar:Tcontrol;aType:integer;
  2427.               sd:TSkinData;sf:Tcomponent);
  2428. begin
  2429.    fsd:=sd;
  2430.    skinform:=sf;
  2431.    control:=nil;
  2432.    scecontrol := ascrollbar;
  2433.    hwnd:=0;
  2434.    Twinskinform(skinform).addcontrollist(self);
  2435.    sb:=TEscrollbar.create(owner);
  2436.    sb.attach(self,acontrol,ascrollbar,atype);
  2437.    OldWndProc:= scecontrol.WindowProc;
  2438.    scecontrol.WindowProc := NewWndProc;
  2439. end;
  2440. procedure TSkinSceControl.AfterProc(var Message: TMessage);
  2441. var s:string;
  2442. begin
  2443.     case message.msg of
  2444.        wm_Lbuttondown:begin
  2445.            if sb.fdown then sb.buttonup;
  2446.          end;
  2447.        WM_NCPaint:begin
  2448.           if control<>nil then
  2449.              hwnd := control.handle;
  2450.           if sb<>nil then sb.SetPosition;
  2451.        end;
  2452.        SBM_SETSCROLLINFO:begin
  2453.           if sb<>nil then sb.Invalidate;
  2454.        end;
  2455.        WM_WINDOWPOSCHANGED : begin
  2456.           if sb<>nil then sb.SetPosition;
  2457.        end;
  2458.     else inherited Afterproc(message);
  2459.     end;
  2460. end;
  2461. procedure TSkinSceControl.DrawControl( dc:HDC; rc:TRect);
  2462. begin
  2463.   if sb<>nil then sb.Invalidate;
  2464. end;
  2465. procedure TSkinSceControl.Unsubclass;
  2466. begin
  2467.    inherited unsubclass;
  2468.    if assigned(oldwndproc) then begin
  2469.          if scecontrol<>nil then sceControl.WindowProc := OldWndProc;
  2470.          oldwndproc:=nil;
  2471.    end;
  2472.    if sb<>nil then sb.free;
  2473.    sb:=nil;
  2474. end;}
  2475. procedure TSkinObjImage.Init(sf:Tcomponent;sd:TSkinData;acanvas:TCanvas;acolor:boolean=false);
  2476. begin
  2477.    if inited then exit;
  2478.    fsd:=sd;
  2479.    skinform:=sf;
  2480.    fCanvas:=acanvas;
  2481.    control:=Twincontrol(owner);
  2482.    hwnd := control.handle;
  2483.    Twinskinform(skinform).addcontrollist(self);
  2484.    ChangeImage;
  2485. //   control.Invalidate;
  2486.    inited:=true;
  2487.    skinstate:=skin_active;
  2488. end;
  2489. procedure TSkinObjImage.ChangeImage;
  2490. begin
  2491.     if kind=1 then SetRzImage
  2492.     else if kind=2 then SetRzRadio
  2493.     else if kind=3 then setDevCheck;
  2494. end;
  2495. procedure TSkinObjImage.SetRzRadio;
  2496. var i,n,w,h,x:integer;
  2497.     temp,bmp,sbmp:Tbitmap;
  2498.     r1,r2:TRect;
  2499. begin
  2500.    if fsd.Button=nil then exit;
  2501.    if fsd.button.radiomap.empty then exit;
  2502.    n:= fsd.button.radioframe;
  2503.    sbmp:=fsd.button.radiomap;
  2504.    w:= sbmp.width div n;
  2505.    h:= sbmp.Height;
  2506.    temp:=Tbitmap.create;
  2507.    temp.Width:=w*6;
  2508.    temp.Height := h;
  2509.    r1:=rect(0,0,w,h);
  2510.    temp.Canvas.CopyRect(rect(0,0,w,h),sbmp.Canvas,r1);
  2511.    temp.Canvas.CopyRect(rect(w*2,0,w*3,h),sbmp.Canvas,r1);
  2512.    r1:=rect(w,0,2*w,h);
  2513.    temp.Canvas.CopyRect(rect(w,0,w*2,h),sbmp.Canvas,r1);
  2514.    temp.Canvas.CopyRect(rect(w*3,0,w*4,h),sbmp.Canvas,r1);
  2515.    r1:=rect(2*w,0,3*w,h);
  2516.    temp.Canvas.CopyRect(rect(w*4,0,w*5,h),sbmp.Canvas,r1);
  2517.    r1:=rect(3*w,0,4*w,h);
  2518.    temp.Canvas.CopyRect(rect(w*5,0,w*6,h),sbmp.Canvas,r1);
  2519.    bmp := TBitmap(GetObjProp(control,'CustomGlyphs',TBitmap));
  2520.    if bmp<>nil then begin
  2521.      //copybmp(temp,bmp);
  2522.      bmp.assign(temp);
  2523.      setproperty(control,'transparentcolor',inttostr(clFuchsia));
  2524.      setproperty(control,'UseCustomGlyphs','false');
  2525.      setproperty(control,'UseCustomGlyphs','true');
  2526.    end;
  2527.    temp.free;
  2528. end;
  2529. procedure TSkinObjImage.SetDevCheck;
  2530. var i,n,w,h,x:integer;
  2531.     temp,bmp,sbmp:Tbitmap;
  2532.     r1,r2:TRect;
  2533.     obj1:TObject;
  2534. begin
  2535.    if fsd.Button=nil then exit;
  2536.    if fsd.button.checkmap.empty then exit;
  2537.    n:= fsd.button.checkframe;
  2538.    sbmp:=fsd.button.checkmap;
  2539.    w:= sbmp.width div n;
  2540.    h:= sbmp.Height;
  2541.    temp:=Tbitmap.create;
  2542.    temp.Width:=w*6;
  2543.    temp.Height := h;
  2544.    r1:=rect(0,0,w,h);
  2545.    temp.Canvas.CopyRect(rect(0,0,w,h),sbmp.Canvas,r1);
  2546.    temp.Canvas.CopyRect(rect(w*3,0,w*4,h),sbmp.Canvas,r1);
  2547.    r1:=rect(w,0,2*w,h);
  2548.    temp.Canvas.CopyRect(rect(w,0,w*2,h),sbmp.Canvas,r1);
  2549.    temp.Canvas.CopyRect(rect(w*4,0,w*5,h),sbmp.Canvas,r1);
  2550.    if n=5 then begin
  2551.       r1:=rect(4*w,0,5*w,h);
  2552.       temp.Canvas.CopyRect(rect(2*w,0,w*3,h),sbmp.Canvas,r1);
  2553.       temp.Canvas.CopyRect(rect(w*5,0,w*6,h),sbmp.Canvas,r1);
  2554.    end;
  2555.    obj1 := GetObjectProp(control,'Properties');
  2556.    if obj1<>nil then begin
  2557.       bmp := TBitmap(GetObjProp(obj1,'Glyph',TBitmap));
  2558.       if bmp<>nil then begin
  2559.          //copybmp(temp,bmp);
  2560.          bmp.Assign(temp);
  2561.          bmp.TransparentColor:= clFuchsia;
  2562.          bmp.Transparent:=false;
  2563.       end;
  2564.    end;
  2565.    temp.free;
  2566. end;
  2567. procedure TSkinObjImage.SetRzImage;
  2568. var i,n,w,h,x:integer;
  2569.     temp,bmp:Tbitmap;
  2570.     r1,r2:TRect;
  2571. begin
  2572.    if fsd.Button=nil then exit;
  2573.    if fsd.button.checkmap.empty then exit;
  2574.    n:= fsd.button.checkframe;
  2575.    w:= fsd.button.checkmap.width div n;
  2576.    h:= fsd.button.CheckMap.Height;
  2577.    temp:=Tbitmap.create;
  2578.    temp.Width:=w*9;
  2579.    temp.Height := h;
  2580.    r1:=rect(0,0,w,h);
  2581.    r2:=rect(0,0,w,h);
  2582.    temp.Canvas.CopyRect(rect(0,0,w,h),fsd.button.CheckMap.Canvas,r1);
  2583.    temp.Canvas.CopyRect(rect(w*3,0,w*4,h),fsd.button.CheckMap.Canvas,r1);
  2584.    r1:=rect(w,0,2*w,h);
  2585.    temp.Canvas.CopyRect(rect(w,0,w+w,h),fsd.button.CheckMap.Canvas,r1);
  2586.    temp.Canvas.CopyRect(rect(w*4,0,w*5,h),fsd.button.CheckMap.Canvas,r1);
  2587.    r1:=rect(2*w,0,3*w,h);
  2588.    temp.Canvas.CopyRect(rect(6*w,0,7*w,h),fsd.button.CheckMap.Canvas,r1);
  2589.    r1:=rect(3*w,0,4*w,h);
  2590.    temp.Canvas.CopyRect(rect(7*w,0,8*w,h),fsd.button.CheckMap.Canvas,r1);
  2591.    if n=5 then begin
  2592.       r1:=rect(4*w,0,5*w,h);
  2593.       temp.Canvas.CopyRect(rect(2*w,0,3*w,h),fsd.button.CheckMap.Canvas,r1);
  2594.       temp.Canvas.CopyRect(rect(5*w,0,6*w,h),fsd.button.CheckMap.Canvas,r1);
  2595.       temp.Canvas.CopyRect(rect(8*w,0,9*w,h),fsd.button.CheckMap.Canvas,r1);
  2596.    end;
  2597.    bmp := TBitmap(GetObjProp(control,'CustomGlyphs',TBitmap));
  2598.    if bmp<>nil then begin
  2599.      //copybmp(temp,bmp);
  2600.      bmp.assign(temp);
  2601.      setproperty(control,'transparentcolor',inttostr(clFuchsia));
  2602.      setproperty(control,'UseCustomGlyphs','false');
  2603.      setproperty(control,'UseCustomGlyphs','true');
  2604.    end;
  2605.    temp.free;
  2606. end;
  2607. procedure TSkinObjImage.SkinChange;
  2608. begin
  2609.    ChangeImage;
  2610. end;
  2611. procedure TSkinObjImage.Unsubclass;
  2612. var obj1:Tobject;
  2613.     bmp:Tbitmap;
  2614. begin
  2615.     if kind=1 then
  2616.      setproperty(control,'UseCustomGlyphs','false');
  2617.     if kind=2 then
  2618.      setproperty(control,'UseCustomGlyphs','false');
  2619.     if kind=3 then begin
  2620.        obj1 := GetObjectProp(control,'Properties');
  2621.        if obj1<>nil then begin
  2622.            bmp := TBitmap(GetObjProp(obj1,'Glyph',TBitmap));
  2623.            if bmp<>nil then
  2624.               bmp.Assign(nil);
  2625.        end;
  2626.     end;
  2627. end;
  2628. procedure TSkinAdvPage.Init(sf:Tcomponent;sd:TSkinData;acanvas:TCanvas;acolor:boolean=false);
  2629. begin
  2630.    if inited then exit;
  2631.    inherited init(sf,sd,acanvas,acolor);
  2632.    ChangeImage;
  2633. //   control.Invalidate;
  2634.    inited:=true;
  2635.    skinstate:=skin_active;
  2636. end;
  2637. function TSkinAdvPage.FindScroll:boolean;
  2638. var Wnd: THandle;
  2639. begin
  2640.      Wnd := FindWindowEx(hwnd, 0, 'msctls_updown32', nil);
  2641.      if (Wnd<>0) and (updown=nil) then begin
  2642.              updown:=Tskinupdown.create(self.owner);
  2643.              updown.inithwnd(wnd,fsd,fcanvas,skinform);
  2644.      end;
  2645.      result:= (GetWindowLong(wnd,GWL_STYLE) and WS_visible)>0;
  2646. end;
  2647. procedure TSkinAdvPage.ChangeImage;
  2648. begin
  2649.    if kind=4 then setAdvPage;
  2650. end;
  2651. procedure TSkinAdvPage.SkinChange;
  2652. begin
  2653.    ChangeImage;
  2654. end;
  2655. procedure TSkinAdvPage.SetAdvPage;
  2656. var temp,bmp,sbmp:Tbitmap;
  2657.     r1,r2:TRect;
  2658. begin
  2659.    if fsd.tab=nil then exit;
  2660.    r1 := Rect(0,0,100,21);
  2661.    temp := GetHMap(r1,fsd.tab.map,fsd.tab.r,1,fsd.tab.frame,fsd.tab.trans,0);
  2662.    bmp := TBitmap(GetObjProp(control,'TabBackGround',TBitmap));
  2663.    if bmp<>nil then begin
  2664.      bmp.assign(temp);
  2665.    end;
  2666.    temp.free;
  2667.    temp := GetHMap(r1,fsd.tab.map,fsd.tab.r,2,fsd.tab.frame,fsd.tab.trans,0);
  2668.    bmp := TBitmap(GetObjProp(control,'TabBackGroundActive',TBitmap));
  2669.    if bmp<>nil then begin
  2670.      bmp.assign(temp);
  2671.    end;
  2672.    temp.free;
  2673. //   obj1 := GetObjectProp(control,'Properties');
  2674. //   if obj1<>nil then begin
  2675. end;
  2676. procedure TSkinAdvPage.Unsubclass;
  2677. var obj1:Tobject;
  2678.     bmp:Tbitmap;
  2679. begin
  2680.     bmp := TBitmap(GetObjProp(control,'TabBackGround',TBitmap));
  2681.     if bmp<>nil then  bmp.Assign(nil);
  2682.     bmp := TBitmap(GetObjProp(control,'TabBackGroundActive',TBitmap));
  2683.     if bmp<>nil then  bmp.Assign(nil);
  2684. end;
  2685. procedure TSkinAdvPage.DrawControl( dc:HDC; rc:TRect);
  2686. begin
  2687.    FindScroll();
  2688. end;
  2689. function TSkinTabBtn.BeforeProc(var Message: TMessage):boolean;
  2690. begin
  2691.     case message.msg of
  2692.        wm_paint: begin
  2693.               wmpaint(message);
  2694.               result:=false;
  2695.          end;
  2696.     else result:=inherited beforeProc(message);
  2697.     end;
  2698. end;
  2699. procedure TSkinTabBtn.DrawControl( dc:HDC; rc:TRect);
  2700. var i,j,n,m,bw,w,h,x,y,truerect:integer;
  2701.     rt,r1,r2,r3,r4:Trect;
  2702.     item: TC_ITEM;
  2703.     s:string;
  2704.     b: boolean;
  2705.     acolor:Tcolor;
  2706.     TCItemW: TTCItemW;
  2707.     TCItem: TTCItem;
  2708.     Buffer: array[0.._maxcaption-1] of Char;
  2709.     imglist:Himagelist;
  2710.     bfont,cfont:Hfont;
  2711.     wnd:Thandle;
  2712.     ws:widestring;
  2713.     Drawtemp:Tbitmap;
  2714. begin
  2715.    b:=(fsd.button<>nil) and (not fsd.button.map.empty);
  2716.    rt:=rc;
  2717.    enabled:= control.Enabled;
  2718.    SendMessage( hWnd, TCM_ADJUSTRECT, 0, integer(@RT) );
  2719.    InflateRect( rt, 4, 4 );
  2720.    inc(rt.top,1);
  2721.    r2:=rect(rc.left,rc.top,rc.right,rt.top);
  2722.    w:=r2.right-r2.left;
  2723.    h:=r2.bottom-r2.top;
  2724.    m:= sendmessage(hwnd,TCM_GETITEMCOUNT,0,0);
  2725.    n:= sendmessage(hwnd,TCM_GETCURFOCUS,0,0);
  2726.    sendmessage(hwnd,TCM_GETITEMRECT,n,integer(@r1));
  2727.    imglist:=sendmessage(hwnd,TCM_GETIMAGELIST,0,0);
  2728.    drawtemp:=Tbitmap.create;
  2729.    Drawtemp.PixelFormat:= pf24bit;
  2730.    if b then begin
  2731.       //tab area
  2732.       Drawtemp.width:=w;
  2733.       Drawtemp.height:=h;
  2734.       fillbg(Drawtemp.canvas.handle,rect(0,0,w,h));
  2735.       bfont:=sendmessage(hwnd,wm_getfont,0,0);
  2736.       cfont := selectobject(drawtemp.canvas.handle,bfont);
  2737. //         drawtemp.Canvas.Font.Assign(Tacwincontrol(control).font);
  2738.       SetTextColor(Drawtemp.canvas.handle,ColorToRGB(clblack));
  2739.       for i:= 0 to m-1 do begin
  2740.          if isunicode then begin
  2741.             TCItemW.mask := TCIF_IMAGE or TCIF_STATE or TCIF_TEXT ;
  2742.             TCItemW.pszText := Pwidechar(@buffer);
  2743.             TCItemW.cchTextMax  := _maxcaption;
  2744.             SendMessage(Hwnd,TCM_GETITEMW, I,Longint(@TCItemW));
  2745.             ws:=_Wstr(TCItemW.pszText,-1);
  2746.          end else begin
  2747.             TCItem.mask := TCIF_IMAGE or TCIF_STATE or TCIF_TEXT ;
  2748.             TCItem.pszText := Pchar(@buffer);
  2749.             TCItem.cchTextMax  := _maxcaption;
  2750.             SendMessage(Hwnd,TCM_GETITEM, I,Longint(@TCItem));
  2751.             ws:=StrToWideStr(buffer);
  2752.          end;
  2753.          TrueRect:=sendmessage(hwnd,TCM_GETITEMRECT,i,integer(@r1));
  2754.          if TrueRect=0 then continue;
  2755.          offsetrect(r1,0,1);
  2756.          if i=n then j:=2 else j:=1;
  2757.          DrawRect2(Drawtemp.canvas.Handle,r1,fsd.Button.Map,fsd.button.r,j,fsd.button.frame,
  2758.                fsd.button.trans,fsd.button.tile);
  2759.          if (j=1) and (fsd.button.newnormal) then
  2760.             SetTextColor(Drawtemp.canvas.handle,ColorToRGB(fsd.button.normalcolor2));
  2761.          if (j=2) and (fsd.Button.newdown) then
  2762.             SetTextColor(Drawtemp.canvas.handle,ColorToRGB(fsd.button.downcolor2));
  2763.          if isunicode then
  2764.            DrawImgCaption(Drawtemp.canvas,r1,imglist,TCItemW.iImage,ws)
  2765.          else
  2766.            DrawImgCaption(Drawtemp.canvas,r1,imglist,TCItem.iImage,ws);
  2767.       end;  //end for
  2768.       selectobject(drawtemp.canvas.handle,cfont);
  2769.       BitBlt(dc,r2.left,r2.top,r2.right,r2.bottom,
  2770.                  drawtemp.Canvas.Handle ,0 ,0 ,SrcCopy);
  2771.    end;
  2772.    drawtemp.Free;
  2773. end;
  2774. function GetDisableImg(FOriginal:TBitmap):Tbitmap;
  2775. const
  2776.   ROP_DSPDxax = $00E20746;
  2777. var
  2778.   TmpImage, DDB, MonoBmp: TBitmap;
  2779.   IWidth, IHeight: Integer;
  2780.   IRect, ORect: TRect;
  2781.   I: TButtonState;
  2782.   DestDC: HDC;
  2783. begin
  2784.   TmpImage := TBitmap.Create;
  2785.   IWidth := FOriginal.Width;
  2786.   IHeight :=  FOriginal.Height;
  2787.     TmpImage.Width := FOriginal.Width;
  2788.     TmpImage.Height := FOriginal.Height;
  2789.     IRect := Rect(0, 0, TmpImage.Width, TmpImage.Height);
  2790.     TmpImage.Canvas.Brush.Color := clBtnFace;
  2791.     TmpImage.Palette := CopyPalette(FOriginal.Palette);
  2792.           MonoBmp := nil;
  2793.           DDB := nil;
  2794.           try
  2795.             MonoBmp := TBitmap.Create;
  2796.             DDB := TBitmap.Create;
  2797.             DDB.Assign(FOriginal);
  2798.             DDB.HandleType := bmDDB;
  2799.               { Create a disabled version }
  2800.               with MonoBmp do
  2801.               begin
  2802.                 Assign(FOriginal);
  2803.                 HandleType := bmDDB;
  2804.                 Canvas.Brush.Color := clBlack;
  2805.                 Width := IWidth;
  2806.                 if Monochrome then
  2807.                 begin
  2808.                   Canvas.Font.Color := clWhite;
  2809.                   Monochrome := False;
  2810.                   Canvas.Brush.Color := clWhite;
  2811.                 end;
  2812.                 Monochrome := True;
  2813.               end;
  2814.               with TmpImage.Canvas do
  2815.               begin
  2816.                 Brush.Color := clBtnFace;
  2817.                 FillRect(IRect);
  2818.                 Brush.Color := clBtnHighlight;
  2819.                 SetTextColor(Handle, clBlack);
  2820.                 SetBkColor(Handle, clWhite);
  2821.                 BitBlt(Handle, 1, 1, IWidth, IHeight,
  2822.                   MonoBmp.Canvas.Handle, 0, 0, ROP_DSPDxax);
  2823.                 Brush.Color := clBtnShadow;
  2824.                 SetTextColor(Handle, clBlack);
  2825.                 SetBkColor(Handle, clWhite);
  2826.                 BitBlt(Handle, 0, 0, IWidth, IHeight,
  2827.                   MonoBmp.Canvas.Handle, 0, 0, ROP_DSPDxax);
  2828.               end;
  2829.           finally
  2830.             DDB.Free;
  2831.             MonoBmp.Free;
  2832.           end;
  2833.           result := TmpImage;
  2834. end;
  2835. end.