home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 58 / pcpp58a.iso / extras / quake 3 source / Q3A_ToolSource.exe / Main / GroupBar.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-01-02  |  1.2 KB  |  49 lines

  1. #if !defined(AFX_GROUPBAR_H__926379A9_F46B_4E81_AD23_71BDDF55BDB3__INCLUDED_)
  2. #define AFX_GROUPBAR_H__926379A9_F46B_4E81_AD23_71BDDF55BDB3__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // GroupBar.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CGroupBar dialog
  12.  
  13. class CGroupBar : public CDialogBar
  14. {
  15. // Construction
  16. public:
  17.     CGroupBar(CWnd* pParent = NULL);   // standard constructor
  18.  
  19. // Dialog Data
  20.     //{{AFX_DATA(CGroupBar)
  21.     enum { IDD = IDD_GROUPBAR };
  22.     CComboBox    m_wndGroupList;
  23.     //}}AFX_DATA
  24.  
  25.  
  26. // Overrides
  27.     // ClassWizard generated virtual function overrides
  28.     //{{AFX_VIRTUAL(CGroupBar)
  29.     protected:
  30.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  31.     //}}AFX_VIRTUAL
  32.  
  33. // Implementation
  34. protected:
  35.  
  36.     // Generated message map functions
  37.     //{{AFX_MSG(CGroupBar)
  38.     afx_msg void OnBtnAddgroup();
  39.     afx_msg void OnBtnListgroups();
  40.     afx_msg void OnBtnRemovegroup();
  41.     //}}AFX_MSG
  42.     DECLARE_MESSAGE_MAP()
  43. };
  44.  
  45. //{{AFX_INSERT_LOCATION}}
  46. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  47.  
  48. #endif // !defined(AFX_GROUPBAR_H__926379A9_F46B_4E81_AD23_71BDDF55BDB3__INCLUDED_)
  49.