RLISTVW.H
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:3k
源码类别:
Windows编程
开发平台:
Visual C++
- // RListVw.h : interface of the CRowListView class
- //
- // This is a part of the Microsoft Foundation Classes C++ library.
- // Copyright (C) 1992-1998 Microsoft Corporation
- // All rights reserved.
- //
- // This source code is only intended as a supplement to the
- // Microsoft Foundation Classes Reference and related
- // electronic documentation provided with the library.
- // See these sources for detailed information regarding the
- // Microsoft Foundation Classes product.
- class CRowListView : public CListViewEx
- {
- protected: // create from serialization only
- CRowListView();
- DECLARE_DYNCREATE(CRowListView)
- // Attributes
- public:
- CRowListDoc* GetDocument();
- // Operations
- public:
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CRowListView)
- public:
- virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
- protected:
- virtual void OnInitialUpdate(); // called first time after construct
- //}}AFX_VIRTUAL
- // Implementation
- public:
- virtual ~CRowListView();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
- protected:
- // Generated message map functions
- protected:
- //{{AFX_MSG(CRowListView)
- afx_msg void OnViewSmallIcons();
- afx_msg void OnViewLargeIcons();
- afx_msg void OnViewList();
- afx_msg void OnViewDetails();
- afx_msg void OnViewFullRowDetails();
- afx_msg void OnUpdateViewSmallIcons(CCmdUI* pCmdUI);
- afx_msg void OnUpdateViewLargeIcons(CCmdUI* pCmdUI);
- afx_msg void OnUpdateViewList(CCmdUI* pCmdUI);
- afx_msg void OnUpdateViewDetails(CCmdUI* pCmdUI);
- afx_msg void OnUpdateViewFullRowDetails(CCmdUI* pCmdUI);
- afx_msg void OnViewStateIcons();
- afx_msg void OnUpdateViewStateIcons(CCmdUI* pCmdUI);
- afx_msg void OnViewClientWidthSel();
- afx_msg void OnUpdateViewClientWidthSel(CCmdUI* pCmdUI);
- afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
- afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- // list view image lists
- protected:
- CImageList m_LargeImageList;
- CImageList m_SmallImageList;
- CImageList m_StateImageList;
- // view type helpers
- public:
- BOOL SetViewType(DWORD dwViewType);
- DWORD GetViewType();
- // flags and states
- protected:
- BOOL m_bStateIcons;
- int m_nCheckedItem;
- HICON m_hSmallIcon;
- HICON m_hLargeIcon;
- void CheckItem(int nNewCheckedItem);
- };
- #ifndef _DEBUG // debug version in RListVw.cpp
- inline CRowListDoc* CRowListView::GetDocument()
- { return (CRowListDoc*)m_pDocument; }
- #endif
- /////////////////////////////////////////////////////////////////////////////