IntPtr OnRequestNativeByWrapper(BaseWidget _wrapper) { return(_wrapper == null ? IntPtr.Zero : _wrapper.GetNative()); }
internal static BaseWidget RequestWrapStaticText(BaseWidget _parent, IntPtr _widget) { return(new StaticText(_parent, _widget)); }
BaseWidget OnRequestWrapperCreator(string _type, BaseWidget _parent, IntPtr _widget) { return(mMapWrapper[_type](_parent, _widget)); }
internal static BaseWidget RequestWrapProgressBar(BaseWidget _parent, IntPtr _widget) { return(new ProgressBar(_parent, _widget)); }
internal StaticText(BaseWidget _parent, IntPtr _widget) : base(_parent, _widget) { }
private static extern void ExportTabControl_SetItemData_item_data(IntPtr _native, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(InterfaceMarshaler))] BaseWidget _item, [MarshalAs(UnmanagedType.IUnknown)] object _data);
private static extern void ExportTabControl_RemoveItem_item(IntPtr _native, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(InterfaceMarshaler))] BaseWidget _item);
public Widget GetWidgetByIndex( uint _index) { return((Widget)BaseWidget.GetByNative(ExportItemBox_GetWidgetByIndex__index(Native, _index))); }
private static extern void ExportMultiListBox_SetColumnResizingPolicy_item_value(IntPtr _native, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(InterfaceMarshaler))] BaseWidget _item, [MarshalAs(UnmanagedType.I4)] ResizingPolicy _value);
internal static BaseWidget RequestWrapItemBox(BaseWidget _parent, IntPtr _widget) { return(new ItemBox(_parent, _widget)); }
private static extern uint ExportItemBox_GetIndexByWidget_widget(IntPtr _native, [MarshalAs(UnmanagedType.Interface)] BaseWidget _widget);
internal ItemBox(BaseWidget _parent, IntPtr _widget) : base(_parent, _widget) { }
public Widget GetChildAt( uint _index) { return((Widget)BaseWidget.GetByNative(ExportWidget_GetChildAt__index(Native, _index))); }
public Widget FindWidget( string _name) { return((Widget)BaseWidget.GetByNative(ExportWidget_FindWidget__name(Native, _name))); }
private static extern void ExportTabControl_SetButtonWidth_item_width(IntPtr _native, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(InterfaceMarshaler))] BaseWidget _item, int _width);
private static extern IntPtr ExportMultiListBox_GetColumnName_item(IntPtr _native, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(InterfaceMarshaler))] BaseWidget _item);
private static extern void ExportTabControl_SetItemName_item_name(IntPtr _native, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(InterfaceMarshaler))] BaseWidget _item, [MarshalAs(UnmanagedType.LPWStr)] string _name);
private static extern void ExportMultiListBox_SetColumnWidth_item_width(IntPtr _native, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(InterfaceMarshaler))] BaseWidget _item, int _width);
private static extern uint ExportTabControl_GetItemIndex_item(IntPtr _native, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(InterfaceMarshaler))] BaseWidget _item);
private static extern void ExportMultiListBox_SetColumnName_item_name(IntPtr _native, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(InterfaceMarshaler))] BaseWidget _item, [MarshalAs(UnmanagedType.LPWStr)] string _name);
private static extern TabItem ExportTabControl_InsertItem_to_name_data(IntPtr _native, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(InterfaceMarshaler))] BaseWidget _to, [MarshalAs(UnmanagedType.LPWStr)] string _name, [MarshalAs(UnmanagedType.IUnknown)] object _data);
internal ProgressBar(BaseWidget _parent, IntPtr _widget) : base(_parent, _widget) { }