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

  1. /**************************************************/
  2. /* */
  3. /* */
  4. /* GuideBar */
  5. /* */
  6. /* Copyright (c) 1997-1999 Microsoft Corporation. */
  7. /**************************************************/
  8. #ifndef __AFXEXT_H_
  9. #include <afxext.h>
  10. #endif
  11. class CGuideBar : public CStatusBar
  12. {
  13. DECLARE_DYNAMIC(CGuideBar)
  14. public:
  15. CGuideBar();
  16. BOOL Create( CWnd* pOwnerWnd, UINT pID);
  17. // void RecalcLayout();
  18. virtual ~CGuideBar();
  19. CComboBox m_comboCharset;
  20. void PositionStatusPane();
  21. protected:
  22. #ifdef _DEBUG
  23. virtual void AssertValid() const;
  24. virtual void Dump(CDumpContext& dc) const;
  25. #endif
  26. private:
  27. // void DrawConcaveRect( CDC *pDC, int x, int y, CSize size);
  28. protected:
  29. UINT m_nColumns;
  30. CWnd* m_pOwnerWnd;
  31. private:
  32. BOOL m_comboBoxAdded;
  33. protected:
  34. //{{AFX_MSG(CGuideBar)
  35. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  36. //}}AFX_MSG
  37. DECLARE_MESSAGE_MAP()
  38. };