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 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833
|
#############################################################################
## Name: XS/TreeCtrl.xs
## Purpose: XS for Wx::TreeCtrl
## Author: Mattia Barbon
## Modified by:
## Created: 04/02/2001
## RCS-ID: $Id: TreeCtrl.xs 2298 2007-11-25 15:57:03Z mdootson $
## Copyright: (c) 2001-2007 Mattia Barbon
## Licence: This program is free software; you can redistribute it and/or
## modify it under the same terms as Perl itself
#############################################################################
#include <wx/treectrl.h>
#include "cpp/overload.h"
MODULE=Wx PACKAGE=Wx::TreeItemData
wxTreeItemData*
wxPliTreeItemData::new( data = 0 )
SV_null* data
CODE:
RETVAL = new wxPliTreeItemData( data );
OUTPUT:
RETVAL
void
wxTreeItemData::Destroy()
CODE:
delete THIS;
SV_null*
wxTreeItemData::GetData()
CODE:
RETVAL = ((wxPliTreeItemData*)THIS)->m_data;
OUTPUT:
RETVAL
void
wxTreeItemData::SetData( data = 0 )
SV_null* data
CODE:
((wxPliTreeItemData*)THIS)->SetData( data );
wxTreeItemId*
wxTreeItemData::GetId()
CODE:
RETVAL = new wxTreeItemId( THIS->GetId() );
OUTPUT:
RETVAL
void
wxTreeItemData::SetId( id )
wxTreeItemId* id
C_ARGS: *id
MODULE=Wx PACKAGE=Wx::TreeItemId
static void
wxTreeItemId::CLONE()
CODE:
wxPli_thread_sv_clone( aTHX_ CLASS, (wxPliCloneSV)wxPli_detach_object );
## // thread OK
void
wxTreeItemId::DESTROY()
CODE:
wxPli_thread_sv_unregister( aTHX_ "Wx::TreeItemId", THIS, ST(0) );
delete THIS;
bool
wxTreeItemId::IsOk()
int
tiid_spaceship( tid1, tid2, ... )
SV* tid1
SV* tid2
CODE:
// this is not a proper spaceship method
// it just allows autogeneration of != and ==
// anyway, comparing ids is useless
RETVAL = -1;
if( SvROK( tid1 ) && SvROK( tid2 ) &&
sv_derived_from( tid1, CHAR_P "Wx::TreeItemId" ) &&
sv_derived_from( tid2, CHAR_P "Wx::TreeItemId" ) )
{
wxTreeItemId* id1 = (wxTreeItemId*)
wxPli_sv_2_object( aTHX_ tid1, "Wx::TreeItemId" );
wxTreeItemId* id2 = (wxTreeItemId*)
wxPli_sv_2_object( aTHX_ tid2, "Wx::TreeItemId" );
RETVAL = *id1 == *id2 ? 0 : 1;
} else
RETVAL = 1;
OUTPUT:
RETVAL
MODULE=Wx PACKAGE=Wx::TreeEvent
wxTreeEvent*
wxTreeEvent::new( commandType = wxEVT_NULL, id = 0 )
wxEventType commandType
int id
wxTreeItemId*
wxTreeEvent::GetItem()
CODE:
RETVAL = new wxTreeItemId( THIS->GetItem() );
OUTPUT:
RETVAL
#if WXPERL_W_VERSION_GE( 2, 7, 2 )
void
wxTreeCtrl::SetQuickBestSize( q )
bool q
bool
wxTreeCtrl::GetQuickBestSize()
#endif
int
wxTreeEvent::GetKeyCode()
wxTreeItemId*
wxTreeEvent::GetOldItem()
CODE:
RETVAL = new wxTreeItemId( THIS->GetOldItem() );
OUTPUT:
RETVAL
wxPoint*
wxTreeEvent::GetPoint()
CODE:
RETVAL = new wxPoint( THIS->GetPoint() );
OUTPUT:
RETVAL
bool
wxTreeEvent::IsEditCancelled()
wxString
wxTreeEvent::GetLabel()
void
wxTreeEvent::SetToolTip( tooltip )
wxString tooltip
MODULE=Wx PACKAGE=Wx::TreeCtrl
void
new( ... )
PPCODE:
BEGIN_OVERLOAD()
MATCH_VOIDM_REDISP( newDefault )
MATCH_ANY_REDISP( newFull )
END_OVERLOAD( "Wx::TreeCtrl::new" )
wxTreeCtrl*
newDefault( CLASS )
PlClassName CLASS
CODE:
RETVAL = new wxPliTreeCtrl( CLASS );
wxPli_create_evthandler( aTHX_ RETVAL, CLASS );
OUTPUT: RETVAL
wxTreeCtrl*
newFull( CLASS, parent, id = wxID_ANY, pos = wxDefaultPosition, size = wxDefaultSize, style = wxTR_HAS_BUTTONS, validator = (wxValidator*)&wxDefaultValidator, name = wxTreeCtrlNameStr )
PlClassName CLASS
wxWindow* parent
wxWindowID id
wxPoint pos
wxSize size
long style
wxValidator* validator
wxString name
CODE:
RETVAL = new wxPliTreeCtrl( CLASS, parent, id, pos, size,
style, *validator, name );
OUTPUT:
RETVAL
bool
wxTreeCtrl::Create( parent, id = wxID_ANY, pos = wxDefaultPosition, size = wxDefaultSize, style = wxTR_HAS_BUTTONS, validator = (wxValidator*)&wxDefaultValidator, name = wxTreeCtrlNameStr )
wxWindow* parent
wxWindowID id
wxPoint pos
wxSize size
long style
wxValidator* validator
wxString name
C_ARGS: parent, id, pos, size, style, *validator, name
wxTreeItemId*
wxTreeCtrl::AddRoot( text, image = -1, selImage = -1, data = 0 )
wxString text
int image
int selImage
wxTreeItemData* data
CODE:
RETVAL = new wxTreeItemId( THIS->AddRoot( text, image, selImage, data ) );
OUTPUT:
RETVAL
wxTreeItemId*
wxTreeCtrl::AppendItem( parent, text, image = -1, selImage = -1, data = 0 )
wxTreeItemId* parent
wxString text
int image
int selImage
wxTreeItemData* data
CODE:
RETVAL = new wxTreeItemId( THIS->AppendItem( *parent, text, image,
selImage, data ) );
OUTPUT:
RETVAL
void
wxTreeCtrl::Collapse( item )
wxTreeItemId* item
CODE:
THIS->Collapse( *item );
#if WXPERL_W_VERSION_GE( 2, 8, 3 )
void
wxTreeCtrl::CollapseAll()
void
wxTreeCtrl::CollapseAllChildren( item )
wxTreeItemId* item
C_ARGS: *item
#endif
void
wxTreeCtrl::CollapseAndReset( item )
wxTreeItemId* item
C_ARGS: *item
void
wxTreeCtrl::Delete( item )
wxTreeItemId* item
C_ARGS: *item
void
wxTreeCtrl::DeleteChildren( item )
wxTreeItemId* item;
C_ARGS: *item
void
wxTreeCtrl::DeleteAllItems()
void
wxTreeCtrl::EditLabel( item )
wxTreeItemId* item
CODE:
THIS->EditLabel( *item );
#if defined( __WXMSW__ )
#if WXPERL_W_VERSION_GE( 2, 5, 3 )
void
wxTreeCtrl::EndEditLabel( item, discardChanges = false )
wxTreeItemId* item
bool discardChanges
C_ARGS: *item, discardChanges
#else
void
wxTreeCtrl::EndEditLabel( cancelEdit )
bool cancelEdit
#endif
#endif
void
wxTreeCtrl::EnsureVisible( item )
wxTreeItemId* item
C_ARGS: *item
#if WXPERL_W_VERSION_GE( 2, 7, 2 )
void
wxTreeCtrl::ExpandAll()
#endif
void
wxTreeCtrl::Expand( item )
wxTreeItemId* item
C_ARGS: *item
#if WXPERL_W_VERSION_GE( 2, 7, 0 )
void
wxTreeCtrl::ExpandAllChildren( item )
wxTreeItemId* item
C_ARGS: *item
#endif
void
wxTreeCtrl::GetBoundingRect( item, textOnly = false )
wxTreeItemId* item
bool textOnly
PREINIT:
wxRect rect;
PPCODE:
bool ret = THIS->GetBoundingRect( *item, rect, textOnly );
if( ret )
{
SV* ret = sv_newmortal();
wxPli_non_object_2_sv( aTHX_ ret, new wxRect( rect ), "Wx::Rect" );
XPUSHs( ret );
}
else
{
XSRETURN_UNDEF;
}
size_t
wxTreeCtrl::GetChildrenCount( item, recursively = true )
wxTreeItemId* item
bool recursively
C_ARGS: *item, recursively
int
wxTreeCtrl::GetCount()
wxTreeItemData*
wxTreeCtrl::GetItemData( item )
wxTreeItemId* item
CODE:
RETVAL = (wxPliTreeItemData*) THIS->GetItemData( *item );
OUTPUT:
RETVAL
SV_null*
wxTreeCtrl::GetPlData( item )
wxTreeItemId* item
CODE:
wxPliTreeItemData* data = (wxPliTreeItemData*) THIS->GetItemData( *item );
RETVAL = data ? data->m_data : 0;
OUTPUT:
RETVAL
#if defined( __WXMSW__ ) || defined( __WXPERL_FORCE__ )
wxTextCtrl*
wxTreeCtrl::GetEditControl()
#endif
void
wxTreeCtrl::GetFirstChild( item )
wxTreeItemId* item
PREINIT:
#if WXPERL_W_VERSION_GE( 2, 5, 1 )
void* cookie;
#else
long cookie;
#endif
PPCODE:
wxTreeItemId ret = THIS->GetFirstChild( *item, cookie );
#if WXPERL_W_VERSION_LT( 2, 5, 1 )
if( !ret.IsOk() ) cookie = -1;
#endif
EXTEND( SP, 2 );
PUSHs( wxPli_non_object_2_sv( aTHX_ sv_newmortal(),
new wxTreeItemId( ret ),
"Wx::TreeItemId" ) );
#if WXPERL_W_VERSION_GE( 2, 5, 1 )
PUSHs( sv_2mortal( newSViv( PTR2IV( cookie ) ) ) );
#else
PUSHs( sv_2mortal( newSViv( cookie ) ) );
#endif
wxTreeItemId*
wxTreeCtrl::GetFirstVisibleItem()
CODE:
RETVAL = new wxTreeItemId( THIS->GetFirstVisibleItem() );
OUTPUT:
RETVAL
wxImageList*
wxTreeCtrl::GetImageList()
OUTPUT:
RETVAL
CLEANUP:
wxPli_object_set_deleteable( aTHX_ ST(0), false );
#if !defined( __WXMSW__ )
wxImageList*
wxTreeCtrl::GetButtonsImageList()
OUTPUT:
RETVAL
CLEANUP:
wxPli_object_set_deleteable( aTHX_ ST(0), false );
#endif
int
wxTreeCtrl::GetIndent()
int
wxTreeCtrl::GetItemImage( item, which = wxTreeItemIcon_Normal )
wxTreeItemId* item
wxTreeItemIcon which
C_ARGS: *item, which
wxString
wxTreeCtrl::GetItemText( item )
wxTreeItemId* item
C_ARGS: *item
wxColour*
wxTreeCtrl::GetItemBackgroundColour( item )
wxTreeItemId* item
CODE:
RETVAL = new wxColour( THIS->GetItemBackgroundColour( *item ) );
OUTPUT: RETVAL
wxColour*
wxTreeCtrl::GetItemTextColour( item )
wxTreeItemId* item
CODE:
RETVAL = new wxColour( THIS->GetItemTextColour( *item ) );
OUTPUT: RETVAL
wxFont*
wxTreeCtrl::GetItemFont( item )
wxTreeItemId* item
CODE:
RETVAL = new wxFont( THIS->GetItemFont( *item ) );
OUTPUT: RETVAL
wxTreeItemId*
wxTreeCtrl::GetLastChild( item )
wxTreeItemId* item
CODE:
RETVAL = new wxTreeItemId( THIS->GetLastChild( *item ) );
OUTPUT:
RETVAL
#if WXPERL_W_VERSION_GE( 2, 5, 1 )
void
wxTreeCtrl::GetNextChild( item, cookie )
wxTreeItemId* item
IV cookie
PREINIT:
void* realcookie = INT2PTR( void*, cookie );
PPCODE:
wxTreeItemId ret = THIS->GetNextChild( *item, realcookie );
EXTEND( SP, 2 );
PUSHs( wxPli_non_object_2_sv( aTHX_ sv_newmortal(),
new wxTreeItemId( ret ),
"Wx::TreeItemId" ) );
PUSHs( sv_2mortal( newSViv( PTR2IV( realcookie ) ) ) );
#else
void
wxTreeCtrl::GetNextChild( item, cookie )
wxTreeItemId* item
long cookie
PPCODE:
wxTreeItemId ret = THIS->GetNextChild( *item, cookie );
EXTEND( SP, 2 );
PUSHs( wxPli_non_object_2_sv( aTHX_ sv_newmortal(),
new wxTreeItemId( ret ),
"Wx::TreeItemId" ) );
PUSHs( sv_2mortal( newSViv( cookie ) ) );
#endif
wxTreeItemId*
wxTreeCtrl::GetNextSibling( item )
wxTreeItemId* item
CODE:
RETVAL = new wxTreeItemId( THIS->GetNextSibling( *item ) );
OUTPUT:
RETVAL
wxTreeItemId*
wxTreeCtrl::GetNextVisible( item )
wxTreeItemId* item
CODE:
RETVAL = new wxTreeItemId( THIS->GetNextVisible( *item ) );
OUTPUT:
RETVAL
## DECLARE_OVERLOAD( wtid, Wx::TreeItemId )
void
wxTreeCtrl::GetParent( ... )
PPCODE:
BEGIN_OVERLOAD()
MATCH_VOIDM_REDISP( Wx::Window::GetParent )
MATCH_REDISP( wxPliOvl_wtid, GetItemParent )
END_OVERLOAD( Wx::TreeCtrl::GetParent )
wxTreeItemId*
wxTreeCtrl::GetItemParent( item )
wxTreeItemId* item
CODE:
RETVAL = new wxTreeItemId(
THIS->GetItemParent( *item )
);
OUTPUT:
RETVAL
wxTreeItemId*
wxTreeCtrl::GetPrevSibling( item )
wxTreeItemId* item
CODE:
RETVAL = new wxTreeItemId( THIS->GetPrevSibling( *item ) );
OUTPUT:
RETVAL
wxTreeItemId*
wxTreeCtrl::GetPrevVisible( item )
wxTreeItemId* item
CODE:
RETVAL = new wxTreeItemId( THIS->GetPrevVisible( *item ) );
OUTPUT:
RETVAL
wxTreeItemId*
wxTreeCtrl::GetRootItem()
CODE:
RETVAL = new wxTreeItemId( THIS->GetRootItem() );
OUTPUT:
RETVAL
wxTreeItemId*
wxTreeCtrl::GetSelection()
CODE:
RETVAL = new wxTreeItemId( THIS->GetSelection() );
OUTPUT:
RETVAL
void
wxTreeCtrl::GetSelections()
PREINIT:
wxArrayTreeItemIds selections;
PPCODE:
size_t num = THIS->GetSelections( selections );
EXTEND( SP, (IV)num );
for( size_t i = 0; i < num; ++i )
{
PUSHs( wxPli_non_object_2_sv( aTHX_ sv_newmortal(),
new wxTreeItemId( selections[i] ),
"Wx::TreeItemId" ) );
}
wxImageList*
wxTreeCtrl::GetStateImageList()
OUTPUT:
RETVAL
CLEANUP:
wxPli_object_set_deleteable( aTHX_ ST(0), false );
void
wxTreeCtrl::HitTest( point )
wxPoint point
PREINIT:
int flags;
PPCODE:
wxTreeItemId ret = THIS->HitTest( point, flags );
EXTEND( SP, 2 );
PUSHs( wxPli_non_object_2_sv( aTHX_ sv_newmortal(),
new wxTreeItemId( ret ),
"Wx::TreeItemId" ) );
PUSHs( sv_2mortal( newSViv( flags ) ) );
void
wxTreeCtrl::InsertItem( ... )
PPCODE:
BEGIN_OVERLOAD()
MATCH_REDISP_COUNT_ALLOWMORE( wxPliOvl_wtid_wtid_s_n_n, InsertItemPrev, 3 )
MATCH_REDISP_COUNT_ALLOWMORE( wxPliOvl_wtid_n_s_n_n, InsertItemBef, 3 )
END_OVERLOAD( Wx::TreeCtrl::InsertItem )
wxTreeItemId*
wxTreeCtrl::InsertItemPrev( parent, previous, text, image = -1, selImage = -1, data = 0 )
wxTreeItemId* parent
wxTreeItemId* previous
wxString text
int image
int selImage
wxTreeItemData* data
CODE:
RETVAL = new wxTreeItemId( THIS->InsertItem( *parent, *previous, text,
image, selImage, data ) );
OUTPUT:
RETVAL
wxTreeItemId*
wxTreeCtrl::InsertItemBef( parent, before, text, image = -1, selImage = -1, data = 0 )
wxTreeItemId* parent
size_t before
wxString text
int image
int selImage
wxTreeItemData* data
CODE:
RETVAL = new wxTreeItemId( THIS->InsertItem( *parent, before, text,
image, selImage, data ) );
OUTPUT:
RETVAL
bool
wxTreeCtrl::IsBold( item )
wxTreeItemId* item
C_ARGS: *item
bool
wxTreeCtrl::IsExpanded( item )
wxTreeItemId* item
C_ARGS: *item
bool
wxTreeCtrl::IsSelected( item )
wxTreeItemId* item
C_ARGS: *item
bool
wxTreeCtrl::IsVisible( item )
wxTreeItemId* item
C_ARGS: *item
#if WXPERL_W_VERSION_GE( 2, 8, 3 )
bool
wxTreeCtrl::IsEmpty()
#endif
bool
wxTreeCtrl::ItemHasChildren( item )
wxTreeItemId* item
C_ARGS: *item
int
wxTreeCtrl::OnCompareItems( item1, item2 )
wxTreeItemId* item1
wxTreeItemId* item2
CODE:
RETVAL = THIS->wxTreeCtrl::OnCompareItems( *item1, *item2 );
OUTPUT: RETVAL
wxTreeItemId*
wxTreeCtrl::PrependItem( parent, text, image = -1, selImage = -1, data = 0 )
wxTreeItemId* parent
wxString text
int image
int selImage
wxTreeItemData* data
CODE:
RETVAL = new wxTreeItemId( THIS->PrependItem( *parent, text, image,
selImage, data ) );
OUTPUT:
RETVAL
void
wxTreeCtrl::ScrollTo( item )
wxTreeItemId* item
C_ARGS: *item
#if WXPERL_W_VERSION_GE( 2, 5, 2 )
void
wxTreeCtrl::SelectItem( item, select = true )
wxTreeItemId* item
bool select
C_ARGS: *item, select
#else
void
wxTreeCtrl::SelectItem( item )
wxTreeItemId* item
C_ARGS: *item
#endif
void
wxTreeCtrl::SetIndent( indent )
int indent
void
wxTreeCtrl::SetImageList( list )
wxImageList* list
#if !defined( __WXMSW__ )
void
wxTreeCtrl::SetButtonsImageList( list )
wxImageList* list
#endif
void
wxTreeCtrl::SetStateImageList( list )
wxImageList* list
void
wxTreeCtrl::AssignImageList( list )
wxImageList* list
CODE:
wxPli_object_set_deleteable( aTHX_ ST(1), false );
THIS->AssignImageList( list );
void
wxTreeCtrl::AssignButtonsImageList( list )
wxImageList* list
CODE:
wxPli_object_set_deleteable( aTHX_ ST(1), false );
THIS->AssignStateImageList( list );
void
wxTreeCtrl::AssignStateImageList( list )
wxImageList* list
CODE:
wxPli_object_set_deleteable( aTHX_ ST(1), false );
THIS->AssignStateImageList( list );
void
wxTreeCtrl::SetItemBackgroundColour( item, col )
wxTreeItemId* item
wxColour col
C_ARGS: *item, col
void
wxTreeCtrl::SetItemBold( item, bold = true )
wxTreeItemId* item
bool bold
C_ARGS: *item, bold
void
wxTreeCtrl::SetItemData( item, data )
wxTreeItemId* item
wxTreeItemData* data
CODE:
wxTreeItemData* tid = THIS->GetItemData( *item );
if( tid ) delete tid;
THIS->SetItemData( *item, data );
void
wxTreeCtrl::SetPlData( item, data )
wxTreeItemId* item
SV_null* data
CODE:
wxTreeItemData* tid = THIS->GetItemData( *item );
if( tid ) delete tid;
THIS->SetItemData( *item, data ? new wxPliTreeItemData( data ) : 0 );
#if defined( __WXMSW__ )
void
wxTreeCtrl::SetItemDropHighlight( item, highlight = true )
wxTreeItemId* item
bool highlight
C_ARGS: *item, highlight
#endif
void
wxTreeCtrl::SetItemFont( item, font )
wxTreeItemId* item
wxFont* font
C_ARGS: *item, *font
void
wxTreeCtrl::SetItemHasChildren( item, hasChildren = true )
wxTreeItemId* item
bool hasChildren
C_ARGS: *item, hasChildren
void
wxTreeCtrl::SetItemImage( item, image, which = wxTreeItemIcon_Normal )
wxTreeItemId* item
int image
wxTreeItemIcon which
C_ARGS: *item, image, which
void
wxTreeCtrl::SetItemText( item, text )
wxTreeItemId* item
wxString text
C_ARGS: *item, text
void
wxTreeCtrl::SetItemTextColour( item, col )
wxTreeItemId* item
wxColour col
C_ARGS: *item, col
void
wxTreeCtrl::SortChildren( item )
wxTreeItemId* item
C_ARGS: *item
void
wxTreeCtrl::Toggle( item )
wxTreeItemId* item
C_ARGS: *item
#if WXPERL_W_VERSION_GE( 2, 5, 3 )
void
wxTreeCtrl::UnselectItem( item )
wxTreeItemId* item
C_ARGS: *item
void
wxTreeCtrl::ToggleItemSelection( item )
wxTreeItemId* item
C_ARGS: *item
#endif
void
wxTreeCtrl::Unselect()
void
wxTreeCtrl::UnselectAll()
|