diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /hammer/pakviewfiles.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'hammer/pakviewfiles.h')
| -rw-r--r-- | hammer/pakviewfiles.h | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/hammer/pakviewfiles.h b/hammer/pakviewfiles.h new file mode 100644 index 0000000..7953137 --- /dev/null +++ b/hammer/pakviewfiles.h @@ -0,0 +1,62 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +// +//=============================================================================// +// PakViewFilesFiles.h : header file +// + +///////////////////////////////////////////////////////////////////////////// +// CPakViewFiles view + +#include <afxcview.h> // MFC clistview + +class CPakViewFiles : public CListView +{ +protected: + CPakViewFiles(); // protected constructor used by dynamic creation + DECLARE_DYNCREATE(CPakViewFiles) + + enum + { + colName, + colSize, + colType + }; + +// Attributes +public: + CPakDoc* GetDocument() + { return (CPakDoc*)m_pDocument; } + +// Operations +public: + +// Overrides + // ClassWizard generated virtual function overrides + //{{AFX_VIRTUAL(CPakViewFiles) + public: + virtual void OnInitialUpdate(); + protected: + virtual void OnDraw(CDC* pDC); // overridden to draw this view + //}}AFX_VIRTUAL + +// Implementation +protected: + virtual ~CPakViewFiles(); +#ifdef _DEBUG + virtual void AssertValid() const; + virtual void Dump(CDumpContext& dc) const; +#endif + + // Generated message map functions +protected: + //{{AFX_MSG(CPakViewFiles) + // NOTE - the ClassWizard will add and remove member functions here. + //}}AFX_MSG + DECLARE_MESSAGE_MAP() +}; + +///////////////////////////////////////////////////////////////////////////// |