Changes to the GUI
================

	1) Create a new icon <operatorname>.gif or <operatorname>.png 
		and save it in the folder images/Operators/

	2) Add a property for the icon-location to the files res/operators.properties:
				ICON_OP_<OPERATORNAME> = /images/Operators/<operatorname>.gif
		Take care that <OPERATORNAME> ist the name of your new operator in upper case.

	3)	Add a property for the mnemonic key to the file res/mmart_menu.properties
				MENUM_OP_<OPERATORNAME> = <character>
		Take care that <OPERATORNAME> ist the name of your new operator in upper case.
		Note that <character> is a character of the new operatorname.				
		To have an icon for your operator in the menu create a smaller icon and save it in the folder: images/MenuIcons/Operators
		Then add a property to res/mmart_menu.properties
				MENU_ICON_OP_<OPERATORNAME> = /images/MenuIcons/Operators/<operatorname>.gif
				
	4) To create the help-file for the new-operator you must add a description file <operatorname>.txt to res/help/operator_description
		The file <operatorname>.txt must be organized as follows:
			- The file has 2 parts. The first part is an html-dscription of the operator
			- The second part describes the parameters. In each line you can describe a parameter.
				<Parameter-Name>:<Html-Description>
			- The two parts must be seperated fromech other with a line containing the word PARAMETERDESCRIPTION
			- For all confused here is the full description of the file:
				<Html-Description of the operator>
				PARAMETERDESCRIPTION
				<Parameter-Name>:<Html-Description> 
				...
				<Parameter-Name>:<Html-Description> 
				
	5) To create the html-file of the new operator you must call the ant-file: "ant operator-doc"
		The target "operator-doc" creates the operator documentation of all operators in alphabetic order and organized in groups.
		Because of the conception of the help it's necessary to create the documentation of all operators.
			