home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / addins / autobld / workspcs.h < prev   
C/C++ Source or Header  |  1998-04-02  |  1KB  |  55 lines

  1. #ifndef __WORKSPCS_H__
  2. #define __WORKSPCS_H__
  3.  
  4. // Workspcs.h : header file
  5. //
  6.  
  7. // Copyright (C) 1992-1998 Microsoft Corporation
  8. // All rights reserved.
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CWorkspaces dialog
  12.  
  13. class CWorkspaces : public CDialog
  14. {
  15. // Construction
  16. public:
  17.     CWorkspaces(CWnd* pParent = NULL);   // standard constructor
  18.  
  19. // Dialog Data
  20.     //{{AFX_DATA(CWorkspaces)
  21.     enum { IDD = IDD_WORKSPACES };
  22.     CListCtrl   m_WorkspaceList;
  23.     CButton m_Remove;
  24.     CButton m_Add;
  25.     //}}AFX_DATA
  26.  
  27.  
  28. // Overrides
  29.     // ClassWizard generated virtual function overrides
  30.     //{{AFX_VIRTUAL(CWorkspaces)
  31.     protected:
  32.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  33.     //}}AFX_VIRTUAL
  34.  
  35. // Implementation
  36. protected:
  37.     CImageList m_ImageList;
  38.  
  39.     // Generated message map functions
  40.     //{{AFX_MSG(CWorkspaces)
  41.     afx_msg void OnRemove();
  42.     afx_msg void OnAddWorkspace();
  43.     afx_msg void OnMoveDown();
  44.     afx_msg void OnMoveUp();
  45.     virtual void OnOK();
  46.     virtual BOOL OnInitDialog();
  47.     //}}AFX_MSG
  48.     DECLARE_MESSAGE_MAP()
  49. };
  50.  
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  53.  
  54. #endif // __WORKSPCS_H__
  55.