Counter Strike : Global Offensive Source Code
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.
|
|
//========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $Workfile: $
// $Date: $
//
//-----------------------------------------------------------------------------
// $Log: $
//
// $NoKeywords: $
//=============================================================================//
#ifndef RUNMAPEXPERTDLG_H
#define RUNMAPEXPERTDLG_H
#pragma once
#include "RunCommands.h"
#include "MyCheckListBox.h"
class CCommandSequence;
class CRunMapExpertDlg : public CDialog { // Construction
public: CRunMapExpertDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CRunMapExpertDlg)
enum { IDD = IDD_RUNMAPEXPERT }; CComboBox m_cCmdSequences; CButton m_cMoveUp; CButton m_cMoveDown; CEdit m_cEnsureFn; CButton m_cEnsureCheck; CButton m_cLongFilenames; CEdit m_cParameters; CEdit m_cCommand; BOOL m_bWaitForKeypress; //}}AFX_DATA
BOOL m_bSwitchMode;
CMyCheckListBox m_cCommandList; BOOL m_bNoUpdateCmd;
// currently active sequence - might be NULL <at startup>
CCommandSequence *m_pActiveSequence;
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CRunMapExpertDlg)
protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
void DeleteCommand(int iIndex); void AddCommand(int iIndex, PCCOMMAND pCommand); void MoveCommand(int iIndex, BOOL bUp); PCCOMMAND GetCommandAtIndex(int *piIndex); void UpdateCommandWithEditFields(int iIndex); void InitSequenceList(); void SaveCommandsToSequence(); LPCTSTR GetCmdString(PCCOMMAND pCommand);
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CRunMapExpertDlg)
afx_msg void OnBrowsecommand(); afx_msg void OnSelchangeCommandlist(); afx_msg void OnInsertparm(); afx_msg void OnMovedown(); afx_msg void OnMoveup(); afx_msg void OnNew(); afx_msg void OnNormal(); afx_msg void OnRemove(); afx_msg void OnUpdateCommand(); afx_msg void OnUpdateParameters(); afx_msg void OnEnsurecheck(); afx_msg void OnUpdateEnsurefn(); afx_msg void OnLongfilenames(); virtual BOOL OnInitDialog(); virtual void OnOK(); afx_msg void OnSelchangeConfigurations(); afx_msg void OnEditconfigs(); virtual void OnCancel(); //}}AFX_MSG
afx_msg BOOL HandleInsertParm(UINT nID); afx_msg BOOL HandleInsertCommand(UINT nID);
DECLARE_MESSAGE_MAP() };
#endif // RUNMAPEXPERTDLG_H
|