[moodle] / contrib / plugins / grade / report / visual / flare_visualization / SelectorOption.as Repository:

View of /contrib/plugins/grade/report/visual/flare_visualization/SelectorOption.as

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (download) (annotate)
Mon Aug 18 11:58:12 2008 WST (15 months ago) by dservos
Branch: MAIN
CVS Tags: HEAD
CONTRIB-497
* Added flare libbary to repo as it is needed to build the flash front end. Lib is located at /grade/report/visual/flare_visualization/flare/. For more information see http://flare.prefuse.org/
* Added more visualizations.
* Added settings/preferences page for the report.
* Added printable version.
* Added more documentation.
* Added README.txt
* Cleaned up code.
* Fixed a bunch of small bugs.
package
{
	import flare.display.TextSprite;
	
	import flash.text.TextFormat;
	
	public class SelectorOption extends TextSprite {
		public var param:String;
		public var value:String;
		public var active:Boolean = false;
	
		public function SelectorOption(param:String, option:XML, active:Boolean = false) {
			this.param = param;
			this.value = option.value;
			this.active = active;
			
			super(option.title, new TextFormat("timesnewromen"));
		}
	}
}

Moodle CVS Admin
ViewVC Help
Powered by ViewVC 1.0.7