1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #ifndef MYTOOLBAR_H_
- #define MYTOOLBAR_H_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- /////////////////////////////////////////////////////////////////////////////
- // MyToolBar
- #include "XTOutBarCtrl.h"
- class MyToolBar : public CToolBar
- {
- YLGL m_wndOutlookBar;
- CImageList m_ImageLarge;
- CImageList m_ImageSmall;
- // Construction
- public:
- MyToolBar();
- // Operations
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(MyToolBar)
- //}}AFX_VIRTUAL
- // Implementation
- public:
- void SetSelFolder(int pos);
- void InitializeOutlookBar();
- void Init();
- virtual ~MyToolBar();
- // Generated message map functions
- protected:
- //{{AFX_MSG(MyToolBar)
- afx_msg BOOL OnEraseBkgnd(CDC* pDC);
- //}}AFX_MSG
- afx_msg LRESULT OnOutbarNotify(WPARAM wParam, LPARAM lParam);
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // MYTOOLBAR_H_
|