📄 krjs.h
字号:
// Interface for our JavaScript-Interpreter//// Author: Jonas B鋒r (C) 2005//// Copyright: See COPYING file that comes with this distribution//#ifndef KRJS_H#define KRJS_H#include <kjsembed/kjsembedpart.h>/** * Our own version of KJSEmbedPart. Here are all the Krusader-specific extensions implemented. * * @author Jonas B鋒r (http://jonas-baehr.de/)*/class KrJS: public KJSEmbed::KJSEmbedPart {public: KrJS(); /** * This loads and runs a file. In addition to the original runFile function it displays an popup * on errors and sets some variables * * @par filename The file to run */ bool runFile(const QString & filename);};#endif //KRJS_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -