home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 July / CMCD0704.ISO / Software / Freeware / Utilitare / VisualBoyAdvance-1.7.2 / src / win32 / AboutDialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-05-13  |  2.2 KB  |  74 lines

  1. // -*- C++ -*-
  2. // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator.
  3. // Copyright (C) 1999-2003 Forgotten
  4. // Copyright (C) 2004 Forgotten and the VBA development team
  5.  
  6. // This program is free software; you can redistribute it and/or modify
  7. // it under the terms of the GNU General Public License as published by
  8. // the Free Software Foundation; either version 2, or(at your option)
  9. // any later version.
  10. //
  11. // This program is distributed in the hope that it will be useful,
  12. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. // GNU General Public License for more details.
  15. //
  16. // You should have received a copy of the GNU General Public License
  17. // along with this program; if not, write to the Free Software Foundation,
  18. // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19.  
  20. #if !defined(AFX_ABOUTDIALOG_H__48D787B2_0699_4F03_827D_404EC70DDDB2__INCLUDED_)
  21. #define AFX_ABOUTDIALOG_H__48D787B2_0699_4F03_827D_404EC70DDDB2__INCLUDED_
  22.  
  23. #if _MSC_VER > 1000
  24. #pragma once
  25. #endif // _MSC_VER > 1000
  26. // AboutDialog.h : header file
  27. //
  28. #include "stdafx.h"
  29. #include "Hyperlink.h"
  30. #include "resource.h"
  31.  
  32. /////////////////////////////////////////////////////////////////////////////
  33. // AboutDialog dialog
  34.  
  35. class AboutDialog : public CDialog
  36. {
  37.   Hyperlink m_link;
  38.   Hyperlink m_translator;
  39.   // Construction
  40.  public:
  41.   AboutDialog(CWnd* pParent = NULL);   // standard constructor
  42.  
  43.   // Dialog Data
  44.   //{{AFX_DATA(AboutDialog)
  45.   enum { IDD = IDD_ABOUT };
  46.   CString  m_version;
  47.   //}}AFX_DATA
  48.  
  49.  
  50.   // Overrides
  51.   // ClassWizard generated virtual function overrides
  52.   //{{AFX_VIRTUAL(AboutDialog)
  53.  protected:
  54.   virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  55.   //}}AFX_VIRTUAL
  56.  
  57.   // Implementation
  58.  protected:
  59.  
  60.   // Generated message map functions
  61.   //{{AFX_MSG(AboutDialog)
  62.   virtual BOOL OnInitDialog();
  63.   virtual void OnOK();
  64.   //}}AFX_MSG
  65.  
  66.  
  67.   DECLARE_MESSAGE_MAP()
  68.     };
  69.  
  70.     //{{AFX_INSERT_LOCATION}}
  71.     // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  72.  
  73. #endif // !defined(AFX_ABOUTDIALOG_H__48D787B2_0699_4F03_827D_404EC70DDDB2__INCLUDED_)
  74.