mirror of
https://github.com/zodiacon/WindowsInternals
synced 2026-08-09 13:18:09 +00:00
28 lines
419 B
C++
28 lines
419 B
C++
#pragma once
|
|
|
|
class CChildView;
|
|
|
|
// CMainDialogBar
|
|
|
|
class CMainDialogBar : public CDialogBar
|
|
{
|
|
DECLARE_DYNAMIC(CMainDialogBar)
|
|
|
|
public:
|
|
CMainDialogBar();
|
|
virtual ~CMainDialogBar();
|
|
|
|
void InitControls(CChildView*);
|
|
|
|
protected:
|
|
CChildView* m_pView;
|
|
|
|
void OnSetActivityLevel(UINT id);
|
|
void OnUpdateSetActivityLevel(CCmdUI* pCmdUI);
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
|
|
};
|
|
|
|
|