webresourceprovider_demo.zip
WebResourceProvider_Demo
Backup
CodeProjectTopPosters
Debug
LinkProvider
QuoteProvider
Release
WebResourceProvider_Demo.exe
res
WebResourceProvider_Demo.ico
Translator
WeatherProvider
ZipCodeDecoder
WebResourceProvider_Lib
Backup
Debug
Release
|
// Translator.h
//
// An object that uses the FreeTranslation.com service to translate text.
//
#ifndef _Translator_h_
#define _Translator_h_
#include "WebResourceProvider.h"
//////////////////////////////////////////////////////////////////////
// Translator object
//
class Translator : public CWebResourceProvider
{
/////////////////////////////////////////////////////////////////////////////
// Constants
public:
enum {
EnglishToFrench = 0,
EnglishToGerman,
EnglishToItalian,
EnglishToSpanish,
FrenchToEnglish,
GermanToEnglish,
ItalianToEnglish,
SpanishToEnglish
};
/////////////////////////////////////////////////////////////////////////////
// Construction
public:
Translator
(CString strSource,
CString& strTranslation,
long nMode);
virtual ~Translator();
/////////////////////////////////////////////////////////////////////////////
// Public methods (API)
public:
CString getTranslation() // Get translated text
{ return m_strTranslation; }
/////////////////////////////////////////////////////////////////////////////
// Members
protected:
CString m_strSource; // source text
CString m_strTranslation; // translated text
long m_nMode; // translation mode
/////////////////////////////////////////////////////////////////////////////
// Overriden methods
protected:
virtual void constructUrl // Construct the URL to be fetched
(CString& strUrl);
virtual bool isPost() // Test if this is a POST request
{ return (true); }
virtual void getPostData // Get post data
(CString& strPostData);
virtual void parseContent(); // Parse the fetched content
};
#endif
// End Translator.h
|
By viewing downloads associated with this article you agree to the Terms of use 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.
Ravi Bhavnani is an ardent fan of Microsoft technologies who loves building Windows apps, especially PIMs, system utilities, and things that go bump on the Internet. During his career, Ravi has developed expert systems, desktop imaging apps, marketing automation software, EDA tools, a platform to help people find, analyze and understand information, trading software for institutional investors and advanced data visualization solutions. He currently works for a company that provides enterprise workforce management solutions to large clients.
His interests include the .NET framework, reasoning systems, financial analysis and algorithmic trading, NLP, CHI and UI design. Ravi holds a BS in Physics and Math and an MS in Computer Science and was a Microsoft MVP (C++ and C# in 2006 and 2007). He is also the co-inventor of 2 patents on software security and generating data visualization dashboards. His claim to fame is that he crafted CodeProject's "joke" forum post icon.
Ravi's biggest fear is that one day he might actually get a life, although the chances of that happening seem extremely remote.