Click here to Skip to main content
15,892,839 members
Articles / Desktop Programming / MFC

SmartLexicon

Rate me:
Please Sign up or sign in to vote.
4.93/5 (14 votes)
30 Aug 2006GPL310 min read 86.1K   3.3K   51  
A multilingual dictionary engine with regular expressions support and Web browser integration.
/*  This file is a part of SmartLexicon, a multi-lingual dictionary engine.

    Copyright (C) 2005, Kostas Giannakakis

    SmartLexicon is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    SmartLexicon is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with SmartLexicon; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/

#pragma once

#include "Lang.h"

// Implementation based on Microsoft Windows Codepage 1252 (Latin I).
// However the hex values of the characters involved coincide for
// Unicode and this codepage.
// A with umlaut: 0xC4
// O with umlaut: 0xD6
// U with umlaut: 0xDC
// a with umlaut: 0xE4
// o with umlaut: 0xF6
// u with umlaut: 0xFC
// sharp s: 0xDF
//

class CLangGerman : public CLang
{
public:
	CLangGerman(void);
	~CLangGerman(void);

	BOOL IsAlpha(TCHAR c);
	int CompareNoCase(CString& str1, CString& str2);
	int CompareNoStrict(CString& str1, CString& str2);
	void ToUpper(CString& str);
	void ToLower(CString& str);
	void MakeSimple(CString& str);
};

class CLangGermanTest
{
public:
	static void TestAll();
	static void IsAlphaTest();
	static void CaseTest();
	static void MakeSimpleTest();
};

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer (Senior) Self employed
Greece Greece
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions