Private Property Set CControlBar_arrBars(ByVal RHS As CPtrArray)
'
End Property
Private Property Get CControlBar_arrBars() As CPtrArray
'
End Property
Private Property Let CControlBar_bAutoDelete(ByVal RHS As Boolean)
'
End Property
Private Property Get CControlBar_bAutoDelete() As Boolean
'
End Property
Private Property Let CControlBar_bFloating(ByVal RHS As Boolean)
'
End Property
Private Property Get CControlBar_bFloating() As Boolean
'
End Property
Private Property Let CControlBar_bLayoutQuery(ByVal RHS As Boolean)
'
End Property
Private Property Get CControlBar_bLayoutQuery() As Boolean
'
End Property
Private Function CControlBar_CreateEx(dwExStyle As Long, lpszClassName As String, lpszWindowName As String, dwStyle As Long, x As Long, y As Long, nWidth As Long, nHeight As Long, hWndParent As Long, nIDorHMenu As Long, lpParam As Long) As Boolean
'
End Function
Private Property Let CControlBar_cxDefaultGap(ByVal RHS As Long)
'
End Property
Private Property Get CControlBar_cxDefaultGap() As Long
'
End Property
Private Property Get CControlBar_cxLeftBorder() As Long
'
End Property
Private Property Let CControlBar_cxLeftBorder(ByVal RHS As Long)
'
End Property
Private Property Let CControlBar_cxRightBorder(ByVal RHS As Long)
'
End Property
Private Property Get CControlBar_cxRightBorder() As Long
'
End Property
Private Property Let CControlBar_cyBottomBorder(ByVal RHS As Long)
'
End Property
Private Property Get CControlBar_cyBottomBorder() As Long
'
End Property
Private Property Let CControlBar_cyTopBorder(ByVal RHS As Long)
'
End Property
Private Property Get CControlBar_cyTopBorder() As Long
'
End Property
Private Property Let CControlBar_dwDockStyle(ByVal RHS As Long)
'
End Property
Private Property Get CControlBar_dwDockStyle() As Long
'
End Property
Private Property Let CControlBar_dwStyle(ByVal RHS As Long)
m_dwStyle = RHS
End Property
Private Property Let m_dwStyle(ByVal RHS As Long)
ControlBar.dwStyle = RHS
End Property
Public Property Get m_dwStyle() As Long
m_dwStyle = ControlBar.dwStyle
End Property
Private Property Get CControlBar_dwStyle() As Long
CControlBar_dwStyle = m_dwStyle()
End Property
Public Property Get m_hWnd() As Long
m_hWnd = ControlBar.hWnd
End Property
Private Property Get CControlBar_hWnd() As Long
CControlBar_hWnd = ControlBar.hWnd
End Property
Public Function CControlBar_IsVisible() As Boolean
CControlBar_IsVisible = ControlBar.IsVisible
End Function
Private Property Let CControlBar_nCount(ByVal RHS As Long)
'
End Property
Private Property Get CControlBar_nCount() As Long
'
End Property
Private Property Let CControlBar_nMRUWidth(ByVal RHS As Long)
'
End Property
Private Property Get CControlBar_nMRUWidth() As Long
'
End Property
Private Property Let CControlBar_nStateFlags(ByVal RHS As Long)
'
End Property
Private Property Get CControlBar_nStateFlags() As Long
'
End Property
Private Property Let CControlBar_pDockContext(ByVal RHS As CDockContext)
'
End Property
Private Property Get CControlBar_pDockContext() As CDockContext
'
End Property
Private Function CalcInsideRect(ByRef recta As RECT, bHorz As Boolean)
Call ControlBar.CalcInsideRect(recta, bHorz)
End Function
Public Function SetBarStyle(dwStyle_param As Long)
If (m_dwStyle <> dwStyle_param) Then
Dim dwOldStyle As Long
dwOldStyle = m_dwStyle
m_dwStyle = dwStyle_param
Call OnBarStyleChange(dwOldStyle, dwStyle_param)
End If
End Function
Private Function CControlBar_SetBarStyle(dwStyle_param As Long)
Call SetBarStyle(dwStyle_param)
End Function
Private Function OnBarStyleChange(dwOldStyle As Long, dwNewStyle As Long)
'
End Function
Private Property Let CControlBar_hWndOwner(ByVal RHS As Long)
ControlBar.hWndOwner = RHS
End Property
Private Property Get CControlBar_hWndOwner() As Long
CControlBar_hWndOwner = ControlBar.hWndOwner
End Property
Public Property Let m_hWndOwner(ByVal RHS As Long)
CControlBar_hWndOwner = RHS
End Property
Public Property Get m_hWndOwner() As Long
CControlBar_hWndOwner = CControlBar_hWndOwner
End Property
Private Property Let CControlBar_pDockSite(ByVal RHS As CFrame)
ControlBar.pDockSite = RHS
End Property
Private Property Get CControlBar_pDockSite() As CFrame
Set CControlBar_pDockSite = ControlBar.pDockSite
End Property
Public Property Let m_pDockSite(RHS As CFrame)
CControlBar_pDockSite = RHS
End Property
Public Property Get m_pDockSite() As CFrame
Set m_pDockSite = CControlBar_pDockSite
End Property
Private Property Let CControlBar_pDockBar(ByVal RHS As CDockBar)
ControlBar.pDockBar = RHS
End Property
Private Property Get CControlBar_pDockBar() As CDockBar
Set CControlBar_pDockBar = ControlBar.pDockBar
End Property
Public Property Let m_pDockBar(RHS As CDockBar)
CControlBar_pDockBar = RHS
End Property
Public Property Get m_pDockBar() As CDockBar
Set m_pDockBar = CControlBar_pDockBar
End Property
Public Function Create(pParentWnd As Long, dwStyle As Long, nID As Long) As Boolean