亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? afxdlgs.h

?? 計算機科學與技術專業畢業設計
?? H
?? 第 1 頁 / 共 2 頁
字號:
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1992-1998 Microsoft Corporation
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Foundation Classes Reference and related
// electronic documentation provided with the library.
// See these sources for detailed information regarding the
// Microsoft Foundation Classes product.

#ifndef __AFXDLGS_H__
#define __AFXDLGS_H__

#ifndef __AFXWIN_H__
	#include <afxwin.h>
#endif

#ifndef _INC_COMMDLG
	#include <commdlg.h>    // common dialog APIs
#endif

// Avoid mapping GetFileTitle to GetFileTitle[A/W]
#ifdef GetFileTitle
#undef GetFileTitle
AFX_INLINE short APIENTRY GetFileTitle(LPCTSTR lpszFile, LPTSTR lpszTitle, WORD cbBuf)
#ifdef UNICODE
	{ return ::GetFileTitleW(lpszFile, lpszTitle, cbBuf); }
#else
	{ return ::GetFileTitleA(lpszFile, lpszTitle, cbBuf); }
#endif
#endif

#ifndef _AFX_NO_RICHEDIT_SUPPORT
	#ifndef _RICHEDIT_
		#include <richedit.h>
	#endif
#endif

#ifdef _AFX_MINREBUILD
#pragma component(minrebuild, off)
#endif
#ifndef _AFX_FULLTYPEINFO
#pragma component(mintypeinfo, on)
#endif

#ifndef _AFX_NOFORCE_LIBS

/////////////////////////////////////////////////////////////////////////////
// Win32 libraries

#endif //!_AFX_NOFORCE_LIBS

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

#ifdef _AFX_PACKING
#pragma pack(push, _AFX_PACKING)
#endif

/////////////////////////////////////////////////////////////////////////////
// AFXDLGS - MFC Standard dialogs

// Classes declared in this file

	// CDialog
		class CCommonDialog;  // implementation base class

			// modeless dialogs
			class CFindReplaceDialog; // Find/FindReplace dialog

			// modal dialogs
			class CFileDialog;    // FileOpen/FileSaveAs dialogs
			class CColorDialog;   // Color picker dialog
			class CFontDialog;    // Font chooser dialog
			class CPrintDialog;   // Print/PrintSetup dialogs
			class CPageSetupDialog; // Page Setup dialog

	// CWnd
	class CPropertySheet;     // implements tabbed dialogs
		class CPropertySheetEx;

	// CDialog
		class CPropertyPage;  // Used with CPropertySheet for tabbed dialogs
			class CPropertyPageEx;

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

#undef AFX_DATA
#define AFX_DATA AFX_CORE_DATA

/////////////////////////////////////////////////////////////////////////////
// CCommonDialog - base class for all common dialogs

