home *** CD-ROM | disk | FTP | other *** search
/ Freelog 54 / Freelog054.iso / Bas / Détente / WinPenguins / winpenguinsDlg.h < prev   
C/C++ Source or Header  |  2001-04-19  |  3KB  |  116 lines

  1. /**
  2.  * $Id: winpenguinsDlg.h,v 1.5 2001/04/19 19:16:16 mvines Exp $
  3.  *
  4.  *  Copyright (C) 2000  Michael Vines
  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 of the License, or
  9.  *  (at your option) 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
  18.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  *
  20.  *  As a special exception, Michael Vines gives permission to link this program
  21.  *  with the Microsoft Visual C++ Runtime/MFC Environment, and distribute the
  22.  *  resulting executable, without including the source code for the Microsoft 
  23.  *  Visual C++ Runtime/MFC Environment in the source distribution
  24.  */
  25.  
  26. #if !defined(AFX_WINPENGUINSDLG_H__9A375BB6_4AD9_4221_9C06_B83B6BF7DDA8__INCLUDED_)
  27. #define AFX_WINPENGUINSDLG_H__9A375BB6_4AD9_4221_9C06_B83B6BF7DDA8__INCLUDED_
  28.  
  29. #if _MSC_VER > 1000
  30. #pragma once
  31. #endif // _MSC_VER > 1000
  32.  
  33.  
  34. #include "UrlStatic.h"
  35.  
  36. // slowest allowed time between frames in ms
  37. #define MAX_MOVE_DELAY 150
  38.  
  39. // max number of toons
  40. #define MAX_TOON_COUNT 50
  41.  
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CAboutDlg dialog used for App About
  44.  
  45. class CAboutDlg : public CDialog
  46. {
  47. public:
  48.     CAboutDlg();
  49.  
  50. // Dialog Data
  51.     //{{AFX_DATA(CAboutDlg)
  52.     enum { IDD = IDD_ABOUTBOX };
  53.     //}}AFX_DATA
  54.  
  55.     // ClassWizard generated virtual function overrides
  56.     //{{AFX_VIRTUAL(CAboutDlg)
  57.     protected:
  58.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  59.     //}}AFX_VIRTUAL
  60.  
  61.     virtual BOOL OnInitDialog();
  62.  
  63. // Implementation
  64. protected:
  65.   CUrlStatic urlStatic;
  66.  
  67.     //{{AFX_MSG(CAboutDlg)
  68.     afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);
  69.     //}}AFX_MSG
  70.     DECLARE_MESSAGE_MAP()
  71. };
  72.  
  73.  
  74. /////////////////////////////////////////////////////////////////////////////
  75. // CWinpenguinsDlg dialog
  76.  
  77. class CWinpenguinsDlg : public CDialog
  78. {
  79. // Construction
  80. public:
  81.     CWinpenguinsDlg(CWnd* pParent = NULL);    // standard constructor
  82.  
  83. // Dialog Data
  84.     //{{AFX_DATA(CWinpenguinsDlg)
  85.     enum { IDD = IDD_WINPENGUINS_DIALOG };
  86.     int        m_pcount;
  87.     int        m_delay;
  88.     int        m_splat;
  89.     int   m_alpha;
  90.     int m_soundenabled;
  91.   int   m_santa;
  92.     //}}AFX_DATA
  93.  
  94.     // ClassWizard generated virtual function overrides
  95.     //{{AFX_VIRTUAL(CWinpenguinsDlg)
  96.     protected:
  97.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  98.     //}}AFX_VIRTUAL
  99.  
  100. // Implementation
  101. protected:
  102.     HICON m_hIcon;
  103.  
  104.     // Generated message map functions
  105.     //{{AFX_MSG(CWinpenguinsDlg)
  106.     virtual BOOL OnInitDialog();
  107.     afx_msg void OnApply();
  108.     //}}AFX_MSG
  109.     DECLARE_MESSAGE_MAP()
  110. };
  111.  
  112. //{{AFX_INSERT_LOCATION}}
  113. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  114.  
  115. #endif // !defined(AFX_WINPENGUINSDLG_H__9A375BB6_4AD9_4221_9C06_B83B6BF7DDA8__INCLUDED_)
  116.