31 lines
1.2 KiB
C++
31 lines
1.2 KiB
C++
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
|
|
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
|
|
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
|
|
// PARTICULAR PURPOSE.
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved
|
|
|
|
#pragma once
|
|
|
|
#include "BaseDictionaryEngine.h"
|
|
|
|
class CTableDictionaryEngine : public CBaseDictionaryEngine
|
|
{
|
|
public:
|
|
CTableDictionaryEngine(LCID locale, _In_ CFile *pDictionaryFile) : CBaseDictionaryEngine(locale, pDictionaryFile) { }
|
|
virtual ~CTableDictionaryEngine() { }
|
|
|
|
// Collect word from phrase string.
|
|
// param
|
|
// [in] psrgKeyCode - Specified key code pointer
|
|
// [out] pasrgWordString - Specified returns pointer of word as CStringRange.
|
|
// returns
|
|
// none.
|
|
VOID CollectWord(_In_ CStringRange *pKeyCode, _Inout_ CSampleImeArray<CStringRange> *pWordStrings);
|
|
VOID CollectWord(_In_ CStringRange *pKeyCode, _Inout_ CSampleImeArray<CCandidateListItem> *pItemList);
|
|
|
|
VOID CollectWordForWildcard(_In_ CStringRange *psrgKeyCode, _Inout_ CSampleImeArray<CCandidateListItem> *pItemList);
|
|
|
|
VOID CollectWordFromConvertedStringForWildcard(_In_ CStringRange *pString, _Inout_ CSampleImeArray<CCandidateListItem> *pItemList);
|
|
};
|