#ifdef _AFXDLL
class CCommonDialog : public CDialog
#else
class AFX_NOVTABLE CCommonDialog : public CDialog
#endif
{
public:
	CCommonDialog(CWnd* pParentWnd);

// Implementation
protected:
	virtual void OnOK();
	virtual void OnCancel();

	//{{AFX_MSG(CCommonDialog)
	afx_msg BOOL OnHelpInfo(HELPINFO*);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////
// CFileDialog - used for FileOpen... or FileSaveAs...

class CFileDialog : public CCommonDialog
{
	DECLARE_DYNAMIC(CFileDialog)

public:
// Attributes
	OPENFILENAME m_ofn; // open file parameter block

// Constructors
	CFileDialog(BOOL bOpenFileDialog, // TRUE for FileOpen, FALSE for FileSaveAs
		LPCTSTR lpszDefExt = NULL,
		LPCTSTR lpszFileName = NULL,
		DWORD dwFlags = OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,
		LPCTSTR lpszFilter = NULL,
		CWnd* pParentWnd = NULL);

// Operations
	virtual int DoModal();

	// Helpers for parsing file name after successful return
	// or during Overridable callbacks if OFN_EXPLORER is set
	CString GetPathName() const;  // return full path and filename
	CString GetFileName() const;  // return only filename
	CString GetFileExt() const;   // return only ext
	CString GetFileTitle() const; // return file title
	BOOL GetReadOnlyPref() const; // return TRUE if readonly checked

	// Enumerating multiple file selections
	POSITION GetStartPosition() const;
	CString GetNextPathName(POSITION& pos) const;

	// Helpers for custom templates
	void SetTemplate(UINT nWin3ID, UINT nWin4ID);
	void SetTemplate(LPCTSTR lpWin3ID, LPCTSTR lpWin4ID);

	// Other operations available while the dialog is visible
	CString GetFolderPath() const; // return full path
	void SetControlText(int nID, LPCSTR lpsz);
	void HideControl(int nID);
	void SetDefExt(LPCSTR lpsz);

// Overridable callbacks
protected:
	friend UINT CALLBACK _AfxCommDlgProc(HWND, UINT, WPARAM, LPARAM);
	virtual UINT OnShareViolation(LPCTSTR lpszPathName);
	virtual BOOL OnFileNameOK();
	virtual void OnLBSelChangedNotify(UINT nIDBox, UINT iCurSel, UINT nCode);

	// only called back if OFN_EXPLORER is set
	virtual void OnInitDone();
	virtual void OnFileNameChange();
	virtual void OnFolderChange();
	virtual void OnTypeChange();

// Implementation
#ifdef _DEBUG
public:
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:
	BOOL m_bOpenFileDialog;       // TRUE for file open, FALSE for file save
	CString m_strFilter;          // filter string
						// separate fields with '|', terminate with '||\0'
	TCHAR m_szFileTitle[64];       // contains file title after return
	TCHAR m_szFileName[_MAX_PATH]; // contains full path name after return

	OPENFILENAME*  m_pofnTemp;

	virtual BOOL OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult);
};

/////////////////////////////////////////////////////////////////////////////
// CFontDialog - used to select a font

class CFontDialog : public CCommonDialog
{
	DECLARE_DYNAMIC(CFontDialog)

public:
// Attributes
	// font choosing parameter block
	CHOOSEFONT m_cf;

// Constructors
	CFontDialog(LPLOGFONT lplfInitial = NULL,
		DWORD dwFlags = CF_EFFECTS | CF_SCREENFONTS,
		CDC* pdcPrinter = NULL,
		CWnd* pParentWnd = NULL);
#ifndef _AFX_NO_RICHEDIT_SUPPORT
	CFontDialog(const CHARFORMAT& charformat,
		DWORD dwFlags = CF_SCREENFONTS,
		CDC* pdcPrinter = NULL,
		CWnd* pParentWnd = NULL);
#endif
// Operations
	virtual int DoModal();

	// Get the selected font (works during DoModal displayed or after)
	void GetCurrentFont(LPLOGFONT lplf);

	// Helpers for parsing information after successful return
	CString GetFaceName() const;  // return the face name of the font
	CString GetStyleName() const; // return the style name of the font
	int GetSize() const;          // return the pt size of the font
	COLORREF GetColor() const;    // return the color of the font
	int GetWeight() const;        // return the chosen font weight
	BOOL IsStrikeOut() const;     // return TRUE if strikeout
	BOOL IsUnderline() const;     // return TRUE if underline
	BOOL IsBold() const;          // return TRUE if bold font
	BOOL IsItalic() const;        // return TRUE if italic font
#ifndef _AFX_NO_RICHEDIT_SUPPORT
	void GetCharFormat(CHARFORMAT& cf) const;
#endif

// Implementation
	LOGFONT m_lf; // default LOGFONT to store the info
#ifndef _AFX_NO_RICHEDIT_SUPPORT
	DWORD FillInLogFont(const CHARFORMAT& cf);
#endif

#ifdef _DEBUG
public:
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:
	TCHAR m_szStyleName[64]; // contains style name after return
};

