SyntaxHighlighter.brushes.Processing = function()
{
	var funcs		= 'size strokeWeight stroke background pushMatrix popMatrix translate rotate radians rect quad bezierCurve curveVertex vertex endShape noFill color noStroke nf fill get bezierVertex ellipse dist mouseMoved sin smooth random colorMode point line noLoop loop redraw beginDraw endDraw image createGraphics triangle quad arc cos bezier PImage PFont loadImage scale println print ellipseMode atan2 atan updatePixels noise textFont textAlign text tint abs constrain createImage saturation brightness rectMode mouseDragged mouseReleased millis map hour minute second link length beginShape';
	var keywords	= 'abstract assert boolean break byte case catch char class continue default do double else enum extends const false final finally float for goto if implements import instanceof int interface long native new null package private protected public return short static strictfp super switch synchronized this throw throws transient try void volatile while true';
	var reserved	= 'mouseX mouseY height width frameCount TWO_PI PI HALF_PI QUATER_PI CENTER LEFT RIGHT UP DOWN PGraphics P3D RGB HSB TRIANGLE_STRIP frameRate keyPressed key pixels CENTER_RADIUS mousePressed CORNER pmouseX pmouseY CLOSE TRIANGLES';

	this.regexList = [
		{ regex: SyntaxHighlighter.regexLib.singleLineCComments,	css: 'comments' },			// one line comments
		{ regex: SyntaxHighlighter.regexLib.multiLineCComments,		css: 'comments' },			// multiline comments
		{ regex: SyntaxHighlighter.regexLib.multiLineDoubleQuotedString,	css: 'string' },
		{ regex: new RegExp(this.getKeywords(funcs), 'gmi'),				css: 'functions' },
		{ regex: new RegExp(this.getKeywords(reserved), 'gmi'),			css: 'constants' },
		{ regex: new RegExp(this.getKeywords(keywords), 'gmi'),				css: 'keyword' }
		];
};

SyntaxHighlighter.brushes.Processing.prototype	= new SyntaxHighlighter.Highlighter();
SyntaxHighlighter.brushes.Processing.aliases	= ['pjs', 'processing'];
