pfwindriverdialog.h
来自「PowerFish is a class library, intended t」· C头文件 代码 · 共 40 行
H
40 行
///////////////////////////////////////////////////////////////////////////////////////////////////// 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 + =
减小字号Ctrl + -
显示快捷键?