/////////////////////////////////////////////////////////////////////////////
// CColorDialog - used to select a color

class CColorDialog : public CCommonDialog
{
	DECLARE_DYNAMIC(CColorDialog)

public:
// Attributes
	// color chooser parameter block
	CHOOSECOLOR m_cc;

// Constructors
	CColorDialog(COLORREF clrInit = 0, DWORD dwFlags = 0,
			CWnd* pParentWnd = NULL);

// Operations
	virtual int DoModal();

	// Set the current color while dialog is displayed
	void SetCurrentColor(COLORREF clr);

	// Helpers for parsing information after successful return
	COLORREF GetColor() const;
	static COLORREF* PASCAL GetSavedCustomColors();

// Overridable callbacks
protected:
	friend UINT CALLBACK _AfxCommDlgProc(HWND, UINT, WPARAM, LPARAM);
	virtual BOOL OnColorOK();       // validate color

// Implementation

#ifdef _DEBUG
public:
	virtual void Dump(CDumpContext& dc) const;
#endif

#ifndef _AFX_NO_GRAYDLG_SUPPORT
protected:
	//{{AFX_MSG(CColorDialog)
	afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
#endif //!_AFX_NO_GRAYDLG_SUPPORT
};

// for backward compatibility clrSavedCustom is defined as GetSavedCustomColors
#define clrSavedCustom GetSavedCustomColors()

/////////////////////////////////////////////////////////////////////////////
// Page Setup dialog

class CPageSetupDialog : public CCommonDialog
{
	DECLARE_DYNAMIC(CPageSetupDialog)

public:
// Attributes
	PAGESETUPDLG m_psd;

// Constructors
	CPageSetupDialog(DWORD dwFlags = PSD_MARGINS | PSD_INWININIINTLMEASURE,
		CWnd* pParentWnd = NULL);

// Attributes
	LPDEVMODE GetDevMode() const;   // return DEVMODE
	CString GetDriverName() const;  // return driver name
	CString GetDeviceName() const;  // return device name
	CString GetPortName() const;    // return output port name
	HDC CreatePrinterDC();
	CSize GetPaperSize() const;
	void GetMargins(LPRECT lpRectMargins, LPRECT lpRectMinMargins) const;

// Operations
	virtual int DoModal();

// Overridables
	virtual UINT PreDrawPage(WORD wPaper, WORD wFlags, LPPAGESETUPDLG pPSD);
	virtual UINT OnDrawPage(CDC* pDC, UINT nMessage, LPRECT lpRect);

// Implementation
protected:
	static UINT CALLBACK PaintHookProc(HWND hWnd, UINT message, WPARAM wParam,
		LPARAM lParam);

#ifdef _DEBUG
public:
	virtual void Dump(CDumpContext& dc) const;
#endif
};

/////////////////////////////////////////////////////////////////////////////
// CPrintDialog - used for Print... and PrintSetup...

class CPrintDialog : public CCommonDialog
{
	DECLARE_DYNAMIC(CPrintDialog)

public:
// Attributes
	// print dialog parameter block (note this is a reference)
	PRINTDLG& m_pd;

// Constructors
	CPrintDialog(BOOL bPrintSetupOnly,
		// TRUE for Print Setup, FALSE for Print Dialog
		DWORD dwFlags = PD_ALLPAGES | PD_USEDEVMODECOPIES | PD_NOPAGENUMS
			| PD_HIDEPRINTTOFILE | PD_NOSELECTION,
		CWnd* pParentWnd = NULL);

// Operations
	virtual int DoModal();

	// GetDefaults will not display a dialog but will get
	// device defaults
	BOOL GetDefaults();

