Esempio n. 1
0
		public GumpHtmlLocalized(int x, int y, int width, int height, int number, bool background, bool scrollbar)
		{
			m_X = x;
			m_Y = y;
			m_Width = width;
			m_Height = height;
			m_Number = number;
			m_Background = background;
			m_Scrollbar = scrollbar;

			m_Type = GumpHtmlLocalizedType.Plain;
		}
Esempio n. 2
0
        public GumpHtmlLocalized(int x, int y, int width, int height, int number, bool background, bool scrollbar)
        {
            m_X          = x;
            m_Y          = y;
            m_Width      = width;
            m_Height     = height;
            m_Number     = number;
            m_Background = background;
            m_Scrollbar  = scrollbar;

            m_Type = GumpHtmlLocalizedType.Plain;
        }
Esempio n. 3
0
        public GumpHtmlLocalized(int x, int y, int width, int height, int number, int color, bool background, bool scrollbar)
        {
            this.m_X = x;
            this.m_Y = y;
            this.m_Width = width;
            this.m_Height = height;
            this.m_Number = number;
            this.m_Color = color;
            this.m_Background = background;
            this.m_Scrollbar = scrollbar;

            this.m_Type = GumpHtmlLocalizedType.Color;
        }
Esempio n. 4
0
        public GumpHtmlLocalized(int x, int y, int width, int height, int number, int color, bool background, bool scrollbar)
        {
            this.m_X          = x;
            this.m_Y          = y;
            this.m_Width      = width;
            this.m_Height     = height;
            this.m_Number     = number;
            this.m_Color      = color;
            this.m_Background = background;
            this.m_Scrollbar  = scrollbar;

            this.m_Type = GumpHtmlLocalizedType.Color;
        }
        public GumpHtmlLocalized(int x, int y, int width, int height, int number, int color,
                                 bool background = false, bool scrollbar = false)
        {
            m_X          = x;
            m_Y          = y;
            m_Width      = width;
            m_Height     = height;
            m_Number     = number;
            m_Color      = color;
            m_Background = background;
            m_Scrollbar  = scrollbar;

            m_Type = GumpHtmlLocalizedType.Color;
        }
Esempio n. 6
0
        public GumpHtmlLocalized(int x, int y, int width, int height, int number, string args, int color, bool background, bool scrollbar)
        {
            // Are multiple arguments unsupported? And what about non ASCII arguments?
            this.m_X          = x;
            this.m_Y          = y;
            this.m_Width      = width;
            this.m_Height     = height;
            this.m_Number     = number;
            this.m_Args       = args;
            this.m_Color      = color;
            this.m_Background = background;
            this.m_Scrollbar  = scrollbar;

            this.m_Type = GumpHtmlLocalizedType.Args;
        }
Esempio n. 7
0
		public GumpHtmlLocalized(
			int x, int y, int width, int height, int number, string args, int color, bool background, bool scrollbar)
		{
			// Are multiple arguments unsupported? And what about non ASCII arguments?
			m_X = x;
			m_Y = y;
			m_Width = width;
			m_Height = height;
			m_Number = number;
			m_Args = args;
			m_Color = color;
			m_Background = background;
			m_Scrollbar = scrollbar;

			m_Type = GumpHtmlLocalizedType.Args;
		}