Home » Forms » How to Make A Gradient Title Bar
How to Make A Gradient Title Bar
Posted on January 5, 2009
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 | 'Forms - How to Make A Gradient Title Bar Option Explicit Public GradForceColors As Boolean Public GradVerticalGradient As Boolean Public GradForcedText As Long, GradForcedTextA As Long Public GradForcedFirst As Long, GradForcedSecond As Long Public GradForcedFirstA As Long, GradForcedSecondA As Long Dim GradhWnd As Long, GradIcon As Long Dim DrawDC As Long, tmpDC As Long Dim hRgn As Long Dim tmpGradFont As Long Private Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal hWnd As Long, _ ByVal nIndex As Long) As Long Private Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal hWnd As Long, _ ByVal nIndex As Long, ByVal dwNewLong As Long) As Long Private Const GWL_WNDPROC = (-4) Private Const GWL_STYLE = (-16) Private Declare Function CallWindowProc Lib "user32" Alias "CallWindowProcA" _ (ByVal lpPrevWndFunc As Long, ByVal hWnd As Long, ByVal Msg As Long, ByVal wParam As Long, _ ByVal lParam As Long) As Long Private Declare Function GetProp Lib "user32" Alias "GetPropA" (ByVal hWnd As Long, _ ByVal lpString As String) As Long Private Declare Function SetProp Lib "user32" Alias "SetPropA" (ByVal hWnd As Long, _ ByVal lpString As String, ByVal hData As Long) As Long Private Declare Function RemoveProp Lib "user32" Alias "RemovePropA" (ByVal hWnd As Long, _ ByVal lpString As String) As Long Private Const LF_FACESIZE = 32 Private Type LOGFONT lfHeight As Long lfWidth As Long lfEscapement As Long lfOrientation As Long lfWeight As Long lfItalic As Byte lfUnderline As Byte lfStrikeOut As Byte lfCharSet As Byte lfOutPrecision As Byte lfClipPrecision As Byte lfQuality As Byte lfPitchAndFamily As Byte lfFaceName(1 To LF_FACESIZE) As Byte End Type Private Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" _ (ByVal uAction As Long, ByVal uParam As Long, lpvParam As Any, ByVal fuWinIni As Long) As Long Private Const SPI_GETNONCLIENTMETRICS = 41 Private Type NONCLIENTMETRICS cbSize As Long iBorderWidth As Long iScrollWidth As Long iScrollHeight As Long iCaptionWidth As Long iCaptionHeight As Long lfCaptionFont As LOGFONT iSMCaptionWidth As Long iSMCaptionHeight As Long lfSMCaptionFont As LOGFONT iMenuWidth As Long iMenuHeight As Long lfMenuFont As LOGFONT lfStatusFont As LOGFONT lfMessageFont As LOGFONT End Type Dim CaptionFont As LOGFONT Private Declare Function CreateFontIndirect Lib "gdi32" Alias "CreateFontIndirectA" _ (lpLogFont As LOGFONT) As Long Private Type RECT Left As Long Top As Long Right As Long Bottom As Long End Type Private Declare Function IsWindowVisible Lib "user32" (ByVal hWnd As Long) As Long Private Declare Function IsZoomed Lib "user32" (ByVal hWnd As Long) As Long Private Declare Function SetCursor Lib "user32" (ByVal hCursor As Long) As Long Private Declare Function LoadCursor Lib "user32" Alias "LoadCursorA" (ByVal hInstance As Long, _ ByVal lpCursorName As Long) As Long Private Const IDC_SIZENS = 32645& Private Const IDC_SIZEWE = 32644& Private Const IDC_SIZENWSE = 32642& Private Const IDC_SIZENESW = 32643& Private Declare Function GetWindowText Lib "user32" Alias "GetWindowTextA" (ByVal hWnd As Long, _ ByVal lpString As String, ByVal cch As Long) As Long Private Declare Function GetWindowRect Lib "user32" (ByVal hWnd As Long, lpRect As RECT) As Long Private Declare Function GetActiveWindow Lib "user32" () As Long Private Const WS_BORDER = &H800000 Private Const WS_CAPTION = &HC00000 Private Const WS_DLGFRAME = &H400000 Private Const WS_MINIMIZE = &H20000000 Private Const WS_MAXIMIZE = &H1000000 Private Const WS_MAXIMIZEBOX = &H10000 Private Const WS_MINIMIZEBOX = &H20000 Private Const WS_OVERLAPPED = &H0& Private Const WS_SYSMENU = &H80000 Private Const WS_THICKFRAME = &H40000 Private Const WS_POPUP = &H80000000 Private Const WS_SIZEBOX = WS_THICKFRAME Private Const WS_TILED = WS_OVERLAPPED Private Const WS_VISIBLE = &H10000000 Private Declare Function GetParent Lib "user32" (ByVal hWnd As Long) As Long Private Declare Function GetWindowDC Lib "user32" (ByVal hWnd As Long) As Long Private Declare Function ReleaseDC Lib "user32" (ByVal hWnd As Long, ByVal hDC As Long) As Long Private Declare Function DeleteObject Lib "gdi32" (ByVal hObject As Long) As Long Private Declare Function OffsetClipRgn Lib "gdi32" (ByVal hDC As Long, ByVal x As Long, _ ByVal Y As Long) As Long Private Declare Function OffsetRect Lib "user32" (lpRect As RECT, ByVal x As Long, _ ByVal Y As Long) As Long Private Declare Function DrawIconEx Lib "user32" (ByVal hDC As Long, ByVal xLeft As Long, _ ByVal yTop As Long, ByVal hIcon As Long, ByVal cxWidth As Long, ByVal cyWidth As Long, _ ByVal istepIfAniCur As Long, ByVal hbrFlickerFreeDraw As Long, ByVal diFlags As Long) As Long Private Declare Function DrawText Lib "user32" Alias "DrawTextA" (ByVal hDC As Long, _ ByVal lpStr As String, ByVal nCount As Long, lpRect As RECT, ByVal wFormat As Long) As Long Private Const DT_SINGLELINE = &H20 Private Const DT_VCENTER = &H4 Private Const DT_END_ELLIPSIS = &H8000& Private Declare Function SelectClipRgn Lib "gdi32" (ByVal hDC As Long, ByVal hRgn As Long) As Long Private Declare Function GetClipRgn Lib "gdi32" (ByVal hDC As Long, ByVal hRgn As Long) As Long Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hWnd As Long, _ ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long Private Declare Function SelectObject Lib "gdi32" (ByVal hDC As Long, ByVal hObject As Long) As Long Private Declare Function BitBlt Lib "gdi32" (ByVal hDestDC As Long, ByVal x As Long, _ ByVal Y As Long, ByVal nWidth As Long, ByVal nHeight As Long, ByVal hSrcDC As Long, ByVal xSrc As Long, _ ByVal ySrc As Long, ByVal dwRop As Long) As Long Private Declare Function GetSysColor Lib "user32" (ByVal nIndex As Long) As Long Private Const COLOR_ACTIVECAPTION = 2 Private Const COLOR_CAPTIONTEXT = 9 Private Const COLOR_INACTIVECAPTION = 3 Private Const COLOR_INACTIVECAPTIONTEXT = 19 Private Declare Function SetBkMode Lib "gdi32" (ByVal hDC As Long, ByVal nBkMode As Long) As Long Private Const TRANSPARENT = 1 Private Declare Function SetTextColor Lib "gdi32" (ByVal hDC As Long, ByVal crColor As Long) As Long Private Declare Function GetSystemMetrics Lib "user32" (ByVal nIndex As Long) As Long Private Const SM_CXBORDER = 5 Private Const SM_CXDLGFRAME = 7 Private Const SM_CXFRAME = 32 Private Const SM_CXICON = 11 Private Const SM_CXSMSIZE = 30 Private Const SM_CYBORDER = 6 Private Const SM_CYCAPTION = 4 Private Const SM_CYDLGFRAME = 8 Private Const SM_CYFRAME = 33 Private Const SM_CYICON = 12 Private Const SM_CYMENU = 15 Private Const SM_CYSMSIZE = 31 Private Declare Function FillRect Lib "user32" (ByVal hDC As Long, lpRect As RECT, _ ByVal hBrush As Long) As Long Private Declare Function CreateCompatibleDC Lib "gdi32" (ByVal hDC As Long) As Long Private Declare Function DeleteDC Lib "gdi32" (ByVal hDC As Long) As Long Private Declare Function CreateCompatibleBitmap Lib "gdi32" (ByVal hDC As Long, _ ByVal nWidth As Long, ByVal nHeight As Long) As Long Private Declare Function CreateRectRgnIndirect Lib "gdi32" (lpRect As RECT) As Long Private Declare Function CreateRectRgn Lib "gdi32" (ByVal X1 As Long, ByVal Y1 As Long, _ ByVal X2 As Long, ByVal Y2 As Long) As Long Private Declare Function ExcludeClipRect Lib "gdi32" (ByVal hDC As Long, ByVal X1 As Long, _ ByVal Y1 As Long, ByVal X2 As Long, ByVal Y2 As Long) As Long Private Declare Function CreateSolidBrush Lib "gdi32" (ByVal crColor As Long) As Long Private Declare Function DrawFrameControl Lib "user32" (ByVal hDC As Long, lpRect As RECT, _ ByVal un1 As Long, ByVal un2 As Long) As Long Private Const DFC_CAPTION = 1 Private Const DFCS_CAPTIONRESTORE = &H3 Private Const DFCS_CAPTIONMIN = &H1 Private Const DFCS_CAPTIONMAX = &H2 Private Const DFCS_CAPTIONHELP = &H4 Private Const DFCS_CAPTIONCLOSE = &H0 Private Const DFCS_INACTIVE = &H100 Private Const WM_SIZE = &H5 Private Const WM_SETCURSOR = &H20 Private Const WM_GETICON = &H7F Private Const WM_SETICON = &H80 Private Const WM_NCACTIVATE = &H86 Private Const WM_MDIACTIVATE = &H222 Private Const WM_KILLFOCUS = &H8 Private Const WM_MOUSEACTIVATE = &H21 Private Const WM_MDIGETACTIVE = &H229 Private Const MA_ACTIVATE = 1 Private Const WM_SETTEXT = &HC Private Const WM_NCPAINT = &H85 Private Const WM_NCLBUTTONDOWN = &HA1 Private Const WM_NCRBUTTONDOWN = &HA4 Private Const WM_SYSCOMMAND = &H112 Private Const WM_INITMENUPOPUP = &H117 Private Const SC_MOUSEMENU = &HF090& Private Const SC_MOVE = &HF010& Private Const HTCAPTION = 2 Private Const HTSYSMENU = 3 Private Const HTLEFT = 10 Private Const HTRIGHT = 11 Private Const HTTOP = 12 Private Const HTTOPLEFT = 13 Private Const HTTOPRIGHT = 14 Private Const HTBOTTOM = 15 Private Const HTBOTTOMLEFT = 16 Private Const HTBOTTOMRIGHT = 17 Private Function LoWord(LongIn As Long) As Integer If (LongIn And &HFFFF&) > &H7FFF Then LoWord = (LongIn And &HFFFF&) - &H10000 Else LoWord = LongIn And &HFFFF& End If End Function Private Sub GetColors(IsActive As Boolean, LColor As Long, RColor As Long) If IsActive Then If GradForceColors Then LColor = GradForcedFirst RColor = GradForcedSecond Else LColor = vbBlack RColor = GetSysColor(COLOR_ACTIVECAPTION) End If Else If GradForceColors Then LColor = GradForcedFirstA RColor = GradForcedSecondA Else LColor = vbBlack RColor = GetSysColor(COLOR_INACTIVECAPTION) End If End If End Sub Public Sub GradientGetCapsFont() Dim NCM As NONCLIENTMETRICS Dim lfNew As LOGFONT NCM.cbSize = Len(NCM) Call SystemParametersInfo(SPI_GETNONCLIENTMETRICS, 0, NCM, 0) CaptionFont = NCM.lfCaptionFont End Sub Private Sub GetCaptionRect(hWnd As Long, rct As RECT) Dim XBorder As Long Dim fStyle As Long Dim YHeight As Long YHeight = GetSystemMetrics(SM_CYCAPTION) fStyle = GetWindowLong(hWnd, GWL_STYLE) Select Case fStyle And &H80 Case &H80 XBorder = GetSystemMetrics(SM_CXDLGFRAME) Case Else XBorder = GetSystemMetrics(SM_CXFRAME) End Select rct.Left = XBorder rct.Right = XBorder rct.Top = XBorder rct.Bottom = rct.Top + YHeight - 1 End Sub Private Sub GradateColors(Colors() As Long, ByVal Color1 As Long, ByVal Color2 As Long) Dim I As Long Dim dblR As Double, dblG As Double, dblB As Double Dim addR As Double, addG As Double, addB As Double Dim bckR As Double, bckG As Double, bckB As Double dblR = CDbl(Color1 And &HFF) dblG = CDbl(Color1 And &HFF00&) / 255 dblB = CDbl(Color1 And &HFF0000) / &HFF00& bckR = CDbl(Color2 And &HFF&) bckG = CDbl(Color2 And &HFF00&) / 255 bckB = CDbl(Color2 And &HFF0000) / &HFF00& addR = (bckR - dblR) / UBound(Colors) addG = (bckG - dblG) / UBound(Colors) addB = (bckB - dblB) / UBound(Colors) For I = 0 To UBound(Colors) dblR = dblR + addR dblG = dblG + addG dblB = dblB + addB If dblR > 255 Then dblR = 255 If dblG > 255 Then dblG = 255 If dblB > 255 Then dblB = 255 If dblR < 0 Then dblR = 0 If dblG < 0 Then dblG = 0 If dblG < 0 Then dblB = 0 Colors(I) = RGB(dblR, dblG, dblB) Next End Sub Private Function DrawGradient(ByVal Color1 As Long, ByVal Color2 As Long) As Long Dim I As Long, DestWidth As Long, DestHeight As Long, StartPnt As Long, EndPnt As Long Dim WndRect As RECT, fText As String, PixelStep As Long, XBorder As Long Dim OldFont As Long, SMSize As Long, SMSizeY As Long, fStyle As Long On Error Resume Next SMSize = GetSystemMetrics(SM_CXSMSIZE) SMSizeY = GetSystemMetrics(SM_CYSMSIZE) GetWindowRect GradhWnd, WndRect With WndRect DestWidth = .Right - .Left End With DestHeight = GetSystemMetrics(SM_CYCAPTION) fText = Space$(255) Call GetWindowText(GradhWnd, fText, 255) fText = Trim$(fText) fStyle = GetWindowLong(GradhWnd, GWL_STYLE) Select Case fStyle And &H80 Case &H80 XBorder = GetSystemMetrics(SM_CXDLGFRAME) DestWidth = (DestWidth - XBorder) Case Else XBorder = GetSystemMetrics(SM_CXFRAME) DestWidth = DestWidth - XBorder End Select StartPnt = XBorder EndPnt = XBorder + DestWidth - 4 Dim rct As RECT Dim hBr As Long With rct If Not GradVerticalGradient Then PixelStep = DestWidth \ 8 ReDim Colors(PixelStep) As Long GradateColors Colors(), Color1, Color2 .Top = XBorder .Left = XBorder .Right = XBorder + (DestWidth \ PixelStep) .Bottom = (XBorder + DestHeight - 1) If (fStyle And &H80) = &H80 Then EndPnt = EndPnt + 1 For I = 0 To PixelStep - 1 hBr = CreateSolidBrush(Colors(I)) FillRect DrawDC, rct, hBr DeleteObject hBr OffsetRect rct, (DestWidth \ PixelStep), 0 If I = PixelStep - 2 Then .Right = EndPnt Next Else PixelStep = DestHeight \ 1 ReDim Colors(PixelStep) As Long GradateColors Colors(), Color2, Color1 .Top = XBorder .Left = XBorder If (fStyle And &H80) = &H80 Then .Right = (XBorder * 2) + DestWidth + 2 Else .Right = (XBorder * 2) + DestWidth End If .Bottom = XBorder + (DestHeight \ PixelStep) For I = 0 To PixelStep - 1 hBr = CreateSolidBrush(Colors(I)) FillRect DrawDC, rct, hBr DeleteObject hBr OffsetRect rct, 0, (DestHeight \ PixelStep) If I = PixelStep - 2 Then .Bottom = XBorder + (DestHeight - 1) .Bottom = XBorder + (DestHeight - 1) Next End If .Top = XBorder If GradIcon <> 0 Then .Left = XBorder + SMSize + 2 DrawIconEx DrawDC, XBorder + 1, XBorder + 1, GradIcon, SMSize - 2, SMSize - 2, ByVal 0&, ByVal 0&, 2 Else .Left = XBorder End If tmpGradFont = CreateFontIndirect(CaptionFont) OldFont = SelectObject(DrawDC, tmpGradFont) SetBkMode DrawDC, TRANSPARENT If GradForceColors Then If Color1 = GradForcedFirst Then SetTextColor DrawDC, GradForcedText Else SetTextColor DrawDC, GradForcedTextA End If Else If Color2 = GetSysColor(COLOR_ACTIVECAPTION) Then SetTextColor DrawDC, GetSysColor(COLOR_CAPTIONTEXT) Else SetTextColor DrawDC, GetSysColor(COLOR_INACTIVECAPTIONTEXT) End If End If .Left = .Left + 2 .Right = .Right - 10 DrawText DrawDC, fText, Len(fText) - 1, rct, DT_SINGLELINE Or DT_END_ELLIPSIS Or DT_VCENTER SelectObject DrawDC, OldFont DeleteObject tmpGradFont tmpGradFont = 0 Dim frct As RECT If (fStyle And WS_SYSMENU) = WS_SYSMENU Then Dim CurMaxPic As Long If IsZoomed(GradhWnd) Then CurMaxPic = DFCS_CAPTIONRESTORE Else CurMaxPic = DFCS_CAPTIONMAX End If With frct .Right = DestWidth - 2 .Left = .Right - SMSize + 2 .Top = XBorder + 2 .Bottom = .Top + (DestHeight - 5) End With DrawFrameControl DrawDC, frct, DFC_CAPTION, DFCS_CAPTIONCLOSE OffsetRect frct, -(SMSize), 0 If (fStyle And WS_MAXIMIZEBOX) = WS_MAXIMIZEBOX And (fStyle And WS_MINIMIZEBOX) = WS_MINIMIZEBOX Then DrawFrameControl DrawDC, frct, DFC_CAPTION, CurMaxPic OffsetRect frct, -(SMSize) + 2, 0 DrawFrameControl DrawDC, frct, DFC_CAPTION, DFCS_CAPTIONMIN ElseIf (fStyle And WS_MAXIMIZEBOX) = WS_MAXIMIZEBOX Then DrawFrameControl DrawDC, frct, DFC_CAPTION, CurMaxPic OffsetRect frct, -(SMSize) + 2, 0 DrawFrameControl DrawDC, frct, DFC_CAPTION, DFCS_CAPTIONMIN Or DFCS_INACTIVE ElseIf (fStyle And WS_MINIMIZEBOX) = WS_MINIMIZEBOX Then DrawFrameControl DrawDC, frct, DFC_CAPTION, CurMaxPic Or DFCS_INACTIVE OffsetRect frct, -(SMSize) + 2, 0 DrawFrameControl DrawDC, frct, DFC_CAPTION, DFCS_CAPTIONMIN End If End If .Left = XBorder .Right = .Right + 12 If tmpDC <> 0 Then BitBlt tmpDC, .Left, .Top, .Right - .Left - 10, .Bottom - .Top, DrawDC, .Left, .Top, vbSrcCopy ExcludeClipRect tmpDC, XBorder, XBorder, DestWidth, XBorder + (DestHeight - 1) End If End With End Function Public Function GradientCallback(ByVal hWnd As Long, ByVal wMsg As Long, ByVal wParam As Long, _ ByVal lParam As Long) As Long Dim OldGradProc As Long Dim OldBMP As Long, NewBMP As Long Dim rcWnd As RECT Dim tmpFrm As Form Dim tmpCol1 As Long, tmpCol2 As Long Static GettingIcon As Boolean GradhWnd = hWnd OldGradProc = GetProp(GradhWnd, "OldMeProc") If Not GettingIcon Then GettingIcon = True GradIcon = SendMessage(hWnd, WM_GETICON, 0, ByVal 0&) GettingIcon = False End If Select Case wMsg Case WM_NCACTIVATE, WM_MDIACTIVATE, WM_KILLFOCUS, WM_MOUSEACTIVATE GetWindowRect GradhWnd, rcWnd tmpDC = GetWindowDC(GradhWnd) DrawDC = CreateCompatibleDC(tmpDC) NewBMP = CreateCompatibleBitmap(tmpDC, rcWnd.Right - rcWnd.Left, 50) OldBMP = SelectObject(DrawDC, NewBMP) With rcWnd hRgn = CreateRectRgn(.Left, .Top, .Right, .Bottom) SelectClipRgn tmpDC, hRgn OffsetClipRgn tmpDC, -.Left, -.Top End With If wMsg = WM_KILLFOCUS And GetParent(GradhWnd) <> 0 Then GetColors False, tmpCol1, tmpCol2 ElseIf wMsg = WM_NCACTIVATE And wParam And (GetParent(GradhWnd) = 0) Then GetColors True, tmpCol1, tmpCol2 ElseIf wMsg = WM_NCACTIVATE And wParam = 0 And (GetParent(GradhWnd) = 0) Then GetColors False, tmpCol1, tmpCol2 ElseIf wParam = GradhWnd And GetParent(GradhWnd) <> 0 Then GetColors False, tmpCol1, tmpCol2 ElseIf SendMessage(GetParent(GradhWnd), WM_MDIGETACTIVE, 0, 0) = GradhWnd Then GetColors True, tmpCol1, tmpCol2 ElseIf GetActiveWindow() = GradhWnd Then GetColors True, tmpCol1, tmpCol2 Else GetColors False, tmpCol1, tmpCol2 End If DrawGradient tmpCol1, tmpCol2 SelectObject DrawDC, OldBMP DeleteObject NewBMP DeleteDC DrawDC OffsetClipRgn tmpDC, rcWnd.Left, rcWnd.Top GetClipRgn tmpDC, hRgn If wMsg = WM_MOUSEACTIVATE Then GradientCallback = MA_ACTIVATE Else GradientCallback = 1 End If ReleaseDC GradhWnd, tmpDC DeleteObject hRgn tmpDC = 0 Exit Function Case WM_SETTEXT, WM_NCPAINT, WM_NCLBUTTONDOWN, WM_NCRBUTTONDOWN, WM_SYSCOMMAND, WM_INITMENUPOPUP GetWindowRect GradhWnd, rcWnd tmpDC = GetWindowDC(GradhWnd) DrawDC = CreateCompatibleDC(tmpDC) NewBMP = CreateCompatibleBitmap(tmpDC, rcWnd.Right - rcWnd.Left, 50) OldBMP = SelectObject(DrawDC, NewBMP) With rcWnd hRgn = CreateRectRgn(.Left, .Top, .Right, .Bottom) SelectClipRgn tmpDC, hRgn OffsetClipRgn tmpDC, -.Left, -.Top End With If (GetActiveWindow() = GradhWnd) Then GetColors True, tmpCol1, tmpCol2 ElseIf SendMessage(GetParent(GradhWnd), WM_MDIGETACTIVE, 0, 0) = GradhWnd Then GetColors True, tmpCol1, tmpCol2 Else GetColors False, tmpCol1, tmpCol2 End If DrawGradient tmpCol1, tmpCol2 SelectObject DrawDC, OldBMP DeleteObject NewBMP DeleteDC DrawDC OffsetClipRgn tmpDC, rcWnd.Left, rcWnd.Top GetClipRgn tmpDC, hRgn GradientCallback = CallWindowProc(OldGradProc, hWnd, WM_NCPAINT, hRgn, lParam) ReleaseDC GradhWnd, tmpDC DeleteObject hRgn tmpDC = 0 If wMsg = (WM_NCLBUTTONDOWN And wParam <> HTSYSMENU And wParam <> HTCAPTION) Or wMsg = _ (WM_SYSCOMMAND And Not (wParam = SC_MOUSEMENU)) Then GetCaptionRect GradhWnd, rcWnd ExcludeClipRect tmpDC, rcWnd.Left, rcWnd.Top, rcWnd.Right, rcWnd.Bottom ElseIf wMsg = WM_NCLBUTTONDOWN And wParam = HTCAPTION Then If IsZoomed(GradhWnd) = 0 Then GradientCallback = SendMessage(GradhWnd, WM_SYSCOMMAND, SC_MOVE, ByVal 0&) End If Exit Function Else Exit Function End If Case WM_SIZE If hWnd = GradhWnd Then SendMessage GradhWnd, WM_NCPAINT, 0, 0 End If Case WM_SETCURSOR Select Case LoWord(lParam) Case HTTOP, HTBOTTOM SetCursor LoadCursor(ByVal 0&, IDC_SIZENS) Case HTLEFT, HTRIGHT SetCursor LoadCursor(ByVal 0&, IDC_SIZEWE) Case HTTOPLEFT, HTBOTTOMRIGHT SetCursor LoadCursor(ByVal 0&, IDC_SIZENWSE) Case HTTOPRIGHT, HTBOTTOMLEFT SetCursor LoadCursor(ByVal 0&, IDC_SIZENESW) Case Else GoTo JustCallBack End Select GradientCallback = 1 Exit Function End Select JustCallBack: GradientCallback = CallWindowProc(OldGradProc, hWnd, wMsg, wParam, lParam) End Function Public Sub GradientForm(frm As Form) Dim tmpProc As Long tmpProc = SetWindowLong(frm.hWnd, GWL_WNDPROC, AddressOf GradientCallback) SetProp frm.hWnd, "OldMeProc", tmpProc End Sub Public Sub GradientReleaseForm(frm As Form) Dim tmpProc As Long tmpProc = GetProp(frm.hWnd, "OldMeProc") RemoveProp frm.hWnd, "OldMeProc" If tmpProc = 0 Then Exit Sub SetWindowLong frm.hWnd, GWL_WNDPROC, tmpProc End Sub Private Sub Form_Load() GradForceColors = True 'To draw gradient horizontally replace the True with False GradVerticalGradient = True 'Set colors for active caption GradForcedText = vbWhite 'Replace the two color values below to change the active title bar color GradForcedFirst = &H800000 GradForcedSecond = &H8000 'Set colors for Inactive caption GradForcedTextA = &HC0C0C0 'Replace the two color values below to change the inactive title bar color GradForcedFirstA = vbBlack GradForcedSecondA = vbBlue GradientGetCapsFont GradientForm Me End Sub Private Sub Form_Unload(Cancel As Integer) GradientReleaseForm Me End Sub |
Enjoy this article?
Filed under: Forms
Leave a comment