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

📄 pfwindriverdialog.h

📁 PowerFish is a class library, intended to provide a broad functionality base for any application. Al
💻 H
字号:
///////////////////////////////////////////////////////////////////////////////////////////////////// PowerFish///////////////////////////////////////////////////////////////////////////////////////////////////// copyright (c) Camilla Berglund (camilla@uds.se)// this source code is licensed under the GNU GPL// see http://www.gnu.org/copyleft/gpl.html for details///////////////////////////////////////////////////////////////////////////////////////////////////#pragma once///////////////////////////////////////////////////////////////////////////////////////////////////class PfWinDriverDialog : public PfWinDialog{public:// constructors																		PfWinDriverDialog(const char* szFolderName);	virtual														~PfWinDriverDialog(void);// accessors	inline const char*								GetPathName(void) const;protected:// event handlers	virtual bool											OnInitialize(void);	virtual bool											OnOK(void);	virtual bool											OnCancel(void);// data	PfString													m_PathName;	PfString													m_FolderName;	PfFileList												m_Files;};///////////////////////////////////////////////////////////////////////////////////////////////////// PfDriverDialog accessors -----------------------------------------------------------------------inline const char* PfWinDriverDialog::GetPathName(void) const{	return m_PathName;}///////////////////////////////////////////////////////////////////////////////////////////////////

⌨️ 快捷键说明

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