Click here to Skip to main content
15,896,557 members
Articles / Desktop Programming / MFC

Crystal Edit - syntax coloring text editor

Rate me:
Please Sign up or sign in to vote.
4.97/5 (73 votes)
30 Jan 2000 624.7K   14.4K   239  
A set of classes that provide an expandable framework for the syntax coloring text editor.
////////////////////////////////////////////////////////////////////////////
//	File:		editcmd.h
//	Version:	1.0.0.0
//	Created:	29-Dec-1998
//
//	Author:		Stcherbatchenko Andrei
//	E-mail:		windfall@gmx.de
//
//	Registry keys and values for Crystal Edit - syntax colorig text editor.
//
//	You are free to use or modify this code to the following restrictions:
//	- Acknowledge me somewhere in your about box, simple "Parts of code by.."
//	will be enough. If you can't (or don't want to), contact me personally.
//	- LEAVE THIS HEADER INTACT
////////////////////////////////////////////////////////////////////////////

#ifndef CRYSEDITREG_H__INCLUDED
#define CRYSEDITREG_H__INCLUDED

//	Registry keys & values
#define REG_FIND_SUBKEY		_T("CrystalEdit\\Find")
#define REG_REPLACE_SUBKEY	_T("CrystalEdit\\Replace")
#define REG_MATCH_CASE		_T("MatchCase")
#define REG_WHOLE_WORD		_T("WholeWord")
#define REG_FIND_WHAT		_T("FindWhat")
#define REG_REPLACE_WITH	_T("ReplaceWith")

#define REG_PAGE_SUBKEY		_T("CrystalEdit\\PageSetup")
#define REG_MARGIN_LEFT		_T("LeftMargin")
#define REG_MARGIN_RIGHT	_T("RightMargin")
#define REG_MARGIN_TOP		_T("TopMargin")
#define REG_MARGIN_BOTTOM	_T("BottomMargin")

#endif

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
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions