Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

48 lines
1.0 KiB

/**************************************************/
/* */
/* */
/* GuideBar */
/* */
/* Copyright (c) 1997-1999 Microsoft Corporation. */
/**************************************************/
#ifndef __AFXEXT_H_
#include <afxext.h>
#endif
class CGuideBar : public CStatusBar
{
DECLARE_DYNAMIC(CGuideBar)
public:
CGuideBar();
BOOL Create( CWnd* pOwnerWnd, UINT pID);
// void RecalcLayout();
virtual ~CGuideBar();
CComboBox m_comboCharset;
void PositionStatusPane();
protected:
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
private:
// void DrawConcaveRect( CDC *pDC, int x, int y, CSize size);
protected:
UINT m_nColumns;
CWnd* m_pOwnerWnd;
private:
BOOL m_comboBoxAdded;
protected:
//{{AFX_MSG(CGuideBar)
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};