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
|
/********************************************************************************
* *
* T r e e L i s t B o x O b j e c t *
* *
*********************************************************************************
* Copyright (C) 1999,2022 by Jeroen van der Zijp. All Rights Reserved. *
*********************************************************************************
* This library is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License as published by *
* the Free Software Foundation; either version 3 of the License, or *
* (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/> *
********************************************************************************/
#include "xincs.h"
#include "fxver.h"
#include "fxdefs.h"
#include "fxmath.h"
#include "fxkeys.h"
#include "FXArray.h"
#include "FXHash.h"
#include "FXMutex.h"
#include "FXStream.h"
#include "FXString.h"
#include "FXSize.h"
#include "FXPoint.h"
#include "FXRectangle.h"
#include "FXStringDictionary.h"
#include "FXSettings.h"
#include "FXRegistry.h"
#include "FXAccelTable.h"
#include "FXFont.h"
#include "FXEvent.h"
#include "FXWindow.h"
#include "FXApp.h"
#include "FXFrame.h"
#include "FXLabel.h"
#include "FXTextField.h"
#include "FXButton.h"
#include "FXMenuButton.h"
#include "FXPopup.h"
#include "FXScrollBar.h"
#include "FXTreeList.h"
#include "FXTreeListBox.h"
/*
Notes:
- Handling typed text:
a) Pass string to target only.
b) Pass string to target & add to list [begin, after/before current, or end].
c) Pass string to target & replace current item's label.
- In most other respects, it behaves like a FXTextField.
- Need to catch up/down arrow keys.
- Need to have mode to pass item* instead of char*.
- TreeListBox turns OFF GUI Updating while being manipulated.
- Fix this one [and FXComboBox also] the height is the height as determined
by the TreeList's item height...
- Perhaps may add some access API's to FXTreeItem?
- The default height of the treelist box is not good yet.
- Perhaps use TWO tree lists, one in the pane, and one in the box;
we can then rest assured that the metrics are always computed properly.
- Still need some code to make sure always one item shows in box.
- No reaction to up and down arrow while disabled.
*/
#define TREELISTBOX_MASK (0)
using namespace FX;
/*******************************************************************************/
namespace FX {
// Map
FXDEFMAP(FXTreeListBox) FXTreeListBoxMap[]={
FXMAPFUNC(SEL_FOCUS_UP,0,FXTreeListBox::onFocusUp),
FXMAPFUNC(SEL_FOCUS_DOWN,0,FXTreeListBox::onFocusDown),
FXMAPFUNC(SEL_FOCUS_SELF,0,FXTreeListBox::onFocusSelf),
FXMAPFUNC(SEL_UPDATE,FXTreeListBox::ID_TREE,FXTreeListBox::onTreeUpdate),
FXMAPFUNC(SEL_CLICKED,FXTreeListBox::ID_TREE,FXTreeListBox::onTreeClicked),
FXMAPFUNC(SEL_CHANGED,FXTreeListBox::ID_TREE,FXTreeListBox::onTreeForward),
FXMAPFUNC(SEL_DELETED,FXTreeListBox::ID_TREE,FXTreeListBox::onTreeForward),
FXMAPFUNC(SEL_INSERTED,FXTreeListBox::ID_TREE,FXTreeListBox::onTreeForward),
FXMAPFUNC(SEL_COMMAND,FXTreeListBox::ID_TREE,FXTreeListBox::onTreeCommand),
FXMAPFUNC(SEL_LEFTBUTTONPRESS,FXTreeListBox::ID_FIELD,FXTreeListBox::onFieldButton),
FXMAPFUNC(SEL_MOUSEWHEEL,FXTreeListBox::ID_FIELD,FXTreeListBox::onMouseWheel),
};
// Object implementation
FXIMPLEMENT(FXTreeListBox,FXPacker,FXTreeListBoxMap,ARRAYNUMBER(FXTreeListBoxMap))
// List box
FXTreeListBox::FXTreeListBox(FXComposite *p,FXObject* tgt,FXSelector sel,FXuint opts,FXint x,FXint y,FXint w,FXint h,FXint pl,FXint pr,FXint pt,FXint pb):FXPacker(p,opts,x,y,w,h, 0,0,0,0, 0,0){
flags|=FLAG_ENABLED;
target=tgt;
message=sel;
field=new FXButton(this," ",nullptr,this,FXTreeListBox::ID_FIELD,ICON_BEFORE_TEXT|JUSTIFY_LEFT,0,0,0,0,pl,pr,pt,pb);
field->setBackColor(getApp()->getBackColor());
pane=new FXPopup(this,FRAME_LINE);
tree=new FXTreeList(pane,this,FXTreeListBox::ID_TREE,TREELIST_BROWSESELECT|TREELIST_AUTOSELECT|LAYOUT_FILL_X|LAYOUT_FILL_Y|SCROLLERS_TRACK|HSCROLLING_OFF);
tree->setIndent(0);
button=new FXMenuButton(this,FXString::null,nullptr,pane,FRAME_RAISED|FRAME_THICK|MENUBUTTON_DOWN|MENUBUTTON_ATTACH_RIGHT,0,0,0,0,0,0,0,0);
button->setXOffset(border);
button->setYOffset(border);
flags&=~FLAG_UPDATE; // Never GUI update
}
// Create window
void FXTreeListBox::create(){
FXPacker::create();
pane->create();
}
// Detach window
void FXTreeListBox::detach(){
pane->detach();
FXPacker::detach();
}
// Destroy window
void FXTreeListBox::destroy(){
pane->destroy();
FXPacker::destroy();
}
// Enable the window
void FXTreeListBox::enable(){
if(!isEnabled()){
FXPacker::enable();
field->setBackColor(getApp()->getBackColor());
field->enable();
button->enable();
}
}
// Disable the window
void FXTreeListBox::disable(){
if(isEnabled()){
FXPacker::disable();
field->setBackColor(getApp()->getBaseColor());
field->disable();
button->disable();
}
}
// Get default width
FXint FXTreeListBox::getDefaultWidth(){
FXint ww,pw;
ww=field->getDefaultWidth()+button->getDefaultWidth()+(border<<1);
pw=pane->getDefaultWidth();
return FXMAX(ww,pw);
}
// Get default height
FXint FXTreeListBox::getDefaultHeight(){
FXint th,bh;
th=field->getDefaultHeight();
bh=button->getDefaultHeight();
return FXMAX(th,bh)+(border<<1);
}
// Recalculate layout
void FXTreeListBox::layout(){
FXint buttonWidth,fieldWidth,itemHeight;
itemHeight=height-(border<<1);
buttonWidth=button->getDefaultWidth();
fieldWidth=width-buttonWidth-(border<<1);
field->position(border,border,fieldWidth,itemHeight);
button->position(border+fieldWidth,border,buttonWidth,itemHeight);
pane->resize(width,pane->getDefaultHeight());
flags&=~FLAG_DIRTY;
}
// Clicked inside or outside an item in the list; unpost the pane
long FXTreeListBox::onTreeClicked(FXObject*,FXSelector,void* ){
return button->handle(this,FXSEL(SEL_COMMAND,ID_UNPOST),nullptr);
}
// Clicked on an item in the list; issue a callback
long FXTreeListBox::onTreeCommand(FXObject*,FXSelector,void* ptr){
field->setText(tree->getItemText((FXTreeItem*)ptr));
field->setIcon(tree->getItemClosedIcon((FXTreeItem*)ptr));
return target && target->tryHandle(this,FXSEL(SEL_COMMAND,message),ptr);
}
// Forward changed message from list to target
long FXTreeListBox::onTreeForward(FXObject*,FXSelector sel,void* ptr){
return target && target->tryHandle(this,FXSEL(FXSELTYPE(sel),message),ptr);
}
// Forward GUI update of tree to target; but only if pane is not popped
long FXTreeListBox::onTreeUpdate(FXObject*,FXSelector,void*){
return target && !isMenuShown() && target->tryHandle(this,FXSEL(SEL_UPDATE,message),nullptr);
}
// Pressed left button in text field
long FXTreeListBox::onFieldButton(FXObject*,FXSelector,void*){
button->showMenu(true);
return 1;
}
// Bounce focus to the field
long FXTreeListBox::onFocusSelf(FXObject* sender,FXSelector,void* ptr){
return field->handle(sender,FXSEL(SEL_FOCUS_SELF,0),ptr);
}
// Select upper item
long FXTreeListBox::onFocusUp(FXObject*,FXSelector,void*){
if(isEnabled()){
FXTreeItem *item=getCurrentItem();
if(!item){ for(item=getLastItem(); item->getLast(); item=item->getLast()){} }
else if(item->getAbove()){ item=item->getAbove(); }
if(item){
setCurrentItem(item,true);
}
return 1;
}
return 0;
}
// Select lower item
long FXTreeListBox::onFocusDown(FXObject*,FXSelector,void*){
if(isEnabled()){
FXTreeItem *item=getCurrentItem();
if(!item){ item=getFirstItem(); }
else if(item->getBelow()){ item=item->getBelow(); }
if(item){
setCurrentItem(item,true);
}
return 1;
}
return 0;
}
// Mouse wheel
long FXTreeListBox::onMouseWheel(FXObject*,FXSelector,void* ptr){
FXEvent* event=(FXEvent*)ptr;
if(isEnabled()){
FXTreeItem *item=getCurrentItem();
if(event->code<0){
if(!item){ item=getFirstItem(); }
else if(item->getBelow()){ item=item->getBelow(); }
}
else if(event->code>0){
if(!item){ for(item=getLastItem(); item->getLast(); item=item->getLast()){} }
else if(item->getAbove()){ item=item->getAbove(); }
}
if(item){
setCurrentItem(item,true);
}
return 1;
}
return 0;
}
// Show menu
void FXTreeListBox::showMenu(FXbool shw){
button->showMenu(shw);
}
// Is the pane shown
FXbool FXTreeListBox::isMenuShown() const {
return button->isMenuShown();
}
// Set font
void FXTreeListBox::setFont(FXFont* fnt){
if(!fnt){ fxerror("%s::setFont: NULL font specified.\n",getClassName()); }
field->setFont(fnt);
tree->setFont(fnt);
recalc();
}
// Obtain font
FXFont* FXTreeListBox::getFont() const {
return field->getFont();
}
// Get number of items
FXint FXTreeListBox::getNumItems() const {
return tree->getNumItems();
}
// Get number of visible items
FXint FXTreeListBox::getNumVisible() const {
return tree->getNumVisible();
}
// Set number of visible items
void FXTreeListBox::setNumVisible(FXint nvis){
tree->setNumVisible(nvis);
}
// Get first item
FXTreeItem* FXTreeListBox::getFirstItem() const {
return tree->getFirstItem();
}
// Get last item
FXTreeItem* FXTreeListBox::getLastItem() const {
return tree->getLastItem();
}
// Change current item
void FXTreeListBox::setCurrentItem(FXTreeItem* item,FXbool notify){
FXTreeItem* current=tree->getCurrentItem();
FXTRACE((100,"FXTreeListBox::setCurrentItem(%p=%s,%d) current=%p\n",item,item?tree->getItemText(item).text():"",notify,current));
if(current!=item){
tree->setCurrentItem(item,notify);
tree->makeItemVisible(item);
if(item){
field->setIcon(tree->getItemClosedIcon(item));
field->setText(tree->getItemText(item));
}
else{
field->setIcon(nullptr);
field->setText(FXString::null);
}
}
}
// Get current item
FXTreeItem* FXTreeListBox::getCurrentItem() const {
return tree->getCurrentItem();
}
// Fill tree list box by appending items from array of strings
FXint FXTreeListBox::fillItems(FXTreeItem* father,const FXchar *const *strings,FXIcon* oi,FXIcon* ci,void* ptr,FXbool notify){
FXTreeItem* currentitem=tree->getCurrentItem();
FXint n=tree->fillItems(father,strings,oi,ci,ptr,notify);
if(currentitem!=tree->getCurrentItem()){
field->setIcon(tree->getItemClosedIcon(tree->getCurrentItem()));
field->setText(tree->getItemText(tree->getCurrentItem()));
}
recalc();
return n;
}
// Fill tree list box by appending items from array of strings
FXint FXTreeListBox::fillItems(FXTreeItem* father,const FXString* strings,FXIcon* oi,FXIcon* ci,void* ptr,FXbool notify){
FXTreeItem* currentitem=tree->getCurrentItem();
FXint n=tree->fillItems(father,strings,oi,ci,ptr,notify);
if(currentitem!=tree->getCurrentItem()){
field->setIcon(tree->getItemClosedIcon(tree->getCurrentItem()));
field->setText(tree->getItemText(tree->getCurrentItem()));
}
recalc();
return n;
}
// Fill tree list box by appending items from newline separated strings
FXint FXTreeListBox::fillItems(FXTreeItem* father,const FXString& strings,FXIcon* oi,FXIcon* ci,void* ptr,FXbool notify){
FXTreeItem* currentitem=tree->getCurrentItem();
FXint n=tree->fillItems(father,strings,oi,ci,ptr,notify);
if(currentitem!=tree->getCurrentItem()){
field->setIcon(tree->getItemClosedIcon(tree->getCurrentItem()));
field->setText(tree->getItemText(tree->getCurrentItem()));
}
recalc();
return n;
}
// Replace the original item orig with new [possibly subclassed] item
FXTreeItem* FXTreeListBox::setItem(FXTreeItem* orig,FXTreeItem* item,FXbool notify){
FXTreeItem *newitem=tree->setItem(orig,item,notify);
if(tree->getCurrentItem()==newitem){
field->setIcon(tree->getItemClosedIcon(newitem));
field->setText(tree->getItemText(newitem));
}
recalc();
return newitem;
}
// Insert item under father before other item
FXTreeItem* FXTreeListBox::insertItem(FXTreeItem* other,FXTreeItem* father,FXTreeItem* item,FXbool notify){
FXTreeItem *newitem=tree->insertItem(other,father,item,notify);
if(tree->getCurrentItem()==newitem){
field->setIcon(tree->getItemClosedIcon(newitem));
field->setText(tree->getItemText(newitem));
}
recalc();
return newitem;
}
// Insert item with given text and optional icons, and user-data pointer under father before other item
FXTreeItem* FXTreeListBox::insertItem(FXTreeItem* other,FXTreeItem* father,const FXString& text,FXIcon* oi,FXIcon* ci,void* ptr,FXbool notify){
FXTreeItem *newitem=tree->insertItem(other,father,text,oi,ci,ptr,notify);
if(tree->getCurrentItem()==newitem){
field->setIcon(tree->getItemClosedIcon(newitem));
field->setText(tree->getItemText(newitem));
}
recalc();
return newitem;
}
// Append item as last child of father
FXTreeItem* FXTreeListBox::appendItem(FXTreeItem* father,FXTreeItem* item,FXbool notify){
FXTreeItem *newitem=tree->appendItem(father,item,notify);
if(tree->getCurrentItem()==newitem){
field->setIcon(tree->getItemClosedIcon(newitem));
field->setText(tree->getItemText(newitem));
}
recalc();
return newitem;
}
// Append item with given text and optional icons, and user-data pointer as last child of father
FXTreeItem* FXTreeListBox::appendItem(FXTreeItem* father,const FXString& text,FXIcon* oi,FXIcon* ci,void* ptr,FXbool notify){
FXTreeItem *newitem=tree->appendItem(father,text,oi,ci,ptr,notify);
if(tree->getCurrentItem()==newitem){
field->setIcon(tree->getItemClosedIcon(newitem));
field->setText(tree->getItemText(newitem));
}
recalc();
return newitem;
}
// Prepend item as first child of father
FXTreeItem* FXTreeListBox::prependItem(FXTreeItem* father,FXTreeItem* item,FXbool notify){
FXTreeItem *newitem=tree->prependItem(father,item,notify);
if(tree->getCurrentItem()==newitem){
field->setIcon(tree->getItemClosedIcon(newitem));
field->setText(tree->getItemText(newitem));
}
recalc();
return newitem;
}
// Prepend item with given text and optional icons, and user-data pointer as first child of father
FXTreeItem* FXTreeListBox::prependItem(FXTreeItem* father,const FXString& text,FXIcon* oi,FXIcon* ci,void* ptr,FXbool notify){
FXTreeItem *newitem=tree->prependItem(father,text,oi,ci,ptr,notify);
if(tree->getCurrentItem()==newitem){
field->setIcon(tree->getItemClosedIcon(newitem));
field->setText(tree->getItemText(newitem));
}
recalc();
return newitem;
}
// Move item under father before other item
FXTreeItem *FXTreeListBox::moveItem(FXTreeItem* other,FXTreeItem* father,FXTreeItem* item){
FXTreeItem *newitem=tree->moveItem(other,father,item);
recalc();
return newitem;
}
// Extract item
FXTreeItem* FXTreeListBox::extractItem(FXTreeItem* item,FXbool notify){
FXTreeItem *currentitem=tree->getCurrentItem();
FXTreeItem *result=tree->extractItem(item,notify);
if(item==currentitem){
currentitem=tree->getCurrentItem();
if(currentitem){
field->setIcon(tree->getItemClosedIcon(currentitem));
field->setText(tree->getItemText(currentitem));
}
else{
field->setIcon(nullptr);
field->setText(" ");
}
}
recalc();
return result;
}
// Remove given item
void FXTreeListBox::removeItem(FXTreeItem* item,FXbool notify){
FXTreeItem *currentitem=tree->getCurrentItem();
tree->removeItem(item,notify);
if(item==currentitem){
currentitem=tree->getCurrentItem();
if(currentitem){
field->setIcon(tree->getItemClosedIcon(currentitem));
field->setText(tree->getItemText(currentitem));
}
else{
field->setIcon(nullptr);
field->setText(" ");
}
}
recalc();
}
// Remove sequence of items
void FXTreeListBox::removeItems(FXTreeItem* fm,FXTreeItem* to,FXbool notify){
tree->removeItems(fm,to,notify);
recalc();
}
// Remove all items
void FXTreeListBox::clearItems(FXbool notify){
tree->clearItems(notify);
field->setIcon(nullptr);
field->setText(" ");
recalc();
}
// Get item by name
FXTreeItem* FXTreeListBox::findItem(const FXString& string,FXTreeItem* start,FXuint flgs) const {
return tree->findItem(string,start,flgs);
}
// Get item by data
FXTreeItem* FXTreeListBox::findItemByData(FXptr ptr,FXTreeItem* start,FXuint flgs) const {
return tree->findItemByData(ptr,start,flgs);
}
// Is item current
FXbool FXTreeListBox::isItemCurrent(const FXTreeItem* item) const {
return tree->isItemCurrent(item);
}
// Is item a leaf
FXbool FXTreeListBox::isItemLeaf(const FXTreeItem* item) const {
return tree->isItemLeaf(item);
}
// Sort all items recursively
void FXTreeListBox::sortItems(){
tree->sortItems();
}
// Sort item child list
void FXTreeListBox::sortChildItems(FXTreeItem* item){
tree->sortChildItems(item);
}
// Sort item list
void FXTreeListBox::sortRootItems(){
tree->sortRootItems();
}
// Set item text
void FXTreeListBox::setItemText(FXTreeItem* item,const FXString& text){
if(item==nullptr){ fxerror("%s::setItemText: item is NULL\n",getClassName()); }
if(isItemCurrent(item)) field->setText(text);
tree->setItemText(item,text);
recalc();
}
// Get item text
FXString FXTreeListBox::getItemText(const FXTreeItem* item) const {
if(item==nullptr){ fxerror("%s::getItemText: item is NULL\n",getClassName()); }
return tree->getItemText(item);
}
// Change open icon
void FXTreeListBox::setItemOpenIcon(FXTreeItem* item,FXIcon* icon,FXbool owned){
tree->setItemOpenIcon(item,icon,owned);
}
// Get open icon
FXIcon* FXTreeListBox::getItemOpenIcon(const FXTreeItem* item) const {
return tree->getItemOpenIcon(item);
}
// Set closed icon
void FXTreeListBox::setItemClosedIcon(FXTreeItem* item,FXIcon* icon,FXbool owned){
tree->setItemClosedIcon(item,icon,owned);
}
// Get closed icon
FXIcon* FXTreeListBox::getItemClosedIcon(const FXTreeItem* item) const{
return tree->getItemClosedIcon(item);
}
// Set item data
void FXTreeListBox::setItemData(FXTreeItem* item,FXptr ptr) const {
tree->setItemData(item,ptr);
}
// Get item data
FXptr FXTreeListBox::getItemData(const FXTreeItem* item) const {
return tree->getItemData(item);
}
// Return true if item is enabled
FXbool FXTreeListBox::isItemEnabled(const FXTreeItem* item) const {
return tree->isItemEnabled(item);
}
// Enable item
FXbool FXTreeListBox::enableItem(FXTreeItem* item){
return tree->enableItem(item);
}
// Disable item
FXbool FXTreeListBox::disableItem(FXTreeItem* item){
return tree->disableItem(item);
}
// Get sort function
FXTreeListSortFunc FXTreeListBox::getSortFunc() const {
return tree->getSortFunc();
}
// Change sort function
void FXTreeListBox::setSortFunc(FXTreeListSortFunc func){
tree->setSortFunc(func);
}
// Change list style
void FXTreeListBox::setListStyle(FXuint mode){
FXuint opts=(options&~TREELISTBOX_MASK)|(mode&TREELISTBOX_MASK);
if(opts!=options){
options=opts;
recalc();
}
}
// Get list style
FXuint FXTreeListBox::getListStyle() const {
return (options&TREELISTBOX_MASK);
}
// Change popup pane shrinkwrap mode
void FXTreeListBox::setShrinkWrap(FXbool flag){
pane->setShrinkWrap(flag);
}
// Return popup pane shrinkwrap mode
FXbool FXTreeListBox::getShrinkWrap() const {
return pane->getShrinkWrap();
}
// Set help text
void FXTreeListBox::setHelpText(const FXString& txt){
field->setHelpText(txt);
}
// Get help text
const FXString& FXTreeListBox::getHelpText() const {
return field->getHelpText();
}
// Set tip text
void FXTreeListBox::setTipText(const FXString& txt){
field->setTipText(txt);
}
// Get tip text
const FXString& FXTreeListBox::getTipText() const {
return field->getTipText();
}
// Save object to stream
void FXTreeListBox::save(FXStream& store) const {
FXPacker::save(store);
store << field;
store << button;
store << tree;
store << pane;
}
// Load object from stream
void FXTreeListBox::load(FXStream& store){
FXPacker::load(store);
store >> field;
store >> button;
store >> tree;
store >> pane;
}
// Delete it
FXTreeListBox::~FXTreeListBox(){
delete pane;
pane=(FXPopup*)-1L;
field=(FXButton*)-1L;
button=(FXMenuButton*)-1L;
tree=(FXTreeList*)-1L;
}
}
|