📄 notify.h
字号:
// Notify.h
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -