⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 constants.h

📁 porting scintilla to qt
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -