Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
3dBackgroundPropSheet.cpp
Package: gloop.zip [view]
Upload User: shxiangxiu
Upload Date: 2007-01-03
Package Size: 1101k
Code Size: 2k
Category:
OpenGL program
Development Platform:
Visual C++
- /////////////////////////////////////////////////////////////////////////////
- // 3dBackgroundPropSheet.cpp : Implementation file
- //
- // glOOP (OpenGL Object Oriented Programming library)
- // Copyright (c) Craig Fahrnbach 1997, 1998
- //
- // OpenGL is a registered trademark of Silicon Graphics
- //
- //
- // This program is provided for educational and personal use only and
- // is provided without guarantee or warrantee expressed or implied.
- //
- // Commercial use is strickly prohibited without written permission
- // from ImageWare Development.
- //
- // This program is -not- in the public domain.
- //
- /////////////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "glOOP.h"
- #include "3dObjectDialog.h"
- #include "3dBackgroundDialog.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // 3dBackgroundPropSheet dialog
- IMPLEMENT_DYNAMIC(C3dBackgroundPropSheet, CPropertySheet)
- /////////////////////////////////////////////////////////////////////////////
- // 3dBackgroundPropSheet dialog message map
- BEGIN_MESSAGE_MAP(C3dBackgroundPropSheet, CPropertySheet)
- //{{AFX_MSG_MAP(C3dBackgroundPropSheet)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // C3dBackgroundPropSheet dialog construction
- C3dBackgroundPropSheet::C3dBackgroundPropSheet(LPSTR lpName, CWnd* pWndParent, C3dWorld* pWorld)
- : CPropertySheet(lpName, pWndParent)
- {
- AddPage(&m_BackgroundPage);
- m_BackgroundPage.m_pWorld = pWorld;
- AddPage(&m_BackgroundFogPage);
- m_BackgroundFogPage.m_pWorld = pWorld;
- AddPage(&m_AnimationPage);
- m_AnimationPage.m_pWorld = pWorld;
- }
- /////////////////////////////////////////////////////////////////////////////
- // 3dBackgroundPropSheet Implimentation
- void C3dBackgroundPropSheet::PostNcDestroy()
- {
- CPropertySheet::PostNcDestroy();
- delete this;
- }