constants.h
来自「porting scintilla to qt」· C头文件 代码 · 共 30 行
H
30 行
#ifndef _constants_h_#define _constants_h_#ifndef MAX_PATH#define MAX_PATH 256#endif#ifdef WIN32#ifdef QSTE_EXPORTS#define _QSTE_DLL_ __declspec(dllexport)#else#define _QSTE_DLL_ __declspec(dllimport)#endif#else#define _QSTE_DLL_#endif#define ELEMENTS(a) (sizeof(a) / sizeof(a[0]))/// Codes representing the effect a line has on indentation.enum IndentationStatus { isNone, // no effect on indentation isBlockStart, // indentation block begin such as "{" or VB "function" isBlockEnd, // indentation end indicator such as "}" or VB "end" isKeyWordStart // Keywords that cause indentation};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?