00001 /*********************************************************************** 00002 * 00003 * KRYPTOS - Educational software for teaching cryptography 00004 * For more information, see http://www.kryptosproject.org/ 00005 * Submissions may be sent to kryptos@gmu.edu (see web site for details) 00006 * 00007 * 00008 * Copyright (c) 2002-2004 George Mason University 00009 * 00010 * Permission is hereby granted, free of charge, to any person obtaining 00011 * a copy of this software and associated documentation files (the 00012 * "Software"), to deal in the Software without restriction, including 00013 * without limitation the rights to use, copy, modify, merge, publish, 00014 * distribute, sublicense, and/or sell copies of the Software, and to 00015 * permit persons to whom the Software is furnished to do so, subject 00016 * to the following conditions: 00017 * 00018 * The above copyright notice and this permission notice shall be 00019 * included in all copies or substantial portions of the Software. 00020 * 00021 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 00022 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 00023 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 00024 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 00025 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 00026 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 00027 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 00028 * 00029 ***********************************************************************/ 00030 #ifndef __ABOUTDLG_H 00031 #define __ABOUTDLG_H 00032 00034 // CAboutDlg dialog 00035 00036 #include "afxwin.h" 00037 class CAboutDlg : public CDialog 00038 { 00039 // Construction 00040 public: 00041 CAboutDlg(CWnd* pParent = NULL); // standard constructor 00042 00043 // Dialog Data 00044 //{{AFX_DATA(CAboutDlg) 00045 enum { IDD = IDD_ABOUTBOX }; 00046 // NOTE: the ClassWizard will add data members here 00047 //}}AFX_DATA 00048 00049 // Overrides 00050 // ClassWizard generated virtual function overrides 00051 //{{AFX_VIRTUAL(CAboutDlg) 00052 protected: 00053 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support 00054 //}}AFX_VIRTUAL 00055 00056 // Implementation 00057 protected: 00058 00059 // Generated message map functions 00060 //{{AFX_MSG(CAboutDlg) 00061 // NOTE: the ClassWizard will add member functions here 00062 //}}AFX_MSG 00063 DECLARE_MESSAGE_MAP() 00064 public: 00065 afx_msg void OnShowWindow(BOOL bShow, UINT nStatus); 00066 CListBox m_Contributors; 00067 private: 00068 CString m_BuildID; 00069 afx_msg void OnEnChangeEdit1(); 00070 }; 00071 00072 #endif