⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 plmyview.h

📁 此例子提供了通过显示列表绘制雨季,花伞等场景的例程.使我们更好地理解显示列表的功能.
💻 H
字号:
// plmyView.h : interface of the CPlmyView class
//
/////////////////////////////////////////////////////////////////////////////
#include "gl\gl.h"
#include "gl\glu.h"

#if !defined(AFX_PLMYVIEW_H__5E5F31B3_4C6B_45A5_8CD4_9A25D8E348FC__INCLUDED_)
#define AFX_PLMYVIEW_H__5E5F31B3_4C6B_45A5_8CD4_9A25D8E348FC__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


class CPlmyView : public CView
{
protected: // create from serialization only
	CPlmyView();
	DECLARE_DYNCREATE(CPlmyView)

// Attributes
public:
	CPlmyDoc* GetDocument();

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CPlmyView)
	public:
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	protected:
	virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
	virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
	//}}AFX_VIRTUAL

// Implementation
public:
	BOOL mykey;
	void rrain();
    float mpointsize[100];
	float px[100];
	float py[100];
	float pz[100];
	GLuint listi;
	void rain();
	float ange;
	void umbrella();
	void mylist();
	CClientDC *my_pDC;
	CRect my_oldRect;
	BOOL mytbar;
	BOOL mysbar;
	virtual ~CPlmyView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	BOOL mypixelformat();
	void mydraw();
	void myfirst();
	//{{AFX_MSG(CPlmyView)
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	afx_msg void OnDestroy();
	afx_msg void OnSize(UINT nType, int cx, int cy);
	afx_msg BOOL OnEraseBkgnd(CDC* pDC);
	afx_msg void OnMouseMove(UINT nFlags, CPoint point);
	afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
	afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
	afx_msg void OnBUTTONfull();
	afx_msg void OnBUTTONumbrella();
	afx_msg void OnTimer(UINT nIDEvent);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in plmyView.cpp
inline CPlmyDoc* CPlmyView::GetDocument()
   { return (CPlmyDoc*)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_PLMYVIEW_H__5E5F31B3_4C6B_45A5_8CD4_9A25D8E348FC__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -