Source code of Windows XP (NT5)
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.

58 lines
1.4 KiB

  1. // SelBarFm.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CFormSelectionBar form view
  5. #ifndef __AFXEXT_H__
  6. #include <afxext.h>
  7. #endif
  8. class CFormSelectionBar : public CFormView
  9. {
  10. protected:
  11. CFormSelectionBar(); // protected constructor used by dynamic creation
  12. DECLARE_DYNCREATE(CFormSelectionBar)
  13. // Form Data
  14. public:
  15. //{{AFX_DATA(CFormSelectionBar)
  16. enum { IDD = IDD_FORM_BAR };
  17. CStatic m_static_advanced;
  18. //}}AFX_DATA
  19. // Attributes
  20. public:
  21. // Operations
  22. public:
  23. // operations affecting the enable state of the selection bar
  24. void ReflectAvailability();
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CFormSelectionBar)
  28. protected:
  29. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  30. virtual void OnActivateView(BOOL bActivate, CView* pActivateView, CView* pDeactiveView);
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. protected:
  34. virtual ~CFormSelectionBar();
  35. #ifdef _DEBUG
  36. virtual void AssertValid() const;
  37. virtual void Dump(CDumpContext& dc) const;
  38. #endif
  39. // Generated message map functions
  40. //{{AFX_MSG(CFormSelectionBar)
  41. afx_msg void OnPgeMain();
  42. afx_msg void OnPgeAdvanced();
  43. afx_msg void OnPgeTour();
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. };
  47. /////////////////////////////////////////////////////////////////////////////