Click here to Skip to main content
15,896,063 members
Articles / Programming Languages / C++

A Spell Checking Engine

Rate me:
Please Sign up or sign in to vote.
4.88/5 (16 votes)
5 Feb 2001 268K   7K   108  
A free spell checking engine for use in your C++ applications. Includes the current US English dictionary
#if !defined(AFX_PRSHTSPELLOPTIONS_H__3AE953CE_C5F9_46A4_A94B_E8E85CF148DD__INCLUDED_)
#define AFX_PRSHTSPELLOPTIONS_H__3AE953CE_C5F9_46A4_A94B_E8E85CF148DD__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// PrShtSpellOptions.h : header file
//
#include "PrPgeSpellOptions_General.h"
#include "PrPgeSpellOptions_User.h"
#include "PrPgeSpellOptions_Common.h"

class CFPSSpellCheckEngine;
/////////////////////////////////////////////////////////////////////////////
// CPrShtSpellOptions

class CPrShtSpellOptions : public CPropertySheet
{
	DECLARE_DYNAMIC(CPrShtSpellOptions)

// Construction
public:
	CPrShtSpellOptions(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
	CPrShtSpellOptions(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);

// Attributes
public:
	CPrPgeSpellOptions_General	m_General;
	CPrPgeSpellOptions_User		m_User;
	CPrPgeSpellOptions_Common	m_Common;

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CPrShtSpellOptions)
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual void LoadOptions(CFPSSpellCheckEngine* pEngine);
	virtual void SaveOptions(CFPSSpellCheckEngine* pEngine);
	virtual ~CPrShtSpellOptions();

	// Generated message map functions
protected:
	//{{AFX_MSG(CPrShtSpellOptions)
		// NOTE - the ClassWizard will add and remove member functions here.
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_PRSHTSPELLOPTIONS_H__3AE953CE_C5F9_46A4_A94B_E8E85CF148DD__INCLUDED_)

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions