1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692
|
/*!
@file
@author Generate utility by Albert Semenov
@date 01/2009
@module
*/
using System;
using System.Runtime.InteropServices;
namespace MyGUI.Sharp
{
public class MultiListBox :
Widget
{
#region MultiListBox
protected override string GetWidgetType() { return "MultiListBox"; }
internal static BaseWidget RequestWrapMultiListBox(BaseWidget _parent, IntPtr _widget)
{
MultiListBox widget = new MultiListBox();
widget.WrapWidget(_parent, _widget);
return widget;
}
internal static BaseWidget RequestCreateMultiListBox(BaseWidget _parent, WidgetStyle _style, string _skin, IntCoord _coord, Align _align, string _layer, string _name)
{
MultiListBox widget = new MultiListBox();
widget.CreateWidgetImpl(_parent, _style, _skin, _coord, _align, _layer, _name);
return widget;
}
#endregion
//InsertPoint
#region Request OperatorLess
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBoxEvent_AdviseOperatorLess(IntPtr _native, bool _advise);
public delegate void HandleOperatorLess(
MultiListBox _sender,
uint _column,
string _firstItem,
string _secondItem,
ref bool _less);
private HandleOperatorLess mEventOperatorLess;
public event HandleOperatorLess RequestOperatorLess
{
add
{
if (ExportEventOperatorLess.mDelegate == null)
{
ExportEventOperatorLess.mDelegate = new ExportEventOperatorLess.ExportHandle(OnExportOperatorLess);
ExportEventOperatorLess.ExportMultiListBoxEvent_DelegateOperatorLess(ExportEventOperatorLess.mDelegate);
}
if (mEventOperatorLess == null)
ExportMultiListBoxEvent_AdviseOperatorLess(Native, true);
mEventOperatorLess += value;
}
remove
{
mEventOperatorLess -= value;
if (mEventOperatorLess == null)
ExportMultiListBoxEvent_AdviseOperatorLess(Native, false);
}
}
private struct ExportEventOperatorLess
{
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
public static extern void ExportMultiListBoxEvent_DelegateOperatorLess(ExportHandle _delegate);
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
public delegate void ExportHandle(
IntPtr _sender,
uint _column,
[MarshalAs(UnmanagedType.LPWStr)] string _firstItem,
[MarshalAs(UnmanagedType.LPWStr)] string _secondItem,
[MarshalAs(UnmanagedType.U1)] ref bool _less);
public static ExportHandle mDelegate;
}
private static void OnExportOperatorLess(
IntPtr _sender,
uint _column,
string _firstItem,
string _secondItem,
ref bool _less)
{
MultiListBox sender = (MultiListBox)BaseWidget.GetByNative(_sender);
if (sender.mEventOperatorLess != null)
sender.mEventOperatorLess(
sender ,
_column,
_firstItem,
_secondItem,
ref _less);
}
#endregion
#region Event ListChangePosition
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBoxEvent_AdviseListChangePosition(IntPtr _native, bool _advise);
public delegate void HandleListChangePosition(
MultiListBox _sender,
uint _index);
private HandleListChangePosition mEventListChangePosition;
public event HandleListChangePosition EventListChangePosition
{
add
{
if (ExportEventListChangePosition.mDelegate == null)
{
ExportEventListChangePosition.mDelegate = new ExportEventListChangePosition.ExportHandle(OnExportListChangePosition);
ExportEventListChangePosition.ExportMultiListBoxEvent_DelegateListChangePosition(ExportEventListChangePosition.mDelegate);
}
if (mEventListChangePosition == null)
ExportMultiListBoxEvent_AdviseListChangePosition(Native, true);
mEventListChangePosition += value;
}
remove
{
mEventListChangePosition -= value;
if (mEventListChangePosition == null)
ExportMultiListBoxEvent_AdviseListChangePosition(Native, false);
}
}
private struct ExportEventListChangePosition
{
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
public static extern void ExportMultiListBoxEvent_DelegateListChangePosition(ExportHandle _delegate);
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
public delegate void ExportHandle(
IntPtr _sender,
uint _index);
public static ExportHandle mDelegate;
}
private static void OnExportListChangePosition(
IntPtr _sender,
uint _index)
{
MultiListBox sender = (MultiListBox)BaseWidget.GetByNative(_sender);
if (sender.mEventListChangePosition != null)
sender.mEventListChangePosition(
sender ,
_index);
}
#endregion
#region Event ListSelectAccept
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBoxEvent_AdviseListSelectAccept(IntPtr _native, bool _advise);
public delegate void HandleListSelectAccept(
MultiListBox _sender,
uint _index);
private HandleListSelectAccept mEventListSelectAccept;
public event HandleListSelectAccept EventListSelectAccept
{
add
{
if (ExportEventListSelectAccept.mDelegate == null)
{
ExportEventListSelectAccept.mDelegate = new ExportEventListSelectAccept.ExportHandle(OnExportListSelectAccept);
ExportEventListSelectAccept.ExportMultiListBoxEvent_DelegateListSelectAccept(ExportEventListSelectAccept.mDelegate);
}
if (mEventListSelectAccept == null)
ExportMultiListBoxEvent_AdviseListSelectAccept(Native, true);
mEventListSelectAccept += value;
}
remove
{
mEventListSelectAccept -= value;
if (mEventListSelectAccept == null)
ExportMultiListBoxEvent_AdviseListSelectAccept(Native, false);
}
}
private struct ExportEventListSelectAccept
{
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
public static extern void ExportMultiListBoxEvent_DelegateListSelectAccept(ExportHandle _delegate);
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
public delegate void ExportHandle(
IntPtr _sender,
uint _index);
public static ExportHandle mDelegate;
}
private static void OnExportListSelectAccept(
IntPtr _sender,
uint _index)
{
MultiListBox sender = (MultiListBox)BaseWidget.GetByNative(_sender);
if (sender.mEventListSelectAccept != null)
sender.mEventListSelectAccept(
sender ,
_index);
}
#endregion
#region Method FindSubItemWith
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern uint ExportMultiListBox_FindSubItemWith__column__name(IntPtr _native,
uint _column,
[MarshalAs(UnmanagedType.LPWStr)] string _name);
public uint FindSubItemWith(
uint _column,
string _name)
{
return ExportMultiListBox_FindSubItemWith__column__name(Native,
_column,
_name);
}
#endregion
#region Method GetSubItemNameAt
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern IntPtr ExportMultiListBox_GetSubItemNameAt__column__index(IntPtr _native,
uint _column,
uint _index);
public string GetSubItemNameAt(
uint _column,
uint _index)
{
return Marshal.PtrToStringUni(ExportMultiListBox_GetSubItemNameAt__column__index(Native,
_column,
_index));
}
#endregion
#region Method SetSubItemNameAt
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBox_SetSubItemNameAt__column__index__name(IntPtr _native,
uint _column,
uint _index,
[MarshalAs(UnmanagedType.LPWStr)] string _name);
public void SetSubItemNameAt(
uint _column,
uint _index,
string _name)
{
ExportMultiListBox_SetSubItemNameAt__column__index__name(Native,
_column,
_index,
_name);
}
#endregion
#region Method ClearIndexSelected
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBox_ClearIndexSelected(IntPtr _native);
public void ClearIndexSelected( )
{
ExportMultiListBox_ClearIndexSelected(Native);
}
#endregion
#region Method GetItemNameAt
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern IntPtr ExportMultiListBox_GetItemNameAt__index(IntPtr _native,
uint _index);
public string GetItemNameAt(
uint _index)
{
return Marshal.PtrToStringUni(ExportMultiListBox_GetItemNameAt__index(Native,
_index));
}
#endregion
#region Method SetItemNameAt
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBox_SetItemNameAt__index__name(IntPtr _native,
uint _index,
[MarshalAs(UnmanagedType.LPWStr)] string _name);
public void SetItemNameAt(
uint _index,
string _name)
{
ExportMultiListBox_SetItemNameAt__index__name(Native,
_index,
_name);
}
#endregion
#region Method SwapItemsAt
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBox_SwapItemsAt__index1__index2(IntPtr _native,
uint _index1,
uint _index2);
public void SwapItemsAt(
uint _index1,
uint _index2)
{
ExportMultiListBox_SwapItemsAt__index1__index2(Native,
_index1,
_index2);
}
#endregion
#region Method RemoveAllItems
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBox_RemoveAllItems(IntPtr _native);
public void RemoveAllItems( )
{
ExportMultiListBox_RemoveAllItems(Native);
}
#endregion
#region Method RemoveItemAt
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBox_RemoveItemAt__index(IntPtr _native,
uint _index);
public void RemoveItemAt(
uint _index)
{
ExportMultiListBox_RemoveItemAt__index(Native,
_index);
}
#endregion
#region Method AddItem
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBox_AddItem__name(IntPtr _native,
[MarshalAs(UnmanagedType.LPWStr)] string _name);
public void AddItem(
string _name)
{
ExportMultiListBox_AddItem__name(Native,
_name);
}
#endregion
#region Method InsertItemAt
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBox_InsertItemAt__index__name(IntPtr _native,
uint _index,
[MarshalAs(UnmanagedType.LPWStr)] string _name);
public void InsertItemAt(
uint _index,
string _name)
{
ExportMultiListBox_InsertItemAt__index__name(Native,
_index,
_name);
}
#endregion
#region Method SetColumnResizingPolicyAt
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBox_SetColumnResizingPolicyAt__index__value(IntPtr _native,
uint _index,
[MarshalAs(UnmanagedType.I4)] ResizingPolicy _value);
public void SetColumnResizingPolicyAt(
uint _index,
ResizingPolicy _value)
{
ExportMultiListBox_SetColumnResizingPolicyAt__index__value(Native,
_index,
_value);
}
#endregion
#region Method SetColumnResizingPolicy
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBox_SetColumnResizingPolicy__item__value(IntPtr _native,
IntPtr _item,
[MarshalAs(UnmanagedType.I4)] ResizingPolicy _value);
public void SetColumnResizingPolicy(
MultiListItem _item,
ResizingPolicy _value)
{
ExportMultiListBox_SetColumnResizingPolicy__item__value(Native,
_item.Native,
_value);
}
#endregion
#region Method GetColumnIndex
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern uint ExportMultiListBox_GetColumnIndex__item(IntPtr _native,
IntPtr _item);
public uint GetColumnIndex(
MultiListItem _item)
{
return ExportMultiListBox_GetColumnIndex__item(Native,
_item.Native);
}
#endregion
#region Method SortByColumn
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBox_SortByColumn__column__backward(IntPtr _native,
uint _column,
[MarshalAs(UnmanagedType.U1)] bool _backward);
public void SortByColumn(
uint _column,
bool _backward)
{
ExportMultiListBox_SortByColumn__column__backward(Native,
_column,
_backward);
}
#endregion
#region Method GetColumnWidthAt
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern int ExportMultiListBox_GetColumnWidthAt__column(IntPtr _native,
uint _column);
public int GetColumnWidthAt(
uint _column)
{
return ExportMultiListBox_GetColumnWidthAt__column(Native,
_column);
}
#endregion
#region Method GetColumnName
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern IntPtr ExportMultiListBox_GetColumnName__item(IntPtr _native,
IntPtr _item);
public string GetColumnName(
MultiListItem _item)
{
return Marshal.PtrToStringUni(ExportMultiListBox_GetColumnName__item(Native,
_item.Native));
}
#endregion
#region Method GetColumnNameAt
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern IntPtr ExportMultiListBox_GetColumnNameAt__column(IntPtr _native,
uint _column);
public string GetColumnNameAt(
uint _column)
{
return Marshal.PtrToStringUni(ExportMultiListBox_GetColumnNameAt__column(Native,
_column));
}
#endregion
#region Method SetColumnWidth
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBox_SetColumnWidth__item__width(IntPtr _native,
IntPtr _item,
int _width);
public void SetColumnWidth(
MultiListItem _item,
int _width)
{
ExportMultiListBox_SetColumnWidth__item__width(Native,
_item.Native,
_width);
}
#endregion
#region Method SetColumnWidthAt
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBox_SetColumnWidthAt__column__width(IntPtr _native,
uint _column,
int _width);
public void SetColumnWidthAt(
uint _column,
int _width)
{
ExportMultiListBox_SetColumnWidthAt__column__width(Native,
_column,
_width);
}
#endregion
#region Method SetColumnName
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBox_SetColumnName__item__name(IntPtr _native,
IntPtr _item,
[MarshalAs(UnmanagedType.LPWStr)] string _name);
public void SetColumnName(
MultiListItem _item,
string _name)
{
ExportMultiListBox_SetColumnName__item__name(Native,
_item.Native,
_name);
}
#endregion
#region Method SetColumnNameAt
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBox_SetColumnNameAt__column__name(IntPtr _native,
uint _column,
[MarshalAs(UnmanagedType.LPWStr)] string _name);
public void SetColumnNameAt(
uint _column,
string _name)
{
ExportMultiListBox_SetColumnNameAt__column__name(Native,
_column,
_name);
}
#endregion
#region Method SwapColumnsAt
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBox_SwapColumnsAt__index1__index2(IntPtr _native,
uint _index1,
uint _index2);
public void SwapColumnsAt(
uint _index1,
uint _index2)
{
ExportMultiListBox_SwapColumnsAt__index1__index2(Native,
_index1,
_index2);
}
#endregion
#region Method RemoveAllColumns
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBox_RemoveAllColumns(IntPtr _native);
public void RemoveAllColumns( )
{
ExportMultiListBox_RemoveAllColumns(Native);
}
#endregion
#region Method RemoveColumnAt
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBox_RemoveColumnAt__column(IntPtr _native,
uint _column);
public void RemoveColumnAt(
uint _column)
{
ExportMultiListBox_RemoveColumnAt__column(Native,
_column);
}
#endregion
#region Method AddColumn
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBox_AddColumn__name__width(IntPtr _native,
[MarshalAs(UnmanagedType.LPWStr)] string _name,
int _width);
public void AddColumn(
string _name,
int _width)
{
ExportMultiListBox_AddColumn__name__width(Native,
_name,
_width);
}
#endregion
#region Method InsertColumnAt
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBox_InsertColumnAt__column__name__width(IntPtr _native,
uint _column,
[MarshalAs(UnmanagedType.LPWStr)] string _name,
int _width);
public void InsertColumnAt(
uint _column,
string _name,
int _width)
{
ExportMultiListBox_InsertColumnAt__column__name__width(Native,
_column,
_name,
_width);
}
#endregion
#region Property IndexSelected
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern uint ExportMultiListBox_GetIndexSelected(IntPtr _widget);
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern void ExportMultiListBox_SetIndexSelected(IntPtr _widget, uint _value);
public uint IndexSelected
{
get { return ExportMultiListBox_GetIndexSelected(Native); }
set { ExportMultiListBox_SetIndexSelected(Native, value); }
}
#endregion
#region Property ItemCount
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern uint ExportMultiListBox_GetItemCount(IntPtr _native);
public uint ItemCount
{
get { return ExportMultiListBox_GetItemCount(Native); }
}
#endregion
#region Property ColumnCount
[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
private static extern uint ExportMultiListBox_GetColumnCount(IntPtr _native);
public uint ColumnCount
{
get { return ExportMultiListBox_GetColumnCount(Native); }
}
#endregion
}
}
|