vbAccelerator - Contents of code file: cScrollBars.cls
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
END
Attribute VB_Name = "cScrollBars"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Option Explicit
'
===============================================================================
=======
' Name: cScrollBars
' Author: Steve McMahon (steve@vbaccelerator.com)
' Date: 22 December 1998
'
' Requires: SSUBTMR.DLL
'
' Copyright 1998-1999 Steve McMahon for vbAccelerator
'
-------------------------------------------------------------------------------
-------
' Visit vbAccelerator - advanced free source code for VB programmers
' http://vbaccelerator.com
'
-------------------------------------------------------------------------------
-------
'
' An add-in class which allows you to implement real API window scroll
' bars for any Form, UserControl or PictureBox.
'
'
' FREE SOURCE CODE - ENJOY!
'
===============================================================================
=======
'private declare function InitializeFlatSB(HWND) as long
Private Declare Function InitialiseFlatSB Lib "COMCTL32.DLL" Alias
"InitializeFlatSB" (ByVal lhWnd As Long) As Long
' Scroll bar:
Private Type SCROLLINFO
cbSize As Long
fMask As Long
nMin As Long
nMax As Long
nPage As Long
nPos As Long
nTrackPos As Long
End Type
Private Declare Function SetScrollInfo Lib "user32" (ByVal hwnd As Long, ByVal
n As Long, lpcScrollInfo As SCROLLINFO, ByVal BOOL As Boolean) As Long
Private Declare Function GetScrollInfo Lib "user32" (ByVal hwnd As Long, ByVal
n As Long, LPSCROLLINFO As SCROLLINFO) As Long
Private Declare Function GetScrollPos Lib "user32" (ByVal hwnd As Long, ByVal
nBar As Long) As Long
Private Declare Function GetScrollRange Lib "user32" (ByVal hwnd As Long, ByVal
nBar As Long, lpMinPos As Long, lpMaxPos As Long) As Long
Private Declare Function SetScrollPos Lib "user32" (ByVal hwnd As Long, ByVal
nBar As Long, ByVal nPos As Long, ByVal bRedraw As Long) As Long
Private Declare Function SetScrollRange Lib "user32" (ByVal hwnd As Long, ByVal
nBar As Long, ByVal nMinPos As Long, ByVal nMaxPos As Long, ByVal bRedraw As
Long) As Long
Private Const SB_BOTH = 3
Private Const SB_BOTTOM = 7
Private Const SB_CTL = 2
Private Const SB_ENDSCROLL = 8
Private Const SB_HORZ = 0
Private Const SB_LEFT = 6
Private Const SB_LINEDOWN = 1
Private Const SB_LINELEFT = 0
Private Const SB_LINERIGHT = 1
Private Const SB_LINEUP = 0
Private Const SB_PAGEDOWN = 3
Private Const SB_PAGELEFT = 2
Private Const SB_PAGERIGHT = 3
Private Const SB_PAGEUP = 2
Private Const SB_RIGHT = 7
Private Const SB_THUMBPOSITION = 4
Private Const SB_THUMBTRACK = 5
Private Const SB_TOP = 6
Private Const SB_VERT = 1
Private Const SIF_RANGE = &H1
Private Const SIF_PAGE = &H2
Private Const SIF_POS = &H4
Private Const SIF_DISABLENOSCROLL = &H8
Private Const SIF_TRACKPOS = &H10
Private Const SIF_ALL = (SIF_RANGE Or SIF_PAGE Or SIF_POS Or SIF_TRACKPOS)
Private Const ESB_DISABLE_BOTH = &H3
Private Const ESB_ENABLE_BOTH = &H0
Private Declare Function EnableScrollBar Lib "user32" (ByVal hwnd As Long,
ByVal wSBflags As Long, ByVal wArrows As Long) As Long
Private Declare Function ShowScrollBar Lib "user32" (ByVal hwnd As Long, ByVal
wBar As Long, ByVal bShow As Long) As Long
Private Const WM_VSCROLL = &H115
Private Const WM_HSCROLL = &H114
' Flat scroll bars:
Private Const WSB_PROP_CYVSCROLL = &H1&
Private Const WSB_PROP_CXHSCROLL = &H2&
Private Const WSB_PROP_CYHSCROLL = &H4&
Private Const WSB_PROP_CXVSCROLL = &H8&
Private Const WSB_PROP_CXHTHUMB = &H10&
Private Const WSB_PROP_CYVTHUMB = &H20&
Private Const WSB_PROP_VBKGCOLOR = &H40&
Private Const WSB_PROP_HBKGCOLOR = &H80&
Private Const WSB_PROP_VSTYLE = &H100&
Private Const WSB_PROP_HSTYLE = &H200&
Private Const WSB_PROP_WINSTYLE = &H400&
Private Const WSB_PROP_PALETTE = &H800&
Private Const WSB_PROP_MASK = &HFFF&
Private Const FSB_FLAT_MODE = 2&
Private Const FSB_ENCARTA_MODE = 1&
Private Const FSB_REGULAR_MODE = 0&
Private Declare Function FlatSB_EnableScrollBar Lib "COMCTL32.DLL" (ByVal hwnd
As Long, ByVal int2 As Long, ByVal UINT3 As Long) As Long
Private Declare Function FlatSB_ShowScrollBar Lib "COMCTL32.DLL" (ByVal hwnd As
Long, ByVal code As Long, ByVal fRedraw As Boolean) As Long
Private Declare Function FlatSB_GetScrollRange Lib "COMCTL32.DLL" (ByVal hwnd
As Long, ByVal code As Long, ByVal LPINT1 As Long, ByVal LPINT2 As Long) As
Long
Private Declare Function FlatSB_GetScrollInfo Lib "COMCTL32.DLL" (ByVal hwnd As
Long, ByVal code As Long, LPSCROLLINFO As SCROLLINFO) As Long
Private Declare Function FlatSB_GetScrollPos Lib "COMCTL32.DLL" (ByVal hwnd As
Long, ByVal code As Long) As Long
Private Declare Function FlatSB_GetScrollProp Lib "COMCTL32.DLL" (ByVal hwnd As
Long, ByVal propIndex As Long, ByVal LPINT As Long) As Long
Private Declare Function FlatSB_SetScrollPos Lib "COMCTL32.DLL" (ByVal hwnd As
Long, ByVal code As Long, ByVal pos As Long, ByVal fRedraw As Boolean) As Long
Private Declare Function FlatSB_SetScrollInfo Lib "COMCTL32.DLL" (ByVal hwnd As
Long, ByVal code As Long, LPSCROLLINFO As SCROLLINFO, ByVal fRedraw As
Boolean) As Long
Private Declare Function FlatSB_SetScrollRange Lib "COMCTL32.DLL" (ByVal hwnd
As Long, ByVal code As Long, ByVal Min As Long, ByVal Max As Long, ByVal
fRedraw As Boolean) As Long
Private Declare Function FlatSB_SetScrollProp Lib "COMCTL32.DLL" (ByVal hwnd As
Long, ByVal index As Long, ByVal newValue As Long, ByVal fRedraw As Boolean)
As Long
Private Declare Function InitializeFlatSB Lib "COMCTL32.DLL" (ByVal hwnd As
Long) As Long
Private Declare Function UninitializeFlatSB Lib "COMCTL32.DLL" (ByVal hwnd As
Long) As Long
' Message response:
Implements ISubclass
Private m_emr As EMsgResponse
' Initialisation state:
Private m_bInitialised As Boolean
' Orientation
Public Enum EFSOrientationConstants
efsoHorizontal
efsoVertical
efsoBoth
End Enum
Private m_eOrientation As EFSOrientationConstants
' Style
Public Enum EFSStyleConstants
efsRegular = FSB_REGULAR_MODE
efsEncarta = FSB_ENCARTA_MODE
efsFlat = FSB_FLAT_MODE
End Enum
Private m_eStyle As EFSStyleConstants
' Bars:
Public Enum EFSScrollBarConstants
efsHorizontal = SB_HORZ
efsVertical = SB_VERT
End Enum
' Can we have flat scroll bars?
Private m_bNoFlatScrollBars As Boolean
' hWnd we're adding scroll bars too:
Private m_hWnd As Long
' Small change amount
Private m_lSmallChangeHorz As Long
Private m_lSmallChangeVert As Long
' Enabled:
Private m_bEnabledHorz As Boolean
Private m_bEnabledVert As Boolean
' Visible
Private m_bVisibleHorz As Boolean
Private m_bVisibleVert As Boolean
Public Event Scroll(eBar As EFSScrollBarConstants)
Public Event Change(eBar As EFSScrollBarConstants)
Friend Property Get Visible(ByVal eBar As EFSScrollBarConstants) As Boolean
If (eBar = efsHorizontal) Then
Visible = m_bVisibleHorz
Else
Visible = m_bVisibleVert
End If
End Property
Friend Property Let Visible(ByVal eBar As EFSScrollBarConstants, ByVal bState
As Boolean)
If (eBar = efsHorizontal) Then
m_bVisibleHorz = bState
Else
m_bVisibleVert = bState
End If
If (m_bNoFlatScrollBars) Then
ShowScrollBar m_hWnd, eBar, Abs(bState)
Else
FlatSB_ShowScrollBar m_hWnd, eBar, Abs(bState)
End If
End Property
Friend Property Get Orientation() As EFSOrientationConstants
Orientation = m_eOrientation
End Property
Friend Property Let Orientation(ByVal eOrientation As EFSOrientationConstants)
m_eOrientation = eOrientation
pSetOrientation
End Property
Private Sub pSetOrientation()
ShowScrollBar m_hWnd, SB_HORZ, Abs((m_eOrientation = efsoBoth) Or
(m_eOrientation = efsoHorizontal))
ShowScrollBar m_hWnd, SB_VERT, Abs((m_eOrientation = efsoBoth) Or
(m_eOrientation = efsoVertical))
End Sub
Private Sub pGetSI(ByVal eBar As EFSScrollBarConstants, ByRef tSI As
SCROLLINFO, ByVal fMask As Long)
Dim lO As Long
lO = eBar
tSI.fMask = fMask
tSI.cbSize = LenB(tSI)
If (m_bNoFlatScrollBars) Then
GetScrollInfo m_hWnd, lO, tSI
Else
FlatSB_GetScrollInfo m_hWnd, lO, tSI
End If
End Sub
Private Sub pLetSI(ByVal eBar As EFSScrollBarConstants, ByRef tSI As
SCROLLINFO, ByVal fMask As Long)
Dim lO As Long
lO = eBar
tSI.fMask = fMask
tSI.cbSize = LenB(tSI)
If (m_bNoFlatScrollBars) Then
SetScrollInfo m_hWnd, lO, tSI, True
Else
FlatSB_SetScrollInfo m_hWnd, lO, tSI, True
End If
End Sub
Friend Property Get Style() As EFSStyleConstants
Style = m_eStyle
End Property
Friend Property Let Style(ByVal eStyle As EFSStyleConstants)
Dim lR As Long
If (m_bNoFlatScrollBars) Then
' can't do it..
Debug.Print "Can't set non-regular style mode on this system -
COMCTL32.DLL version < 4.71."
Exit Property
Else
If (m_eOrientation = efsoHorizontal) Or (m_eOrientation = efsoBoth) Then
lR = FlatSB_SetScrollProp(m_hWnd, WSB_PROP_HSTYLE, eStyle, True)
End If
If (m_eOrientation = efsoVertical) Or (m_eOrientation = efsoBoth) Then
lR = FlatSB_SetScrollProp(m_hWnd, WSB_PROP_VSTYLE, eStyle, True)
End If
'Debug.Print lR
m_eStyle = eStyle
End If
End Property
Friend Property Get SmallChange(ByVal eBar As EFSScrollBarConstants) As Long
If (eBar = efsHorizontal) Then
SmallChange = m_lSmallChangeHorz
Else
SmallChange = m_lSmallChangeVert
End If
End Property
Friend Property Let SmallChange(ByVal eBar As EFSScrollBarConstants, ByVal
lSmallChange As Long)
If (eBar = efsHorizontal) Then
m_lSmallChangeHorz = lSmallChange
Else
m_lSmallChangeVert = lSmallChange
End If
End Property
Friend Property Get Enabled(ByVal eBar As EFSScrollBarConstants) As Boolean
If (eBar = efsHorizontal) Then
Enabled = m_bEnabledHorz
Else
Enabled = m_bEnabledVert
End If
End Property
Friend Property Let Enabled(ByVal eBar As EFSScrollBarConstants, ByVal bEnabled
As Boolean)
Dim lO As Long
Dim lF As Long
lO = eBar
If (bEnabled) Then
lF = ESB_ENABLE_BOTH
Else
lF = ESB_DISABLE_BOTH
End If
If (m_bNoFlatScrollBars) Then
EnableScrollBar m_hWnd, lO, lF
Else
FlatSB_EnableScrollBar m_hWnd, lO, lF
End If
End Property
Friend Property Get Min(ByVal eBar As EFSScrollBarConstants) As Long
Dim tSI As SCROLLINFO
pGetSI eBar, tSI, SIF_RANGE
Min = tSI.nMin
End Property
Friend Property Get Max(ByVal eBar As EFSScrollBarConstants) As Long
Dim tSI As SCROLLINFO
pGetSI eBar, tSI, SIF_RANGE Or SIF_PAGE
Max = tSI.nMax - tSI.nPage
End Property
Friend Property Get Value(ByVal eBar As EFSScrollBarConstants) As Long
Dim tSI As SCROLLINFO
pGetSI eBar, tSI, SIF_POS
Value = tSI.nPos
End Property
Friend Property Get LargeChange(ByVal eBar As EFSScrollBarConstants) As Long
Dim tSI As SCROLLINFO
pGetSI eBar, tSI, SIF_PAGE
LargeChange = tSI.nPage
End Property
Friend Property Let Min(ByVal eBar As EFSScrollBarConstants, ByVal iMin As Long)
Dim tSI As SCROLLINFO
tSI.nMin = iMin
tSI.nMax = Max(eBar) + LargeChange(eBar)
pLetSI eBar, tSI, SIF_RANGE
End Property
Friend Property Let Max(ByVal eBar As EFSScrollBarConstants, ByVal iMax As Long)
Dim tSI As SCROLLINFO
tSI.nMax = iMax + LargeChange(eBar)
tSI.nMin = Min(eBar)
pLetSI eBar, tSI, SIF_RANGE
End Property
Friend Property Let Value(ByVal eBar As EFSScrollBarConstants, ByVal iValue As
Long)
Dim tSI As SCROLLINFO
If (iValue <> Value(eBar)) Then
tSI.nPos = iValue
pLetSI eBar, tSI, SIF_POS
pRaiseEvent eBar, False
End If
End Property
Friend Property Let LargeChange(ByVal eBar As EFSScrollBarConstants, ByVal
iLargeChange As Long)
Dim tSI As SCROLLINFO
Dim lCurMax As Long
Dim lCurLargeChange As Long
pGetSI eBar, tSI, SIF_ALL
tSI.nMax = tSI.nMax - tSI.nPage + iLargeChange
tSI.nPage = iLargeChange
pLetSI eBar, tSI, SIF_PAGE Or SIF_RANGE
End Property
Friend Property Get CanBeFlat() As Boolean
CanBeFlat = Not (m_bNoFlatScrollBars)
End Property
Private Sub pCreateScrollBar()
Dim lR As Long
Dim lStyle As Long
Dim hParent As Long
' Redraw the window so it will take (pinched from MFC):
hParent = GetParent(m_hWnd)
SetParent m_hWnd, hParent
'Redrawforaddedinsurance ('Slimy Windows Hacks')
SetWindowPos m_hWnd, HWND_NOTOPMOST, 0, 0, 0, 0, _
(SWP_NOSIZE Or SWP_NOZORDER Or _
SWP_NOMOVE Or SWP_DRAWFRAME)
On Error Resume Next
lR = InitialiseFlatSB(m_hWnd)
If (Err.Number <> 0) Then
'Can't find DLL entry point InitializeFlatSB in COMCTL32.DLL
' Means we have version prior to 4.71
' We get standard scroll bars.
m_bNoFlatScrollBars = True
Else
Style = m_eStyle
End If
End Sub
Friend Sub Create(ByVal hWndA As Long)
pClearUp
m_hWnd = hWndA
pCreateScrollBar
pAttachMessages
End Sub
Private Sub pClearUp()
If m_hWnd <> 0 Then
On Error Resume Next
' Stop flat scroll bar if we have it:
If Not (m_bNoFlatScrollBars) Then
UninitializeFlatSB m_hWnd
End If
On Error GoTo 0
' Remove subclass:
DetachMessage Me, m_hWnd, WM_HSCROLL
DetachMessage Me, m_hWnd, WM_VSCROLL
End If
m_hWnd = 0
m_bInitialised = False
End Sub
Private Sub pAttachMessages()
If (m_hWnd <> 0) Then
AttachMessage Me, m_hWnd, WM_HSCROLL
AttachMessage Me, m_hWnd, WM_VSCROLL
m_bInitialised = True
End If
End Sub
Private Sub Class_Initialize()
debugmsg "cScrollBars:Initialize"
m_lSmallChangeHorz = 1
m_lSmallChangeVert = 1
m_eStyle = efsRegular
m_eOrientation = efsoBoth
End Sub
Private Sub Class_Terminate()
pClearUp
debugmsg "cScrollBars:Terminate"
End Sub
Private Property Let ISubClass_MsgResponse(ByVal RHS As SSubTimer.EMsgResponse)
'
End Property
Private Property Get ISubClass_MsgResponse() As SSubTimer.EMsgResponse
ISubClass_MsgResponse = emrPostProcess
End Property
Private Function ISubClass_WindowProc(ByVal hwnd As Long, ByVal iMsg As Long,
ByVal wParam As Long, ByVal lParam As Long) As Long
Dim lScrollCode As Long
Dim tSI As SCROLLINFO
Dim lV As Long, lSC As Long
Dim eBar As EFSScrollBarConstants
Select Case iMsg
Case WM_VSCROLL, WM_HSCROLL
If (iMsg = WM_HSCROLL) Then
eBar = efsHorizontal
Else
eBar = efsVertical
End If
lScrollCode = (wParam And &HFFFF&)
Select Case lScrollCode
Case SB_THUMBTRACK
' Is vertical/horizontal?
pGetSI eBar, tSI, SIF_TRACKPOS
Value(eBar) = tSI.nTrackPos
pRaiseEvent eBar, True
Case SB_LEFT, SB_BOTTOM
Value(eBar) = Min(eBar)
pRaiseEvent eBar, False
Case SB_RIGHT, SB_TOP
Value(eBar) = Max(eBar)
pRaiseEvent eBar, False
Case SB_LINELEFT, SB_LINEUP
'Debug.Print "Line"
lV = Value(eBar)
If (eBar = efsHorizontal) Then
lSC = m_lSmallChangeHorz
Else
lSC = m_lSmallChangeVert
End If
If (lV - lSC < Min(eBar)) Then
Value(eBar) = Min(eBar)
Else
Value(eBar) = lV - lSC
End If
pRaiseEvent eBar, False
Case SB_LINERIGHT, SB_LINEDOWN
'Debug.Print "Line"
lV = Value(eBar)
If (eBar = efsHorizontal) Then
lSC = m_lSmallChangeHorz
Else
lSC = m_lSmallChangeVert
End If
If (lV + lSC > Max(eBar)) Then
Value(eBar) = Max(eBar)
Else
Value(eBar) = lV + lSC
End If
pRaiseEvent eBar, False
Case SB_PAGELEFT, SB_PAGEUP
Value(eBar) = Value(eBar) - LargeChange(eBar)
pRaiseEvent eBar, False
Case SB_PAGERIGHT, SB_PAGEDOWN
Value(eBar) = Value(eBar) + LargeChange(eBar)
pRaiseEvent eBar, False
Case SB_ENDSCROLL
pRaiseEvent eBar, False
End Select
End Select
End Function
Private Function pRaiseEvent(ByVal eBar As EFSScrollBarConstants, ByVal bScroll
As Boolean)
Static s_lLastValue(0 To 1) As Long
If (Value(eBar) <> s_lLastValue(eBar)) Then
If (bScroll) Then
RaiseEvent Scroll(eBar)
Else
RaiseEvent Change(eBar)
End If
s_lLastValue(eBar) = Value(eBar)
End If
End Function
|
|