1////////////////////////////////////////////////////////////////////////////////
2//
3// ADOBE SYSTEMS INCORPORATED
4// Copyright 2007-2010 Adobe Systems Incorporated
5// All Rights Reserved.
6//
7// NOTICE:  Adobe permits you to use, modify, and distribute this file
8// in accordance with the terms of the license agreement accompanying it.
9//
10////////////////////////////////////////////////////////////////////////////////
11package flashx.textLayout.elements
12{
13    /** The InlineGraphicElementStatus class defines a set of constants for checking the value of
14     * <code>InlineGraphicElement.status</code>.
15     *
16     * @playerversion Flash 10
17     * @playerversion AIR 1.5
18     * @langversion 3.0
19     *
20     * @see InlineGraphicElement#status
21     */
22    public final class InlineGraphicElementStatus
23    {
24    	/** Graphic element is an URL that has not been loaded.
25    	 *
26    	 * @playerversion Flash 10
27	 * @playerversion AIR 1.5
28	 * @langversion 3.0
29	 */
30        public static const LOAD_PENDING:String = "loadPending";
31
32        /** Load has been initiated (but not completed) on a graphic element that is a URL.
33         *
34         * @playerversion Flash 10
35	 * @playerversion AIR 1.5
36	 * @langversion 3.0
37	 */
38
39        public static const LOADING:String  	= "loading";
40
41        /**
42         * Graphic element with auto or percentage width/height has completed loading but has not been recomposed.  At the next
43         * recompose the actual size of the graphic element is calculated.
44         *
45         * @playerversion Flash 10
46	 * @playerversion AIR 1.5
47	 * @langversion 3.0
48	 */
49
50        public static const SIZE_PENDING:String = "sizePending";
51
52	/** Graphic is completely loaded and properly sized.
53	 *
54	 * @playerversion Flash 10
55	 * @playerversion AIR 1.5
56	 * @langversion 3.0
57	 */
58
59        public static const READY:String = "ready";
60
61        /** An error occurred during loading of a referenced graphic.
62         *
63         * @playerversion Flash 10
64	 * @playerversion AIR 1.5
65	 * @langversion 3.0
66	 */
67
68        public static const ERROR:String = "error";
69    }
70}
71