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