/* ConfigChangeDisplayBoardPropertiesEvent.as */ package gov.va.med.edp.control.config { import com.adobe.cairngorm.control.CairngormEvent; import flash.events.Event; import gov.va.med.edp.vo.DisplaySizeVO; public class ConfigChangeDisplayBoardPropertiesEvent extends CairngormEvent { public static const EVENT_CONFIG_CHANGE_FONT_SIZE: String = "configChangeFontSize"; public static const EVENT_CONFIG_CHANGE_SQUISH_FONT_SIZE: String = "configChangeSquishFontSize"; public static const EVENT_CONFIG_CHANGE_DISPLAY_WIDTH: String = "configChangeDisplayWidth"; public static const EVENT_CONFIG_CHANGE_SCROLL_DELAY: String = "configChangeScrollDelay" public static const EVENT_CONFIG_CHANGE_SQUISH: String = "configChangeSquish" public var displaySize: DisplaySizeVO; public var fontSize: int; public var squishFontSize: int; public var scrollDelay: int; public var squish:Boolean; public function ConfigChangeDisplayBoardPropertiesEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false) { super(type, bubbles, cancelable); } override public function clone():Event { return new ConfigChangeDisplayBoardPropertiesEvent(type); } } }