/** * InputText.as * Keith Peters * version 0.9.1 * * Copyright (c) 2010 Keith Peters * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package com.bit101.components { import flash.display.DisplayObjectContainer; import flash.display.Sprite; import flash.events.Event; import flash.text.TextField; import flash.text.TextFieldType; import flash.text.TextFormat; public class InputText extends Component { private var _back:Sprite; private var _password:Boolean = false; private var _text:String = ""; private var _tf:TextField; /** * Constructor * @param parent The parent DisplayObjectContainer on which to add this InputText. * @param xpos The x position to place this component. * @param ypos The y position to place this component. * @param text The string containing the initial text of this component. * @param defaultHandler The event handling function to handle the default event for this component (change in this case). */ public function InputText(parent:DisplayObjectContainer = null, xpos:Number = 0, ypos:Number = 0, text:String = "", defaultHandler:Function = null) { this.text = text; super(parent, xpos, ypos); if(defaultHandler != null) { addEventListener(Event.CHANGE, defaultHandler); } } /** * Initializes the component. */ override protected function init():void { super.init(); setSize(100, 16); } /** * Creates and adds child display objects. */ override protected function addChildren():void { _back = new Sprite(); _back.filters = [getShadow(2, true)]; addChild(_back); _tf = new TextField(); _tf.embedFonts = Style.embedFonts; _tf.selectable = true; _tf.type = TextFieldType.INPUT; _tf.defaultTextFormat = new TextFormat(Style.fontName, Style.fontSize, Style.INPUT_TEXT); addChild(_tf); _tf.addEventListener(Event.CHANGE, onChange); } /////////////////////////////////// // public methods /////////////////////////////////// /** * Draws the visual ui of the component. */ override public function draw():void { super.draw(); _back.graphics.clear(); _back.graphics.beginFill(Style.BACKGROUND); _back.graphics.drawRect(0, 0, _width, _height); _back.graphics.endFill(); _tf.displayAsPassword = _password; if(_text != null) { _tf.text = _text; } else { _tf.text = ""; } _tf.width = _width - 4; if(_tf.text == "") { _tf.text = "X"; _tf.height = Math.min(_tf.textHeight + 4, _height); _tf.text = ""; } else { _tf.height = Math.min(_tf.textHeight + 4, _height); } _tf.x = 2; _tf.y = Math.round(_height / 2 - _tf.height / 2); } /////////////////////////////////// // event handlers /////////////////////////////////// /** * Internal change handler. * @param event The Event passed by the system. */ protected function onChange(event:Event):void { _text = _tf.text; } /////////////////////////////////// // getter/setters /////////////////////////////////// /** * Gets / sets the text shown in this InputText. */ public function set text(t:String):void { _text = t; if(_text == null) _text = ""; invalidate(); } public function get text():String { return _text; } /** * Returns a reference to the internal text field in the component. */ public function get textField():TextField { return _tf; } /** * Gets / sets the list of characters that are allowed in this TextInput. */ public function set restrict(str:String):void { _tf.restrict = str; } public function get restrict():String { return _tf.restrict; } /** * Gets / sets the maximum number of characters that can be shown in this InputText. */ public function set maxChars(max:int):void { _tf.maxChars = max; } public function get maxChars():int { return _tf.maxChars; } /** * Gets / sets whether or not this input text will show up as password (asterisks). */ public function set password(b:Boolean):void { _password = b; invalidate(); } public function get password():Boolean { return _password; } } }