summaryrefslogtreecommitdiffabout
path: root/microkde/kdeui/klistview.cpp
Unidiff
Diffstat (limited to 'microkde/kdeui/klistview.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--microkde/kdeui/klistview.cpp88
1 files changed, 59 insertions, 29 deletions
diff --git a/microkde/kdeui/klistview.cpp b/microkde/kdeui/klistview.cpp
index 3c809b4..32483bb 100644
--- a/microkde/kdeui/klistview.cpp
+++ b/microkde/kdeui/klistview.cpp
@@ -494,100 +494,117 @@ bool KListView::isExecuteArea( int x )
494 } 494 }
495} 495}
496 496
497void KListView::slotOnItem( QListViewItem *item ) 497void KListView::slotOnItem( QListViewItem *item )
498{ 498{
499 QPoint vp = viewport()->mapFromGlobal( QCursor::pos() ); 499 QPoint vp = viewport()->mapFromGlobal( QCursor::pos() );
500 if ( item && isExecuteArea( vp.x() ) && (d->autoSelectDelay > -1) && d->bUseSingle ) { 500 if ( item && isExecuteArea( vp.x() ) && (d->autoSelectDelay > -1) && d->bUseSingle ) {
501 d->autoSelect.start( d->autoSelectDelay, true ); 501 d->autoSelect.start( d->autoSelectDelay, true );
502 d->pCurrentItem = item; 502 d->pCurrentItem = item;
503 } 503 }
504} 504}
505 505
506void KListView::slotOnViewport() 506void KListView::slotOnViewport()
507{ 507{
508 if ( d->bChangeCursorOverItem ) 508 if ( d->bChangeCursorOverItem )
509 viewport()->unsetCursor(); 509 viewport()->unsetCursor();
510 510
511 d->autoSelect.stop(); 511 d->autoSelect.stop();
512 d->pCurrentItem = 0L; 512 d->pCurrentItem = 0L;
513} 513}
514 514
515void KListView::slotSettingsChanged(int category) 515void KListView::slotSettingsChanged(int category)
516{ 516{
517 //qDebug("KListView::slotSettingsChanged has to be verified"); 517 //qDebug("KListView::slotSettingsChanged has to be verified");
518/*US 518
519 519
520 switch (category) 520 switch (category)
521 { 521 {
522 //US I create my private category (=1) to set the settings
523 case 1:
524 d->dragDelay = 2;
525 //US set explicitly d->bUseSingle = KGlobalSettings::singleClick();
526 qDebug("KListView::slotSettingsChanged: single%i", d->bUseSingle);
527
528 disconnect(this, SIGNAL (mouseButtonClicked (int, QListViewItem*, const QPoint &, int)),
529 this, SLOT (slotMouseButtonClicked (int, QListViewItem*, const QPoint &, int)));
530
531 if( d->bUseSingle )
532 connect (this, SIGNAL (mouseButtonClicked (int, QListViewItem*, const QPoint &, int)),
533 this, SLOT (slotMouseButtonClicked( int, QListViewItem*, const QPoint &, int)));
534
535 //US d->bChangeCursorOverItem = KGlobalSettings::changeCursorOverIcon();
536 //US d->autoSelectDelay = KGlobalSettings::autoSelectDelay();
537
538 if( !d->bUseSingle || !d->bChangeCursorOverItem )
539 viewport()->unsetCursor();
540
541 break;
542
543 /*US
522 case KApplication::SETTINGS_MOUSE: 544 case KApplication::SETTINGS_MOUSE:
523 d->dragDelay = KGlobalSettings::dndEventDelay(); 545 d->dragDelay = KGlobalSettings::dndEventDelay();
524 d->bUseSingle = KGlobalSettings::singleClick(); 546 d->bUseSingle = KGlobalSettings::singleClick();
525 547
526 disconnect(this, SIGNAL (mouseButtonClicked (int, QListViewItem*, const QPoint &, int)), 548 disconnect(this, SIGNAL (mouseButtonClicked (int, QListViewItem*, const QPoint &, int)),
527 this, SLOT (slotMouseButtonClicked (int, QListViewItem*, const QPoint &, int))); 549 this, SLOT (slotMouseButtonClicked (int, QListViewItem*, const QPoint &, int)));
528 550
529 if( d->bUseSingle ) 551 if( d->bUseSingle )
530 connect (this, SIGNAL (mouseButtonClicked (int, QListViewItem*, const QPoint &, int)), 552 connect (this, SIGNAL (mouseButtonClicked (int, QListViewItem*, const QPoint &, int)),
531 this, SLOT (slotMouseButtonClicked( int, QListViewItem*, const QPoint &, int))); 553 this, SLOT (slotMouseButtonClicked( int, QListViewItem*, const QPoint &, int)));
532 554
533 d->bChangeCursorOverItem = KGlobalSettings::changeCursorOverIcon(); 555 d->bChangeCursorOverItem = KGlobalSettings::changeCursorOverIcon();
534 d->autoSelectDelay = KGlobalSettings::autoSelectDelay(); 556 d->autoSelectDelay = KGlobalSettings::autoSelectDelay();
535 557
536 if( !d->bUseSingle || !d->bChangeCursorOverItem ) 558 if( !d->bUseSingle || !d->bChangeCursorOverItem )
537 viewport()->unsetCursor(); 559 viewport()->unsetCursor();
538 560
539 break; 561 break;
540
541 case KApplication::SETTINGS_POPUPMENU: 562 case KApplication::SETTINGS_POPUPMENU:
542 d->contextMenuKey = KGlobalSettings::contextMenuKey (); 563 d->contextMenuKey = KGlobalSettings::contextMenuKey ();
543 d->showContextMenusOnPress = KGlobalSettings::showContextMenusOnPress (); 564 d->showContextMenusOnPress = KGlobalSettings::showContextMenusOnPress ();
544 565
545 if (d->showContextMenusOnPress) 566 if (d->showContextMenusOnPress)
546 { 567 {
547 disconnect (0L, 0L, this, SLOT (emitContextMenu (QListViewItem*, const QPoint&, int))); 568 disconnect (0L, 0L, this, SLOT (emitContextMenu (QListViewItem*, const QPoint&, int)));
548 569
549 connect(this, SIGNAL (rightButtonPressed (QListViewItem*, const QPoint&, int)), 570 connect(this, SIGNAL (rightButtonPressed (QListViewItem*, const QPoint&, int)),
550 this, SLOT (emitContextMenu (QListViewItem*, const QPoint&, int))); 571 this, SLOT (emitContextMenu (QListViewItem*, const QPoint&, int)));
551 } 572 }
552 else 573 else
553 { 574 {
554 disconnect (0L, 0L, this, SLOT (emitContextMenu (QListViewItem*, const QPoint&, int))); 575 disconnect (0L, 0L, this, SLOT (emitContextMenu (QListViewItem*, const QPoint&, int)));
555 576
556 connect(this, SIGNAL (rightButtonClicked (QListViewItem*, const QPoint&, int)), 577 connect(this, SIGNAL (rightButtonClicked (QListViewItem*, const QPoint&, int)),
557 this, SLOT (emitContextMenu (QListViewItem*, const QPoint&, int))); 578 this, SLOT (emitContextMenu (QListViewItem*, const QPoint&, int)));
558 } 579 }
559 break; 580 break;
581 */
560 582
561 default: 583 default:
562 break; 584 break;
563 } 585 }
564*/
565 586
566 if( d->bUseSingle )
567 connect (this, SIGNAL (mouseButtonClicked (int, QListViewItem*, const QPoint &, int)),
568 this, SLOT (slotMouseButtonClicked( int, QListViewItem*, const QPoint &, int)));
569
570} 587}
571 588
572void KListView::slotAutoSelect() 589void KListView::slotAutoSelect()
573{ 590{
574 // check that the item still exists 591 // check that the item still exists
575 if( itemIndex( d->pCurrentItem ) == -1 ) 592 if( itemIndex( d->pCurrentItem ) == -1 )
576 return; 593 return;
577 594
578 if (!isActiveWindow()) 595 if (!isActiveWindow())
579 { 596 {
580 d->autoSelect.stop(); 597 d->autoSelect.stop();
581 return; 598 return;
582 } 599 }
583 600
584 //Give this widget the keyboard focus. 601 //Give this widget the keyboard focus.
585 if( !hasFocus() ) 602 if( !hasFocus() )
586 setFocus(); 603 setFocus();
587 604
588 QListViewItem* previousItem = currentItem(); 605 QListViewItem* previousItem = currentItem();
589 setCurrentItem( d->pCurrentItem ); 606 setCurrentItem( d->pCurrentItem );
590 607
591#if 0 608#if 0
592#ifndef Q_WS_QWS 609#ifndef Q_WS_QWS
593 // FIXME(E): Implement for Qt Embedded 610 // FIXME(E): Implement for Qt Embedded
@@ -637,79 +654,71 @@ void KListView::slotAutoSelect()
637 if( !d->pCurrentItem->isSelected() ) 654 if( !d->pCurrentItem->isSelected() )
638 clearSelection(); 655 clearSelection();
639 656
640 blockSignals( block ); 657 blockSignals( block );
641 658
642 setSelected( d->pCurrentItem, true ); 659 setSelected( d->pCurrentItem, true );
643 } 660 }
644 } 661 }
645 else 662 else
646 kdDebug() << "KListView::slotAutoSelect: Thats not supposed to happen!!!!" << endl; 663 kdDebug() << "KListView::slotAutoSelect: Thats not supposed to happen!!!!" << endl;
647#endif 664#endif
648#endif 665#endif
649} 666}
650 667
651void KListView::slotHeaderChanged() 668void KListView::slotHeaderChanged()
652{ 669{
653 if (d->fullWidth && columns()) 670 if (d->fullWidth && columns())
654 { 671 {
655 int w = 0; 672 int w = 0;
656 for (int i = 0; i < columns() - 1; ++i) w += columnWidth(i); 673 for (int i = 0; i < columns() - 1; ++i) w += columnWidth(i);
657 setColumnWidth( columns() - 1, viewport()->width() - w - 1 ); 674 setColumnWidth( columns() - 1, viewport()->width() - w - 1 );
658 } 675 }
659} 676}
660 677
661void KListView::emitExecute( QListViewItem *item, const QPoint &pos, int c ) 678void KListView::emitExecute( int buttonstate, QListViewItem *item, const QPoint &pos, int c)
662{ 679{
680 // qDebug("KListView::emitExecute buttonstate=%i", buttonstate);
663 if( isExecuteArea( viewport()->mapFromGlobal(pos) ) ) { 681 if( isExecuteArea( viewport()->mapFromGlobal(pos) ) ) {
664 682
665 // Double click mode ? 683 // Double click mode ?
666 if ( !d->bUseSingle ) 684 if ( !d->bUseSingle )
667 { 685 {
668 emit executed( item ); 686 emit executed( item );
669 emit executed( item, pos, c ); 687 emit executed( item, pos, c );
670 } 688 }
671 else 689 else
672 { 690 {
673#if 0 691 //US special implementation for embedded systems
674#ifndef Q_WS_QWS
675 // FIXME(E): Implement for Qt Embedded
676 Window root;
677 Window child;
678 int root_x, root_y, win_x, win_y;
679 uint keybstate;
680 XQueryPointer( qt_xdisplay(), qt_xrootwin(), &root, &child,
681 &root_x, &root_y, &win_x, &win_y, &keybstate );
682
683 d->autoSelect.stop(); 692 d->autoSelect.stop();
684 693
685 //Dont emit executed if in SC mode and Shift or Ctrl are pressed 694 //Dont emit executed if in SC mode and Shift or Ctrl are pressed
686 if( !( ((keybstate & ShiftMask) || (keybstate & ControlMask)) ) ) { 695 if( !( (buttonstate==ShiftButton) || (buttonstate==ControlButton) )) {
696 // if( !( ((keybstate & ShiftMask) || (keybstate & ControlMask)) ) ) {
697
687 emit executed( item ); 698 emit executed( item );
688 emit executed( item, pos, c ); 699 emit executed( item, pos, c );
689 } 700 }
690#endif
691#endif
692 } 701 }
693 } 702 }
694} 703}
695 704
696void KListView::focusInEvent( QFocusEvent *fe ) 705void KListView::focusInEvent( QFocusEvent *fe )
697{ 706{
698 // kdDebug()<<"KListView::focusInEvent()"<<endl; 707 // kdDebug()<<"KListView::focusInEvent()"<<endl;
699 QListView::focusInEvent( fe ); 708 QListView::focusInEvent( fe );
700 if ((d->selectedBySimpleMove) 709 if ((d->selectedBySimpleMove)
701 && (d->selectionMode == FileManager) 710 && (d->selectionMode == FileManager)
702 && (fe->reason()!=QFocusEvent::Popup) 711 && (fe->reason()!=QFocusEvent::Popup)
703 && (fe->reason()!=QFocusEvent::ActiveWindow) 712 && (fe->reason()!=QFocusEvent::ActiveWindow)
704 && (currentItem()!=0)) 713 && (currentItem()!=0))
705 { 714 {
706 currentItem()->setSelected(true); 715 currentItem()->setSelected(true);
707 currentItem()->repaint(); 716 currentItem()->repaint();
708 emit selectionChanged(); 717 emit selectionChanged();
709 }; 718 };
710} 719}
711 720
712void KListView::focusOutEvent( QFocusEvent *fe ) 721void KListView::focusOutEvent( QFocusEvent *fe )
713{ 722{
714 cleanDropVisualizer(); 723 cleanDropVisualizer();
715 cleanItemHighlighter(); 724 cleanItemHighlighter();
@@ -721,58 +730,59 @@ void KListView::focusOutEvent( QFocusEvent *fe )
721 && (fe->reason()!=QFocusEvent::Popup) 730 && (fe->reason()!=QFocusEvent::Popup)
722 && (fe->reason()!=QFocusEvent::ActiveWindow) 731 && (fe->reason()!=QFocusEvent::ActiveWindow)
723 && (currentItem()!=0) 732 && (currentItem()!=0)
724/*US && (!d->editor->isVisible()) */ 733/*US && (!d->editor->isVisible()) */
725 ) 734 )
726 { 735 {
727 currentItem()->setSelected(false); 736 currentItem()->setSelected(false);
728 currentItem()->repaint(); 737 currentItem()->repaint();
729 emit selectionChanged(); 738 emit selectionChanged();
730 }; 739 };
731 740
732 QListView::focusOutEvent( fe ); 741 QListView::focusOutEvent( fe );
733} 742}
734 743
735void KListView::leaveEvent( QEvent *e ) 744void KListView::leaveEvent( QEvent *e )
736{ 745{
737 d->autoSelect.stop(); 746 d->autoSelect.stop();
738 747
739 QListView::leaveEvent( e ); 748 QListView::leaveEvent( e );
740} 749}
741 750
742bool KListView::event( QEvent *e ) 751bool KListView::event( QEvent *e )
743{ 752{
744 if (e->type() == QEvent::ApplicationPaletteChange) { 753 if (e->type() == QEvent::ApplicationPaletteChange) {
745qDebug("KListView::event make alternate color configurable"); 754 //qDebug("KListView::event make alternate color configurable");
746//US d->alternateBackground=KGlobalSettings::alternateBackgroundColor(); 755//US d->alternateBackground=KGlobalSettings::alternateBackgroundColor();
747 d->alternateBackground = QColor(240, 240, 240); 756 d->alternateBackground = QColor(240, 240, 240);
748 } 757 }
749 758
750 return QListView::event(e); 759 return QListView::event(e);
751} 760}
752 761
753void KListView::contentsMousePressEvent( QMouseEvent *e ) 762void KListView::contentsMousePressEvent( QMouseEvent *e )
754{ 763{
764 //qDebug("KListView::contentsMousePressEvent");
755 if( (selectionModeExt() == Extended) && (e->state() & ShiftButton) && !(e->state() & ControlButton) ) 765 if( (selectionModeExt() == Extended) && (e->state() & ShiftButton) && !(e->state() & ControlButton) )
756 { 766 {
757 bool block = signalsBlocked(); 767 bool block = signalsBlocked();
758 blockSignals( true ); 768 blockSignals( true );
759 769
760 clearSelection(); 770 clearSelection();
761 771
762 blockSignals( block ); 772 blockSignals( block );
763 } 773 }
764 else if ((selectionModeExt()==FileManager) && (d->selectedBySimpleMove)) 774 else if ((selectionModeExt()==FileManager) && (d->selectedBySimpleMove))
765 { 775 {
766 d->selectedBySimpleMove=false; 776 d->selectedBySimpleMove=false;
767 d->selectedUsingMouse=true; 777 d->selectedUsingMouse=true;
768 if (currentItem()!=0) 778 if (currentItem()!=0)
769 { 779 {
770 currentItem()->setSelected(false); 780 currentItem()->setSelected(false);
771 currentItem()->repaint(); 781 currentItem()->repaint();
772// emit selectionChanged(); 782// emit selectionChanged();
773 }; 783 };
774 }; 784 };
775 785
776 QPoint p( contentsToViewport( e->pos() ) ); 786 QPoint p( contentsToViewport( e->pos() ) );
777 QListViewItem *at = itemAt (p); 787 QListViewItem *at = itemAt (p);
778 788
@@ -794,49 +804,49 @@ void KListView::contentsMousePressEvent( QMouseEvent *e )
794 } 804 }
795 } 805 }
796 806
797 QListView::contentsMousePressEvent( e ); 807 QListView::contentsMousePressEvent( e );
798} 808}
799 809
800void KListView::contentsMouseMoveEvent( QMouseEvent *e ) 810void KListView::contentsMouseMoveEvent( QMouseEvent *e )
801{ 811{
802 if (!dragEnabled() || d->startDragPos.isNull() || !d->validDrag) { 812 if (!dragEnabled() || d->startDragPos.isNull() || !d->validDrag) {
803 QListView::contentsMouseMoveEvent (e); 813 QListView::contentsMouseMoveEvent (e);
804 return; 814 return;
805 } 815 }
806 816
807 QPoint vp = contentsToViewport(e->pos()); 817 QPoint vp = contentsToViewport(e->pos());
808 QListViewItem *item = itemAt( vp ); 818 QListViewItem *item = itemAt( vp );
809 819
810 //do we process cursor changes at all? 820 //do we process cursor changes at all?
811 if ( item && d->bChangeCursorOverItem && d->bUseSingle ) 821 if ( item && d->bChangeCursorOverItem && d->bUseSingle )
812 { 822 {
813 //Cursor moved on a new item or in/out the execute area 823 //Cursor moved on a new item or in/out the execute area
814 if( (item != d->pCurrentItem) || 824 if( (item != d->pCurrentItem) ||
815 (isExecuteArea(vp) != d->cursorInExecuteArea) ) 825 (isExecuteArea(vp) != d->cursorInExecuteArea) )
816 { 826 {
817 d->cursorInExecuteArea = isExecuteArea(vp); 827 d->cursorInExecuteArea = isExecuteArea(vp);
818qDebug("KListView::contentsMouseMoveEvent drag&drop not supported yet"); 828 //qDebug("KListView::contentsMouseMoveEvent drag&drop not supported yet");
819/*US 829/*US
820 if( d->cursorInExecuteArea ) //cursor moved in execute area 830 if( d->cursorInExecuteArea ) //cursor moved in execute area
821 viewport()->setCursor( KCursor::handCursor() ); 831 viewport()->setCursor( KCursor::handCursor() );
822 else //cursor moved out of execute area 832 else //cursor moved out of execute area
823 viewport()->unsetCursor(); 833 viewport()->unsetCursor();
824*/ 834*/
825 } 835 }
826 } 836 }
827 837
828 bool dragOn = dragEnabled(); 838 bool dragOn = dragEnabled();
829 QPoint newPos = e->pos(); 839 QPoint newPos = e->pos();
830 if (dragOn && d->validDrag && 840 if (dragOn && d->validDrag &&
831 (newPos.x() > d->startDragPos.x()+d->dragDelay || 841 (newPos.x() > d->startDragPos.x()+d->dragDelay ||
832 newPos.x() < d->startDragPos.x()-d->dragDelay || 842 newPos.x() < d->startDragPos.x()-d->dragDelay ||
833 newPos.y() > d->startDragPos.y()+d->dragDelay || 843 newPos.y() > d->startDragPos.y()+d->dragDelay ||
834 newPos.y() < d->startDragPos.y()-d->dragDelay)) 844 newPos.y() < d->startDragPos.y()-d->dragDelay))
835 //(d->startDragPos - e->pos()).manhattanLength() > QApplication::startDragDistance()) 845 //(d->startDragPos - e->pos()).manhattanLength() > QApplication::startDragDistance())
836 { 846 {
837 QListView::contentsMouseReleaseEvent( 0 ); 847 QListView::contentsMouseReleaseEvent( 0 );
838 startDrag(); 848 startDrag();
839 d->startDragPos = QPoint(); 849 d->startDragPos = QPoint();
840 d->validDrag = false; 850 d->validDrag = false;
841 } 851 }
842} 852}
@@ -855,70 +865,81 @@ void KListView::contentsMouseReleaseEvent( QMouseEvent *e )
855 // true if the root decoration of the item "at" was clicked (i.e. the +/- sign) 865 // true if the root decoration of the item "at" was clicked (i.e. the +/- sign)
856 bool rootDecoClicked = 866 bool rootDecoClicked =
857 ( p.x() <= header()->cellPos( header()->mapToActual( 0 ) ) + 867 ( p.x() <= header()->cellPos( header()->mapToActual( 0 ) ) +
858 treeStepSize() * ( at->depth() + ( rootIsDecorated() ? 1 : 0) ) + itemMargin() ) 868 treeStepSize() * ( at->depth() + ( rootIsDecorated() ? 1 : 0) ) + itemMargin() )
859 && ( p.x() >= header()->cellPos( header()->mapToActual( 0 ) ) ); 869 && ( p.x() >= header()->cellPos( header()->mapToActual( 0 ) ) );
860 870
861 if (!rootDecoClicked) 871 if (!rootDecoClicked)
862 { 872 {
863 int col = header()->mapToLogical( header()->cellAt( p.x() ) ); 873 int col = header()->mapToLogical( header()->cellAt( p.x() ) );
864 if ( d->renameable.contains(col) ) 874 if ( d->renameable.contains(col) )
865 rename(at, col); 875 rename(at, col);
866 } 876 }
867 } 877 }
868 } 878 }
869 879
870 d->pressedOnSelected = false; 880 d->pressedOnSelected = false;
871 d->validDrag = false; 881 d->validDrag = false;
872 d->startDragPos = QPoint(); 882 d->startDragPos = QPoint();
873 } 883 }
874 QListView::contentsMouseReleaseEvent( e ); 884 QListView::contentsMouseReleaseEvent( e );
875} 885}
876 886
877void KListView::contentsMouseDoubleClickEvent ( QMouseEvent *e ) 887void KListView::contentsMouseDoubleClickEvent ( QMouseEvent *e )
878{ 888{
889 //qDebug("KListView::contentsMouseDoubleClickEvent");
879 // We don't want to call the parent method because it does setOpen, 890 // We don't want to call the parent method because it does setOpen,
880 // whereas we don't do it in single click mode... (David) 891 // whereas we don't do it in single click mode... (David)
881 //QListView::contentsMouseDoubleClickEvent( e ); 892 //QListView::contentsMouseDoubleClickEvent( e );
882 893
883 QPoint vp = contentsToViewport(e->pos()); 894 QPoint vp = contentsToViewport(e->pos());
884 QListViewItem *item = itemAt( vp ); 895 QListViewItem *item = itemAt( vp );
885 emit QListView::doubleClicked( item ); // we do it now 896 emit QListView::doubleClicked( item ); // we do it now
886 897
887 int col = item ? header()->mapToLogical( header()->cellAt( vp.x() ) ) : -1; 898 int col = item ? header()->mapToLogical( header()->cellAt( vp.x() ) ) : -1;
888 899
889 if( item ) { 900 if( item ) {
901 //qDebug("KListView::contentsMouseDoubleClickEvent: emit doubleClicked");
902
890 emit doubleClicked( item, e->globalPos(), col ); 903 emit doubleClicked( item, e->globalPos(), col );
891 904
892 if( (e->button() == LeftButton) && !d->bUseSingle ) 905 if( (e->button() == LeftButton) && !d->bUseSingle ) {
893 emitExecute( item, e->globalPos(), col ); 906 //qDebug("KListView::contentsMouseDoubleClickEvent: emitExecute");
907
908 emitExecute( e->button(), item, e->globalPos(), col);
909 }
894 } 910 }
895} 911}
896 912
897void KListView::slotMouseButtonClicked( int btn, QListViewItem *item, const QPoint &pos, int c ) 913void KListView::slotMouseButtonClicked( int btn, QListViewItem *item, const QPoint &pos, int c )
898{ 914{
899 if( (btn == LeftButton) && item ) 915 //qDebug("KListView::slotMouseButtonClicked");
900 emitExecute(item, pos, c); 916
917 if( (btn == LeftButton) && item ) {
918 //qDebug("KListView::slotMouseButtonClicked: emitExecute");
919
920 emitExecute(btn, item, pos, c);
921 }
901} 922}
902 923
903void KListView::contentsDropEvent(QDropEvent* e) 924void KListView::contentsDropEvent(QDropEvent* e)
904{ 925{
905qDebug("KListView::contentsDropEvent drag&drop not supported yet"); 926qDebug("KListView::contentsDropEvent drag&drop not supported yet");
906/*US 927/*US
907 cleanDropVisualizer(); 928 cleanDropVisualizer();
908 cleanItemHighlighter(); 929 cleanItemHighlighter();
909 d->dragExpand.stop(); 930 d->dragExpand.stop();
910 931
911 if (acceptDrag (e)) 932 if (acceptDrag (e))
912 { 933 {
913 e->acceptAction(); 934 e->acceptAction();
914 QListViewItem *afterme; 935 QListViewItem *afterme;
915 QListViewItem *parent; 936 QListViewItem *parent;
916 findDrop(e->pos(), parent, afterme); 937 findDrop(e->pos(), parent, afterme);
917 938
918 if (e->source() == viewport() && itemsMovable()) 939 if (e->source() == viewport() && itemsMovable())
919 movableDropEvent(parent, afterme); 940 movableDropEvent(parent, afterme);
920 else 941 else
921 { 942 {
922 943
923 emit dropped(e, afterme); 944 emit dropped(e, afterme);
924 emit dropped(this, e, afterme); 945 emit dropped(this, e, afterme);
@@ -962,49 +983,49 @@ void KListView::movableDropEvent (QListViewItem* parent, QListViewItem* afterme)
962 // ###### This should include the new parent !!! -> KDE 3.0 983 // ###### This should include the new parent !!! -> KDE 3.0
963 // If you need this right now, have a look at keditbookmarks. 984 // If you need this right now, have a look at keditbookmarks.
964 emit moved(i, afterFirst, afterme); 985 emit moved(i, afterFirst, afterme);
965 986
966 items.append (i); 987 items.append (i);
967 afterFirsts.append (afterFirst); 988 afterFirsts.append (afterFirst);
968 afterNows.append (afterme); 989 afterNows.append (afterme);
969 990
970 afterme = i; 991 afterme = i;
971 } 992 }
972 clearSelection(); 993 clearSelection();
973 for (QListViewItem *i=items.first(); i != 0; i=items.next() ) 994 for (QListViewItem *i=items.first(); i != 0; i=items.next() )
974 i->setSelected(true); 995 i->setSelected(true);
975 if (current) 996 if (current)
976 setCurrentItem(current); 997 setCurrentItem(current);
977 998
978 emit moved(items,afterFirsts,afterNows); 999 emit moved(items,afterFirsts,afterNows);
979 1000
980 if (firstChild()) 1001 if (firstChild())
981 emit moved(); 1002 emit moved();
982} 1003}
983 1004
984void KListView::contentsDragMoveEvent(QDragMoveEvent *event) 1005void KListView::contentsDragMoveEvent(QDragMoveEvent *event)
985{ 1006{
986qDebug("KListView::contentsDropEvent drag&drop not supported yet"); 1007 qDebug("KListView::contentsDropEvent drag&drop not supported yet");
987/*US 1008/*US
988 if (acceptDrag(event)) 1009 if (acceptDrag(event))
989 { 1010 {
990 event->acceptAction(); 1011 event->acceptAction();
991 //Clean up the view 1012 //Clean up the view
992 1013
993 findDrop(event->pos(), d->parentItemDrop, d->afterItemDrop); 1014 findDrop(event->pos(), d->parentItemDrop, d->afterItemDrop);
994 QPoint vp = contentsToViewport( event->pos() ); 1015 QPoint vp = contentsToViewport( event->pos() );
995 QListViewItem *item = isExecuteArea( vp ) ? itemAt( vp ) : 0L; 1016 QListViewItem *item = isExecuteArea( vp ) ? itemAt( vp ) : 0L;
996 1017
997 if ( item != d->dragOverItem ) 1018 if ( item != d->dragOverItem )
998 { 1019 {
999 d->dragExpand.stop(); 1020 d->dragExpand.stop();
1000 d->dragOverItem = item; 1021 d->dragOverItem = item;
1001 d->dragOverPoint = vp; 1022 d->dragOverPoint = vp;
1002 if ( d->dragOverItem && d->dragOverItem->isExpandable() && !d->dragOverItem->isOpen() ) 1023 if ( d->dragOverItem && d->dragOverItem->isExpandable() && !d->dragOverItem->isOpen() )
1003 d->dragExpand.start( QApplication::startDragTime(), true ); 1024 d->dragExpand.start( QApplication::startDragTime(), true );
1004 } 1025 }
1005 if (dropVisualizer()) 1026 if (dropVisualizer())
1006 { 1027 {
1007 QRect tmpRect = drawDropVisualizer(0, d->parentItemDrop, d->afterItemDrop); 1028 QRect tmpRect = drawDropVisualizer(0, d->parentItemDrop, d->afterItemDrop);
1008 if (tmpRect != d->mOldDropVisualizer) 1029 if (tmpRect != d->mOldDropVisualizer)
1009 { 1030 {
1010 cleanDropVisualizer(); 1031 cleanDropVisualizer();
@@ -1867,49 +1888,49 @@ QListViewItem* KListView::itemAtIndex(int index)
1867 { 1888 {
1868 if (j==index) 1889 if (j==index)
1869 return it.current(); 1890 return it.current();
1870 j++; 1891 j++;
1871 }; 1892 };
1872 return 0; 1893 return 0;
1873} 1894}
1874 1895
1875 1896
1876void KListView::emitContextMenu (KListView*, QListViewItem* i) 1897void KListView::emitContextMenu (KListView*, QListViewItem* i)
1877{ 1898{
1878 QPoint p; 1899 QPoint p;
1879 // qDebug("KListView::emitContextMenu "); 1900 // qDebug("KListView::emitContextMenu ");
1880 1901
1881 if (i) 1902 if (i)
1882 p = viewport()->mapToGlobal(itemRect(i).center()); 1903 p = viewport()->mapToGlobal(itemRect(i).center());
1883 else 1904 else
1884 p = mapToGlobal(rect().center()); 1905 p = mapToGlobal(rect().center());
1885 1906
1886 emit contextMenu (this, i, p); 1907 emit contextMenu (this, i, p);
1887} 1908}
1888 1909
1889void KListView::emitContextMenu (QListViewItem* i, const QPoint& p, int col) 1910void KListView::emitContextMenu (QListViewItem* i, const QPoint& p, int col)
1890{ 1911{
1891 qDebug("KListView::emitContextMenu col"); 1912 // qDebug("KListView::emitContextMenu col");
1892 emit contextRequest( i, p, col ); 1913 emit contextRequest( i, p, col );
1893 emit contextMenu (this, i, p); 1914 emit contextMenu (this, i, p);
1894} 1915}
1895 1916
1896void KListView::setAcceptDrops (bool val) 1917void KListView::setAcceptDrops (bool val)
1897{ 1918{
1898 QListView::setAcceptDrops (val); 1919 QListView::setAcceptDrops (val);
1899 viewport()->setAcceptDrops (val); 1920 viewport()->setAcceptDrops (val);
1900} 1921}
1901 1922
1902int KListView::dropVisualizerWidth () const 1923int KListView::dropVisualizerWidth () const
1903{ 1924{
1904 return d->mDropVisualizerWidth; 1925 return d->mDropVisualizerWidth;
1905} 1926}
1906 1927
1907 1928
1908void KListView::viewportPaintEvent(QPaintEvent *e) 1929void KListView::viewportPaintEvent(QPaintEvent *e)
1909{ 1930{
1910 QListView::viewportPaintEvent(e); 1931 QListView::viewportPaintEvent(e);
1911 1932
1912 if (d->mOldDropVisualizer.isValid() && e->rect().intersects(d->mOldDropVisualizer)) 1933 if (d->mOldDropVisualizer.isValid() && e->rect().intersects(d->mOldDropVisualizer))
1913 { 1934 {
1914 QPainter painter(viewport()); 1935 QPainter painter(viewport());
1915 1936
@@ -2161,31 +2182,40 @@ bool KListViewItem::isAlternate()
2161 } 2182 }
2162 return false; 2183 return false;
2163} 2184}
2164 2185
2165void KListViewItem::paintCell(QPainter *p, const QColorGroup &cg, int column, int width, int alignment) 2186void KListViewItem::paintCell(QPainter *p, const QColorGroup &cg, int column, int width, int alignment)
2166{ 2187{
2167 QColorGroup _cg = cg; 2188 QColorGroup _cg = cg;
2168 const QPixmap *pm = listView()->viewport()->backgroundPixmap(); 2189 const QPixmap *pm = listView()->viewport()->backgroundPixmap();
2169 if (pm && !pm->isNull()) 2190 if (pm && !pm->isNull())
2170 { 2191 {
2171 _cg.setBrush(QColorGroup::Base, QBrush(backgroundColor(), *pm)); 2192 _cg.setBrush(QColorGroup::Base, QBrush(backgroundColor(), *pm));
2172 QPoint o = p->brushOrigin(); 2193 QPoint o = p->brushOrigin();
2173 p->setBrushOrigin( o.x()-listView()->contentsX(), o.y()-listView()->contentsY() ); 2194 p->setBrushOrigin( o.x()-listView()->contentsX(), o.y()-listView()->contentsY() );
2174 } 2195 }
2175 else if (isAlternate()) { 2196 else if (isAlternate()) {
2176//US if (listView()->viewport()->backgroundMode()==Qt::FixedColor) 2197//US if (listView()->viewport()->backgroundMode()==Qt::FixedColor)
2177 if (listView()->viewport()->backgroundMode()==QWidget::PaletteBackground) 2198 if (listView()->viewport()->backgroundMode()==QWidget::PaletteBackground)
2178 _cg.setColor(QColorGroup::Background, static_cast< KListView* >(listView())->alternateBackground()); 2199 _cg.setColor(QColorGroup::Background, static_cast< KListView* >(listView())->alternateBackground());
2179 else 2200 else
2180 _cg.setColor(QColorGroup::Base, static_cast< KListView* >(listView())->alternateBackground()); 2201 _cg.setColor(QColorGroup::Base, static_cast< KListView* >(listView())->alternateBackground());
2181 } 2202 }
2182 QListViewItem::paintCell(p, _cg, column, width, alignment); 2203 QListViewItem::paintCell(p, _cg, column, width, alignment);
2183} 2204}
2184 2205
2206//US we do not have a "global KDE" variable to setup singleClick functionality
2207void KListView::setSingleClick(bool s)
2208{
2209 d->bUseSingle = s;
2210 slotSettingsChanged(1);
2211 // qDebug("KListView::setSingleClick: single %i", d->bUseSingle);
2212}
2213
2214
2185void KListView::virtual_hook( int, void* ) 2215void KListView::virtual_hook( int, void* )
2186{ /*BASE::virtual_hook( id, data );*/ } 2216{ /*BASE::virtual_hook( id, data );*/ }
2187 2217
2188//US #include "klistview.moc" 2218//US #include "klistview.moc"
2189//US #include "klistviewlineedit.moc" 2219//US #include "klistviewlineedit.moc"
2190 2220
2191// vim: ts=2 sw=2 et 2221// vim: ts=2 sw=2 et