	// Helpers for parsing information after successful return
	int GetCopies() const;          // num. copies requested
	BOOL PrintCollate() const;      // TRUE if collate checked
	BOOL PrintSelection() const;    // TRUE if printing selection
	BOOL PrintAll() const;          // TRUE if printing all pages
	BOOL PrintRange() const;        // TRUE if printing page range
	int GetFromPage() const;        // starting page if valid
	int GetToPage() const;          // starting page if valid
	LPDEVMODE GetDevMode() const;   // return DEVMODE
	CString GetDriverName() const;  // return driver name
	CString GetDeviceName() const;  // return device name
	CString GetPortName() const;    // return output port name
	HDC GetPrinterDC() const;       // return HDC (caller must delete)

	// This helper creates a DC based on the DEVNAMES and DEVMODE structures.
	// This DC is returned, but also stored in m_pd.hDC as though it had been
	// returned by CommDlg.  It is assumed that any previously obtained DC
	// has been/will be deleted by the user.  This may be
	// used without ever invoking the print/print setup dialogs.

	HDC CreatePrinterDC();

// Implementation

#ifdef _DEBUG
public:
	virtual void Dump(CDumpContext& dc) const;
#endif

private:

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
不卡在线视频中文字幕| av在线不卡电影| 欧美一区午夜视频在线观看| 一区二区三区免费看视频| 99视频一区二区三区| 亚洲国产精品二十页| 成人自拍视频在线观看| 国产亚洲欧洲997久久综合| 国产一区二区网址| 精品福利一区二区三区| 国产一区二区三区免费在线观看| 欧美精品一区二区蜜臀亚洲| 韩国午夜理伦三级不卡影院| 精品国产精品网麻豆系列| 久久电影国产免费久久电影 | 久久精品国产**网站演员| 91精品久久久久久久99蜜桃| 日本亚洲视频在线| 欧美一区二区精品| 日韩不卡手机在线v区| 7777精品伊人久久久大香线蕉最新版| 亚洲不卡一区二区三区| 欧美蜜桃一区二区三区| 男女男精品网站| 精品福利二区三区| 岛国精品一区二区| 国产精品对白交换视频| 91成人免费在线| 亚洲成人激情社区| 日韩精品一区在线| 国产激情偷乱视频一区二区三区| 亚洲国产精品传媒在线观看| 99久久婷婷国产| 亚洲三级电影全部在线观看高清| 欧美中文一区二区三区| 青青国产91久久久久久| 久久超碰97中文字幕| 精品伦理精品一区| 国产精品一级在线| 亚洲男同性恋视频| 欧美男男青年gay1069videost | 色噜噜狠狠色综合欧洲selulu| 一区二区三区日韩欧美精品| 欧美理论在线播放| 久久精品99国产国产精| 中文在线一区二区| 日本二三区不卡| 蜜臀av一区二区在线免费观看| 久久毛片高清国产| 色综合天天综合给合国产| 视频一区视频二区中文字幕| 精品成人在线观看| 91香蕉视频污| 奇米四色…亚洲| 国产精品久久久久久久浪潮网站 | 国产夜色精品一区二区av| 91美女蜜桃在线| 天天综合天天综合色| 26uuu亚洲综合色欧美| 99久久99久久精品免费观看 | 日本人妖一区二区| 国产精品无遮挡| 欧美日韩国产首页| 国产成人在线色| 亚洲成人777| 国产校园另类小说区| 欧美性大战久久久| 国产精品自拍一区| 亚洲成年人网站在线观看| 国产日韩在线不卡| 欧美日韩国产美| 成人久久18免费网站麻豆| 日韩福利视频导航| 国产精品二三区| 精品美女被调教视频大全网站| 91美女福利视频| 精品午夜一区二区三区在线观看| 综合中文字幕亚洲| 2023国产精华国产精品| 欧美日韩综合在线| 成人丝袜高跟foot| 免费成人av资源网| 一片黄亚洲嫩模| 日本一区二区高清| 日韩欧美专区在线| 91国偷自产一区二区三区成为亚洲经典| 久久成人综合网| 亚洲福利视频一区二区| 中文字幕一区二区三区不卡在线 | 亚洲黄色尤物视频| 久久精品人人做| 日韩一区二区三区免费看 | 麻豆国产91在线播放| 亚洲免费av观看| 国产欧美一区二区精品秋霞影院| 91精品国产福利在线观看| 色婷婷香蕉在线一区二区| 国产精品亚洲午夜一区二区三区 | 2017欧美狠狠色| 91麻豆精品国产综合久久久久久| 成人av第一页| 国产福利一区在线| 老司机一区二区| 日本午夜一区二区| 亚洲国产日韩一区二区| 亚洲欧美激情视频在线观看一区二区三区 | 国产美女在线精品| 日本欧美在线看| 亚洲成人动漫一区| 亚洲一二三四在线观看| 国产精品久久久久四虎| 久久精品夜色噜噜亚洲aⅴ| 日韩精品一区二区三区中文精品| 欧美精品三级在线观看| 在线免费视频一区二区| 99re成人在线| 成人av中文字幕| 成人一级片在线观看| 国产在线一区二区| 九色综合狠狠综合久久| 免费一区二区视频| 日本不卡1234视频| 蜜臀99久久精品久久久久久软件| 日韩高清不卡一区二区三区| 丝袜亚洲精品中文字幕一区| 亚洲成av人片在线| 午夜成人免费电影| 天堂av在线一区| 日韩中文字幕亚洲一区二区va在线| 性久久久久久久久久久久| 天天影视涩香欲综合网| 亚洲超丰满肉感bbw| 午夜电影一区二区三区| 三级影片在线观看欧美日韩一区二区 | 欧美精品一区二区三区视频 | 精品1区2区3区| 欧美性感一区二区三区| 欧美三级视频在线播放| 欧美欧美欧美欧美| 欧美一级生活片| 欧美成人一区二区三区| 精品乱人伦一区二区三区| 久久免费看少妇高潮| 国产无遮挡一区二区三区毛片日本| 国产欧美一区二区精品婷婷| 国产精品免费视频网站| 综合色中文字幕| 伊人婷婷欧美激情| 亚洲第一成年网| 秋霞影院一区二区| 国产一区二区精品久久91| 国产成人啪午夜精品网站男同| 成人一区二区三区在线观看| www..com久久爱| 色综合一个色综合| 欧美日韩国产大片| 日韩一本二本av| 久久九九久久九九| 国产精品激情偷乱一区二区∴| 亚洲乱码国产乱码精品精小说| 亚洲无人区一区| 另类小说视频一区二区| 国产**成人网毛片九色| 91网站在线观看视频| 欧美三级日韩三级| 精品精品欲导航| 国产精品久久久久影院亚瑟| 亚洲国产美女搞黄色| 蜜桃免费网站一区二区三区| 国产寡妇亲子伦一区二区| 91在线你懂得| 91精品国产色综合久久| 国产色综合一区| 亚洲一区二区三区中文字幕在线| 奇米影视一区二区三区| 成人免费视频免费观看| 在线观看视频91| 精品久久久久久最新网址| 国产清纯白嫩初高生在线观看91 | 精品久久久影院| 亚洲少妇中出一区| 日本美女一区二区三区| 国产伦精品一区二区三区在线观看| av一区二区三区在线| 欧美精品在欧美一区二区少妇| 久久久久99精品一区| 亚洲一区电影777| 国产乱码精品一品二品| 日本韩国精品一区二区在线观看| 欧美mv和日韩mv国产网站| 成人国产精品免费网站| 欧美日韩大陆一区二区| 国产日韩欧美a| 婷婷亚洲久悠悠色悠在线播放 | av在线播放一区二区三区| 538在线一区二区精品国产| 国产精品天美传媒| 免费在线一区观看| 色综合久久久久久久久久久| 26uuu亚洲综合色|