notify.h

来自「File copy notify for symbian examples」· C头文件 代码 · 共 30 行

H
30
字号
// Notify.h
//
// Copyright (c) 2000 Symbian Ltd.  All rights reserved.

#ifndef __NOTIFY_H
#define __NOTIFY_H

#include "CommonFramework.h"
#include <f32file.h>
	
/** 
	Monitors file copy events, and prints out the progress.
*/
class TFileCopyProgressMonitor : public MFileManObserver
	{
public:
	/** 
		Constructor.
		@param aFileMan Used to obtain the number of bytes currently copied 
	*/
	TFileCopyProgressMonitor(CFileMan& aFileMan);
private:
	TControl NotifyFileManStarted();
	TControl NotifyFileManOperation();
	TControl NotifyFileManEnded();	
private:
	CFileMan& iFileMan;
	};

#endif

⌨️ 快捷键说明

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