singlefilldlg.h

来自「evc下ArcInfo操作程序源代码」· C头文件 代码 · 共 67 行

H
67
字号
#if !defined(AFX_SINGLEFILLDLG_H__9689BDDC_1D19_4408_8069_D1F9441F0E70__INCLUDED_)
#define AFX_SINGLEFILLDLG_H__9689BDDC_1D19_4408_8069_D1F9441F0E70__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// SingleFillDlg.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CSingleFillDlg dialog

#include "MapLayer.h"
#include "MapRender.h"

#include "ColorDlg.h"

class CSingleFillDlg : public CDialog
{
// Construction
public:
	CSingleFillDlg(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CSingleFillDlg)
	enum { IDD = IDD_SINGLE_FILL_DIALOG };
		// NOTE: the ClassWizard will add data members here
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CSingleFillDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CSingleFillDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnPaint();
	afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
	virtual void OnOK();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

public:
	COLORREF       m_FillColor;
	COLORREF       m_OutlineColor;
	CString        m_csLayerName;

protected:
	int            m_Hot;
	CRect          m_RCFill;
	CRect          m_RCOutLine; 
	CMapLayer*     m_pLayer;

};

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

#endif // !defined(AFX_SINGLEFILLDLG_H__9689BDDC_1D19_4408_8069_D1F9441F0E70__INCLUDED_)

⌨️ 快捷键说明

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