Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
1.7 KiB

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //
  7. //=============================================================================//
  8. #if !defined(AFX_LOGSELECTPROPS_H__D6AFABDD_5BD5_11D3_A5CF_005004039597__INCLUDED_)
  9. #define AFX_LOGSELECTPROPS_H__D6AFABDD_5BD5_11D3_A5CF_005004039597__INCLUDED_
  10. #if _MSC_VER > 1000
  11. #pragma once
  12. #endif // _MSC_VER > 1000
  13. // LogSelectProps.h : header file
  14. //
  15. /////////////////////////////////////////////////////////////////////////////
  16. // LogSelectProps dialog
  17. #include "persistentstring.h"
  18. #include "ui.h"
  19. #include <list>
  20. using std::list;
  21. class CLogSelectProps : public CPropertyPage
  22. {
  23. // Construction
  24. public:
  25. virtual BOOL OnSetActive();
  26. virtual BOOL OnKillActive();
  27. list<CUIApp::CTFStatsExec>* getList();
  28. CLogSelectProps(CWnd* pParent = NULL); // standard constructor
  29. CPersistentString m_persistLastDirectory;
  30. void UpdateAppList();
  31. bool alreadyAcknowledged;
  32. // Dialog Data
  33. //{{AFX_DATA(CLogSelectProps)
  34. enum { IDD = IDD_LOGSELS };
  35. CButton m_SelectButton;
  36. CButton m_RemoveButton;
  37. CListBox m_Logs2Do;
  38. //}}AFX_DATA
  39. // Overrides
  40. // ClassWizard generated virtual function overrides
  41. //{{AFX_VIRTUAL(CLogSelectProps)
  42. protected:
  43. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  44. //}}AFX_VIRTUAL
  45. // Implementation
  46. protected:
  47. // Generated message map functions
  48. //{{AFX_MSG(CLogSelectProps)
  49. afx_msg void OnSelect();
  50. afx_msg void OnRemovelog();
  51. afx_msg void OnSelchangeLogs2do();
  52. //}}AFX_MSG
  53. DECLARE_MESSAGE_MAP()
  54. };
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  57. #endif // !defined(AFX_LOGSELECTPROPS_H__D6AFABDD_5BD5_11D3_A5CF_005004039597__INCLUDED_)