mirror of
https://github.com/NohamR/Reclass.git
synced 2026-05-10 19:59:21 +00:00
Initial commit: ReclassX structured binary editor
This commit is contained in:
41
third_party/qscintilla/scintilla/src/CaseFolder.h
vendored
Normal file
41
third_party/qscintilla/scintilla/src/CaseFolder.h
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
// Scintilla source code edit control
|
||||
/** @file CaseFolder.h
|
||||
** Classes for case folding.
|
||||
**/
|
||||
// Copyright 1998-2013 by Neil Hodgson <neilh@scintilla.org>
|
||||
// The License.txt file describes the conditions under which this software may be distributed.
|
||||
|
||||
#ifndef CASEFOLDER_H
|
||||
#define CASEFOLDER_H
|
||||
|
||||
namespace Scintilla {
|
||||
|
||||
class CaseFolder {
|
||||
public:
|
||||
virtual ~CaseFolder();
|
||||
virtual size_t Fold(char *folded, size_t sizeFolded, const char *mixed, size_t lenMixed) = 0;
|
||||
};
|
||||
|
||||
class CaseFolderTable : public CaseFolder {
|
||||
protected:
|
||||
char mapping[256];
|
||||
public:
|
||||
CaseFolderTable();
|
||||
~CaseFolderTable() override;
|
||||
size_t Fold(char *folded, size_t sizeFolded, const char *mixed, size_t lenMixed) override;
|
||||
void SetTranslation(char ch, char chTranslation);
|
||||
void StandardASCII();
|
||||
};
|
||||
|
||||
class ICaseConverter;
|
||||
|
||||
class CaseFolderUnicode : public CaseFolderTable {
|
||||
ICaseConverter *converter;
|
||||
public:
|
||||
CaseFolderUnicode();
|
||||
size_t Fold(char *folded, size_t sizeFolded, const char *mixed, size_t lenMixed) override;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user