home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 58 / pcpp58a.iso / extras / quake 3 source / Q3A_ToolSource.exe / Main / ScriptDlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-01-02  |  1.3 KB  |  50 lines

  1. #if !defined(AFX_SCRIPTDLG_H__C241B9A4_819F_11D1_B548_00AA00A410FC__INCLUDED_)
  2. #define AFX_SCRIPTDLG_H__C241B9A4_819F_11D1_B548_00AA00A410FC__INCLUDED_
  3.  
  4. #if _MSC_VER >= 1000
  5. #pragma once
  6. #endif // _MSC_VER >= 1000
  7. // ScriptDlg.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CScriptDlg dialog
  12.  
  13. class CScriptDlg : public CDialog
  14. {
  15. // Construction
  16. public:
  17.     CScriptDlg(CWnd* pParent = NULL);   // standard constructor
  18.  
  19. // Dialog Data
  20.     //{{AFX_DATA(CScriptDlg)
  21.     enum { IDD = IDD_DLG_SCRIPTS };
  22.     CListBox    m_lstScripts;
  23.     CString    m_strScript;
  24.     //}}AFX_DATA
  25.  
  26.  
  27. // Overrides
  28.     // ClassWizard generated virtual function overrides
  29.     //{{AFX_VIRTUAL(CScriptDlg)
  30.     protected:
  31.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  32.     //}}AFX_VIRTUAL
  33.  
  34. // Implementation
  35. protected:
  36.  
  37.     // Generated message map functions
  38.     //{{AFX_MSG(CScriptDlg)
  39.     afx_msg void OnRun();
  40.     virtual BOOL OnInitDialog();
  41.     afx_msg void OnDblclkListScripts();
  42.     //}}AFX_MSG
  43.     DECLARE_MESSAGE_MAP()
  44. };
  45.  
  46. //{{AFX_INSERT_LOCATION}}
  47. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  48.  
  49. #endif // !defined(AFX_SCRIPTDLG_H__C241B9A4_819F_11D1_B548_00AA00A410FC__INCLUDED_)
  50.