source: EDIS/tags/ed/tracking-ui-core/src/main/flex/gov/va/med/edp/control/config/ConfigChangeDisplayBoardPropertiesEvent.as@ 1240

Last change on this file since 1240 was 1240, checked in by George Lilly, 13 years ago

new version from the VA

File size: 1.2 KB
Line 
1/* ConfigChangeDisplayBoardPropertiesEvent.as */
2
3package gov.va.med.edp.control.config
4{
5 import com.adobe.cairngorm.control.CairngormEvent;
6
7 import flash.events.Event;
8
9 import gov.va.med.edp.vo.DisplaySizeVO;
10
11 public class ConfigChangeDisplayBoardPropertiesEvent extends CairngormEvent
12 {
13 public static const EVENT_CONFIG_CHANGE_FONT_SIZE: String = "configChangeFontSize";
14 public static const EVENT_CONFIG_CHANGE_SQUISH_FONT_SIZE: String = "configChangeSquishFontSize";
15 public static const EVENT_CONFIG_CHANGE_DISPLAY_WIDTH: String = "configChangeDisplayWidth";
16 public static const EVENT_CONFIG_CHANGE_SCROLL_DELAY: String = "configChangeScrollDelay"
17 public static const EVENT_CONFIG_CHANGE_SQUISH: String = "configChangeSquish"
18
19 public var displaySize: DisplaySizeVO;
20 public var fontSize: int;
21 public var squishFontSize: int;
22 public var scrollDelay: int;
23 public var squish:Boolean;
24
25 public function ConfigChangeDisplayBoardPropertiesEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false)
26 {
27 super(type, bubbles, cancelable);
28 }
29
30 override public function clone():Event
31 {
32 return new ConfigChangeDisplayBoardPropertiesEvent(type);
33 }
34 }
35}
Note: See TracBrowser for help on using the repository browser.