private static void OnExportListSelectAccept(
			 ListBox _sender ,
			 uint _index )
        {
            if (_sender.mEventListSelectAccept != null)
                _sender.mEventListSelectAccept(
                     _sender ,
                     _index );
        }
        private static void OnExportListChangeScroll(
			 ListBox _sender ,
			 uint _position )
        {
            if (_sender.mEventListChangeScroll != null)
                _sender.mEventListChangeScroll(
                     _sender ,
                     _position );
        }
        private static void OnExportListMouseItemFocus(
			 ListBox _sender ,
			 uint _index )
        {
            if (_sender.mEventListMouseItemFocus != null)
                _sender.mEventListMouseItemFocus(
                     _sender ,
                     _index );
        }
Esempio n. 4
0
 static void box_EventListSelectAccept(ListBox _sender, uint _index)
 {
     Export.DebugOut("EventListSelectAccept  index=" + _index.ToString());
 }
        private static void OnExportListChangePosition(
			 ListBox _sender ,
			 uint _index )
        {
            if (_sender.mEventListChangePosition != null)
                _sender.mEventListChangePosition(
                     _sender ,
                     _index );
        }
Esempio n. 6
0
 static void box_EventListChangeScroll(ListBox _sender, uint _position)
 {
     Export.DebugOut("EventListChangeScroll  index=" + _position.ToString());
 }
Esempio n. 7
0
 static void box_EventListMouseItemFocus(ListBox _sender, uint _index)
 {
     Export.DebugOut("EventListMouseItemFocus  index=" + _index.ToString());
 }
Esempio n. 8
0
 static void box_EventListSelectAccept(ListBox _sender, uint _index)
 {
     Gui.Instance.Log("TestApp", LogLevel.Info, "EventListSelectAccept  index=" + _index.ToString());
 }
Esempio n. 9
0
 static void box_EventListChangePosition(ListBox _sender, uint _index)
 {
     Export.DebugOut("EventListChangePosition  index=" + _index.ToString());
 }
Esempio n. 10
0
 static void box_EventListMouseItemFocus(ListBox _sender, uint _index)
 {
     Gui.Instance.Log("TestApp", LogLevel.Info, "EventListMouseItemFocus  index=" + _index.ToString());
 }
Esempio n. 11
0
 static void box_EventListChangeScroll(ListBox _sender, uint _position)
 {
     Gui.Instance.Log("TestApp", LogLevel.Info, "EventListChangeScroll  index=" + _position.ToString());
 }
Esempio n. 12
0
 static void box_EventListChangePosition(ListBox _sender, uint _index)
 {
     Gui.Instance.Log("TestApp", LogLevel.Info, "EventListChangePosition  index=" + _index.ToString());
 }
Esempio n. 13
0
 internal static BaseWidget RequestWrapListBox(BaseWidget _parent, IntPtr _widget)
 {
     ListBox widget = new ListBox();
     widget.WrapWidget(_parent, _widget);
     return widget;
 }
Esempio n. 14
0
 internal static BaseWidget RequestCreateListBox(BaseWidget _parent, WidgetStyle _style, string _skin, IntCoord _coord, Align _align, string _layer, string _name)
 {
     ListBox widget = new ListBox();
     widget.CreateWidgetImpl(_parent, _style, _skin, _coord, _align, _layer, _name);
     return widget;
 }