|
|
|
// Scintilla source code edit control
|
|
|
|
/** @file HanjaDic.cxx
|
|
|
|
** Korean Hanja Dictionary
|
|
|
|
** Convert between Korean Hanja and Hangul by COM interface.
|
|
|
|
**/
|
|
|
|
// Copyright 2015 by Neil Hodgson <neilh@scintilla.org>
|
|
|
|
// The License.txt file describes the conditions under which this software may be distributed.
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <string_view>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#define WIN32_LEAN_AND_MEAN 1
|
|
|
|
#include <windows.h>
|
|
|
|
#include <ole2.h>
|
|
|
|
|
|
|
|
#include "WinTypes.h"
|
|
|
|
#include "HanjaDic.h"
|
|
|
|
|
|
|
|
namespace Scintilla::Internal::HanjaDict {
|
|
|
|
|
|
|
|
interface IRadical;
|
|
|
|
interface IHanja;
|
|
|
|
interface IStrokes;
|
|
|
|
|
|
|
|
enum HANJA_TYPE { HANJA_UNKNOWN = 0, HANJA_K0 = 1, HANJA_K1 = 2, HANJA_OTHER = 3 };
|
|
|
|
|
|
|
|
interface IHanjaDic : IUnknown {
|
|
|
|
STDMETHOD(OpenMainDic)();
|
|
|
|
STDMETHOD(CloseMainDic)();
|
|
|
|
STDMETHOD(GetHanjaWords)(BSTR bstrHangul, SAFEARRAY* ppsaHanja, VARIANT_BOOL* pfFound);
|
|
|
|
STDMETHOD(GetHanjaChars)(unsigned short wchHangul, BSTR* pbstrHanjaChars, VARIANT_BOOL* pfFound);
|
|
|
|
STDMETHOD(HanjaToHangul)(BSTR bstrHanja, BSTR* pbstrHangul);
|
|
|
|
STDMETHOD(GetHanjaType)(unsigned short wchHanja, HANJA_TYPE* pHanjaType);
|
|
|
|
STDMETHOD(GetHanjaSense)(unsigned short wchHanja, BSTR* pbstrSense);
|
|
|
|
STDMETHOD(GetRadicalID)(short SeqNumOfRadical, short* pRadicalID, unsigned short* pwchRadical);
|
|
|
|
STDMETHOD(GetRadical)(short nRadicalID, IRadical** ppIRadical);
|
|
|
|
STDMETHOD(RadicalIDToHanja)(short nRadicalID, unsigned short* pwchRadical);
|
|
|
|
STDMETHOD(GetHanja)(unsigned short wchHanja, IHanja** ppIHanja);
|
|
|
|
STDMETHOD(GetStrokes)(short nStrokes, IStrokes** ppIStrokes);
|
|
|
|
STDMETHOD(OpenDefaultCustomDic)();
|
|
|
|
STDMETHOD(OpenCustomDic)(BSTR bstrPath, long* plUdr);
|
|
|
|
STDMETHOD(CloseDefaultCustomDic)();
|
|
|
|
STDMETHOD(CloseCustomDic)(long lUdr);
|
|
|
|
STDMETHOD(CloseAllCustomDics)();
|
|
|
|
STDMETHOD(GetDefaultCustomHanjaWords)(BSTR bstrHangul, SAFEARRAY** ppsaHanja, VARIANT_BOOL* pfFound);
|
|
|
|
STDMETHOD(GetCustomHanjaWords)(long lUdr, BSTR bstrHangul, SAFEARRAY** ppsaHanja, VARIANT_BOOL* pfFound);
|
|
|
|
STDMETHOD(PutDefaultCustomHanjaWord)(BSTR bstrHangul, BSTR bstrHanja);
|
|
|
|
STDMETHOD(PutCustomHanjaWord)(long lUdr, BSTR bstrHangul, BSTR bstrHanja);
|
|
|
|
STDMETHOD(MaxNumOfRadicals)(short* pVal);
|
|
|
|
STDMETHOD(MaxNumOfStrokes)(short* pVal);
|
|
|
|
STDMETHOD(DefaultCustomDic)(long* pVal);
|
|
|
|
STDMETHOD(DefaultCustomDic)(long pVal);
|
|
|
|
STDMETHOD(MaxHanjaType)(HANJA_TYPE* pHanjaType);
|
|
|
|
STDMETHOD(MaxHanjaType)(HANJA_TYPE pHanjaType);
|
|
|
|
};
|
|
|
|
|
|
|
|
extern "C" const GUID __declspec(selectany) IID_IHanjaDic =
|
|
|
|
{ 0xad75f3ac, 0x18cd, 0x48c6, { 0xa2, 0x7d, 0xf1, 0xe9, 0xa7, 0xdc, 0xe4, 0x32 } };
|
|
|
|
|
|
|
|
class ScopedBSTR {
|
|
|
|
BSTR bstr = nullptr;
|
|
|
|
public:
|
|
|
|
ScopedBSTR() noexcept = default;
|
|
|
|
explicit ScopedBSTR(const OLECHAR *psz) noexcept :
|
|
|
|
bstr(SysAllocString(psz)) {
|
|
|
|
}
|
|
|
|
explicit ScopedBSTR(OLECHAR character) noexcept :
|
|
|
|
bstr(SysAllocStringLen(&character, 1)) {
|
|
|
|
}
|
|
|
|
// Deleted so ScopedBSTR objects can not be copied. Moves are OK.
|
|
|
|
ScopedBSTR(const ScopedBSTR &) = delete;
|
|
|
|
ScopedBSTR &operator=(const ScopedBSTR &) = delete;
|
|
|
|
// Moves are OK.
|
|
|
|
ScopedBSTR(ScopedBSTR &&) = default;
|
|
|
|
ScopedBSTR &operator=(ScopedBSTR &&) = default;
|
|
|
|
~ScopedBSTR() {
|
|
|
|
SysFreeString(bstr);
|
|
|
|
}
|
|
|
|
|
|
|
|
BSTR get() const noexcept {
|
|
|
|
return bstr;
|
|
|
|
}
|
|
|
|
void reset(BSTR value=nullptr) noexcept {
|
|
|
|
// https://en.cppreference.com/w/cpp/memory/unique_ptr/reset
|
|
|
|
BSTR const old = bstr;
|
|
|
|
bstr = value;
|
|
|
|
SysFreeString(old);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class HanjaDic {
|
|
|
|
std::unique_ptr<IHanjaDic, UnknownReleaser> HJinterface;
|
|
|
|
|
|
|
|
bool OpenHanjaDic(LPCOLESTR lpszProgID) noexcept {
|
|
|
|
CLSID CLSID_HanjaDic;
|
|
|
|
HRESULT hr = CLSIDFromProgID(lpszProgID, &CLSID_HanjaDic);
|
|
|
|
if (SUCCEEDED(hr)) {
|
|
|
|
IHanjaDic *instance = nullptr;
|
|
|
|
hr = CoCreateInstance(CLSID_HanjaDic, nullptr,
|
|
|
|
CLSCTX_INPROC_SERVER, IID_IHanjaDic,
|
Update: Scintilla 5.3.6 and Lexilla 5.2.6
update to Scinitlla Release 5.3.6 (https://www.scintilla.org/scintilla536.zip)
Released 26 July 2023.
Redraw calltip after showing as didn't update when size of new text exactly same as previous. Feature #1486.
On Win32 fix reverse arrow cursor when scaled. Bug #2382.
On Win32 hide cursor when typing if that system preference has been chosen. Bug #2333.
On Win32 and Qt, stop aligning IME candidate window to target. It is now always aligned to start of composition string. This undoes part of feature #1300. Feature #1488, Bug #2391, Feature #1300.
On Qt, for IMEs, update micro focus when selection changes. This may move the location of IME popups to align with the caret.
On Qt, implement replacement for IMEs which may help with actions like reconversion. This is similar to delete-surrounding on GTK.
and Lexilla Release 5.2.6 (https://www.scintilla.org/lexilla526.zip)
Released 26 July 2023.
Include empty word list names in value returned by DescribeWordListSets and SCI_DESCRIBEKEYWORDSETS. Issue #175, Pull request #176.
Bash: style here-doc end delimiters as SCE_SH_HERE_DELIM instead of SCE_SH_HERE_Q. Issue #177.
Bash: allow '$' as last character in string. Issue #180, Pull request #181.
Bash: fix state after expansion. Highlight all numeric and file test operators. Don't highlight dash in long option as operator. Issue #182, Pull request #183.
Bash: strict checking of special parameters ($*, $@, $$, ...) with property lexer.bash.special.parameter to specify valid parameters. Issue #184, Pull request #186.
Bash: recognize keyword before redirection operators (< and >). Issue #188, Pull request #189.
Errorlist: recognize Bash diagnostic messages.
HTML: allow ASP block to terminate inside line comment. Issue #185.
HTML: fix folding with JSP/ASP.NET <%-- comment. Issue #191.
HTML: fix incremental styling of multi-line ASP.NET directive. Issue #191.
Matlab: improve arguments blocks. Add support for multiple arguments blocks. Prevent "arguments" from being keyword in function declaration line. Fix semicolon handling. Pull request #179.
Visual Prolog: add support for embedded syntax with SCE_VISUALPROLOG_EMBEDDED and SCE_VISUALPROLOG_PLACEHOLDER.
Styling of string literals changed with no differentiation between literals with quotes and those that are prefixed with "@". Quote characters are in a separate style (SCE_VISUALPROLOG_STRING_QUOTE) to contents (SCE_VISUALPROLOG_STRING).
SCE_VISUALPROLOG_CHARACTER, SCE_VISUALPROLOG_CHARACTER_TOO_MANY, SCE_VISUALPROLOG_CHARACTER_ESCAPE_ERROR, SCE_VISUALPROLOG_STRING_EOL_OPEN, and SCE_VISUALPROLOG_STRING_VERBATIM_SPECIAL were removed (replaced with SCE_VISUALPROLOG_UNUSED[1-5]). Pull request #178.
Fix #13901, fix #13911, fix #13943, close #13940
1 year ago
|
|
|
reinterpret_cast<LPVOID *>(&instance));
|
|
|
|
if (SUCCEEDED(hr) && instance) {
|
|
|
|
HJinterface.reset(instance);
|
|
|
|
hr = instance->OpenMainDic();
|
|
|
|
return SUCCEEDED(hr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
bool Open() noexcept {
|
|
|
|
return OpenHanjaDic(OLESTR("imkrhjd.hanjadic"))
|
|
|
|
|| OpenHanjaDic(OLESTR("mshjdic.hanjadic"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Close() const noexcept {
|
|
|
|
HJinterface->CloseMainDic();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsHanja(wchar_t hanja) const noexcept {
|
|
|
|
HANJA_TYPE hanjaType = HANJA_UNKNOWN;
|
|
|
|
const HRESULT hr = HJinterface->GetHanjaType(hanja, &hanjaType);
|
|
|
|
return SUCCEEDED(hr) && hanjaType > HANJA_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool HanjaToHangul(const ScopedBSTR &bstrHanja, ScopedBSTR &bstrHangul) const noexcept {
|
|
|
|
BSTR result = nullptr;
|
|
|
|
const HRESULT hr = HJinterface->HanjaToHangul(bstrHanja.get(), &result);
|
|
|
|
bstrHangul.reset(result);
|
|
|
|
return SUCCEEDED(hr);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
bool GetHangulOfHanja(std::wstring &inout) noexcept {
|
|
|
|
// Convert every hanja to hangul.
|
|
|
|
// Return whether any character been converted.
|
|
|
|
// Hanja linked to different notes in Hangul have different codes,
|
|
|
|
// so current character based conversion is enough.
|
|
|
|
// great thanks for BLUEnLIVE.
|
|
|
|
bool changed = false;
|
|
|
|
HanjaDic dict;
|
|
|
|
if (dict.Open()) {
|
|
|
|
for (wchar_t &character : inout) {
|
|
|
|
if (dict.IsHanja(character)) { // Pass hanja only!
|
|
|
|
ScopedBSTR bstrHangul;
|
|
|
|
if (dict.HanjaToHangul(ScopedBSTR(character), bstrHangul)) {
|
|
|
|
changed = true;
|
|
|
|
character = *(bstrHangul.get());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dict.Close();
|
|
|
|
}
|
|
|
|
return changed;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|