properfile.h
来自「porting scintilla to qt」· C头文件 代码 · 共 30 行
H
30 行
#ifndef _properfile_h_#define _properfile_h_#include "PropSet.h"#include "filepath.h"#include "Platform.h"#include "Scintilla.h"class PropSetFile : public PropSet { bool lowerKeys; SString GetWildUsingStart(const PropSet &psStart, const char *keybase, const char *filename);protected: static bool caseSensitiveFilenames;public: PropSetFile(bool lowerKeys_=false); ~PropSetFile(); bool ReadLine(const char *data, bool ifIsTrue, FilePath directoryForImports, FilePath imports[] = 0, int sizeImports = 0); void ReadFromMemory(const char *data, int len, FilePath directoryForImports, FilePath imports[] = 0, int sizeImports = 0); bool Read(FilePath filename, FilePath directoryForImports, FilePath imports[] = 0, int sizeImports = 0); void SetInteger(const char *key, sptr_t i); SString GetWild(const char *keybase, const char *filename); SString GetNewExpand(const char *keybase, const char *filename=""); bool GetFirst(char **key, char **val); bool GetNext(char **key, char **val); static void SetCaseSensitiveFilenames(bool caseSensitiveFilenames_) { caseSensitiveFilenames = caseSensitiveFilenames_; }};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?