home *** CD-ROM | disk | FTP | other *** search
/ HTBasic 9.3 / HTBasic 9.3.iso / 93win / data1.cab / DLL_Toolkit / Source / HTBToolbar / ToolBarDlg.h < prev   
Encoding:
C/C++ Source or Header  |  2005-03-02  |  1.6 KB  |  61 lines

  1. #if !defined(AFX_TOOLBARDLG_H__29788D31_BF8D_4F72_9D6A_E994047A75C1__INCLUDED_)
  2. #define AFX_TOOLBARDLG_H__29788D31_BF8D_4F72_9D6A_E994047A75C1__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // ToolBarDlg.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // ToolBarDlg dialog
  12.  
  13. class ToolBarDlg : public CDialog
  14. {
  15. // Construction
  16. public:
  17.     ToolBarDlg(CWnd* pParent = NULL);   // standard constructor
  18.     BOOL SetupImages(CImageList* mImageList);
  19.     void CreateToolBar();
  20.  
  21. // Dialog Data
  22.     //{{AFX_DATA(ToolBarDlg)
  23.     enum { IDD = IDD_TOOLBAR };
  24.     CToolBarCtrl m_ToolBar;
  25.     CImageList m_pImageList;
  26.     CToolBar    m_NewToolBar;
  27.         // NOTE: the ClassWizard will add data members here
  28.     //}}AFX_DATA
  29.  
  30.  
  31. // Overrides
  32.     // ClassWizard generated virtual function overrides
  33.     //{{AFX_VIRTUAL(ToolBarDlg)
  34.     protected:
  35.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  36.     //}}AFX_VIRTUAL
  37.  
  38. // Implementation
  39. protected:
  40.  
  41.     // Generated message map functions
  42.     //{{AFX_MSG(ToolBarDlg)
  43.     virtual BOOL OnInitDialog();
  44.     afx_msg void OnDumpit();
  45.     afx_msg void OnSavefile();
  46.     afx_msg void OnNewpad();
  47.     afx_msg void OnErase();
  48.     afx_msg void OnRed();
  49.     afx_msg void OnBlue();
  50.     afx_msg void OnYellow();
  51.     afx_msg void OnPurple();
  52.     afx_msg void OnWhite();
  53.     //}}AFX_MSG
  54.     DECLARE_MESSAGE_MAP()
  55. };
  56.  
  57. //{{AFX_INSERT_LOCATION}}
  58. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  59.  
  60. #endif // !defined(AFX_TOOLBARDLG_H__29788D31_BF8D_4F72_9D6A_E994047A75C1__INCLUDED_)
  61.