summaryrefslogtreecommitdiffabout
path: root/microkde/KDGanttMinimizeSplitter.cpp
Unidiff
Diffstat (limited to 'microkde/KDGanttMinimizeSplitter.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--microkde/KDGanttMinimizeSplitter.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/microkde/KDGanttMinimizeSplitter.cpp b/microkde/KDGanttMinimizeSplitter.cpp
index d675517..6cb1f31 100644
--- a/microkde/KDGanttMinimizeSplitter.cpp
+++ b/microkde/KDGanttMinimizeSplitter.cpp
@@ -489,393 +489,394 @@ void KDGanttMinimizeSplitter::init()
489 setSizePolicy( QSizePolicy(QSizePolicy::Expanding,QSizePolicy::Minimum) ); 489 setSizePolicy( QSizePolicy(QSizePolicy::Expanding,QSizePolicy::Minimum) );
490 else 490 else
491 setSizePolicy( QSizePolicy(QSizePolicy::Minimum,QSizePolicy::Expanding) ); 491 setSizePolicy( QSizePolicy(QSizePolicy::Minimum,QSizePolicy::Expanding) );
492#ifndef DESKTOP_VERSION 492#ifndef DESKTOP_VERSION
493 setOpaqueResize( false ); 493 setOpaqueResize( false );
494#else 494#else
495 setOpaqueResize( true ); 495 setOpaqueResize( true );
496#endif 496#endif
497} 497}
498#endif 498#endif
499 499
500 500
501void KDGanttMinimizeSplitter::toggle() 501void KDGanttMinimizeSplitter::toggle()
502{ 502{
503 if ( mFirstHandle ) 503 if ( mFirstHandle )
504 mFirstHandle->toggle(); 504 mFirstHandle->toggle();
505 else 505 else
506 qDebug("KDGanttMinimizeSplitter::toggle::sorry, handle not available "); 506 qDebug("KDGanttMinimizeSplitter::toggle::sorry, handle not available ");
507 507
508} 508}
509 509
510 510
511/*! 511/*!
512 \brief the orientation of the splitter 512 \brief the orientation of the splitter
513 513
514 By default the orientation is horizontal (the widgets are side by side). 514 By default the orientation is horizontal (the widgets are side by side).
515 The possible orientations are Qt:Vertical and Qt::Horizontal (the default). 515 The possible orientations are Qt:Vertical and Qt::Horizontal (the default).
516*/ 516*/
517void KDGanttMinimizeSplitter::setOrientation( Orientation o ) 517void KDGanttMinimizeSplitter::setOrientation( Orientation o )
518{ 518{
519#if QT_VERSION >= 232 519#if QT_VERSION >= 232
520 if ( orient == o ) 520 if ( orient == o )
521 return; 521 return;
522 orient = o; 522 orient = o;
523 523
524 if ( orient == Horizontal ) 524 if ( orient == Horizontal )
525 setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Minimum ) ); 525 setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Minimum ) );
526 else 526 else
527 setSizePolicy( QSizePolicy( QSizePolicy::Minimum, QSizePolicy::Expanding ) ); 527 setSizePolicy( QSizePolicy( QSizePolicy::Minimum, QSizePolicy::Expanding ) );
528 528
529 QSplitterLayoutStruct *s = data->list.first(); 529 QSplitterLayoutStruct *s = data->list.first();
530 while ( s ) { 530 while ( s ) {
531 if ( s->isSplitter ) 531 if ( s->isSplitter )
532 ((KDGanttSplitterHandle*)s->wid)->setOrientation( o ); 532 ((KDGanttSplitterHandle*)s->wid)->setOrientation( o );
533 s = data->list.next(); // ### next at end of loop, no iterator 533 s = data->list.next(); // ### next at end of loop, no iterator
534 } 534 }
535 recalc( isVisible() ); 535 recalc( isVisible() );
536#endif 536#endif
537} 537}
538 538
539 539
540#if QT_VERSION >= 232 540#if QT_VERSION >= 232
541/*! 541/*!
542 \reimp 542 \reimp
543*/ 543*/
544void KDGanttMinimizeSplitter::resizeEvent( QResizeEvent * ) 544void KDGanttMinimizeSplitter::resizeEvent( QResizeEvent * )
545{ 545{
546 doResize(); 546 doResize();
547} 547}
548 548
549 549
550/* 550/*
551 Inserts the widget \a w at the end (or at the beginning if \a first 551 Inserts the widget \a w at the end (or at the beginning if \a first
552 is TRUE) of the splitter's list of widgets. 552 is TRUE) of the splitter's list of widgets.
553 553
554 It is the responsibility of the caller of this function to make sure 554 It is the responsibility of the caller of this function to make sure
555 that \a w is not already in the splitter and to call recalcId if 555 that \a w is not already in the splitter and to call recalcId if
556 needed. (If \a first is TRUE, then recalcId is very probably 556 needed. (If \a first is TRUE, then recalcId is very probably
557 needed.) 557 needed.)
558*/ 558*/
559QSplitterLayoutStruct *KDGanttMinimizeSplitter::addWidget( QWidget *w, bool first ) 559QSplitterLayoutStruct *KDGanttMinimizeSplitter::addWidget( QWidget *w, bool first )
560{ 560{
561 QSplitterLayoutStruct *s; 561 QSplitterLayoutStruct *s;
562 KDGanttSplitterHandle *newHandle = 0; 562 KDGanttSplitterHandle *newHandle = 0;
563 if ( data->list.count() > 0 ) { 563 if ( data->list.count() > 0 ) {
564 s = new QSplitterLayoutStruct; 564 s = new QSplitterLayoutStruct;
565 s->mode = KeepSize; 565 s->mode = KeepSize;
566 QString tmp = "qt_splithandle_"; 566 QString tmp = "qt_splithandle_";
567 tmp += w->name(); 567 tmp += w->name();
568 newHandle = new KDGanttSplitterHandle( orientation(), this, tmp.latin1() ); 568 newHandle = new KDGanttSplitterHandle( orientation(), this, tmp.latin1() );
569 if ( ! mFirstHandle ) 569 if ( ! mFirstHandle )
570 mFirstHandle = newHandle; 570 mFirstHandle = newHandle;
571 s->wid = newHandle; 571 s->wid = newHandle;
572 newHandle->setId(data->list.count()); 572 newHandle->setId(data->list.count());
573 s->isSplitter = TRUE; 573 s->isSplitter = TRUE;
574 s->sizer = pick( newHandle->sizeHint() ); 574 s->sizer = pick( newHandle->sizeHint() );
575 if ( first ) 575 if ( first )
576 data->list.insert( 0, s ); 576 data->list.insert( 0, s );
577 else 577 else
578 data->list.append( s ); 578 data->list.append( s );
579 } 579 }
580 s = new QSplitterLayoutStruct; 580 s = new QSplitterLayoutStruct;
581 s->mode = Stretch; 581 s->mode = Stretch;
582 s->wid = w; 582 s->wid = w;
583 if ( !testWState( WState_Resized ) && w->sizeHint().isValid() ) 583 if ( !testWState( WState_Resized ) && w->sizeHint().isValid() )
584 s->sizer = pick( w->sizeHint() ); 584 s->sizer = pick( w->sizeHint() );
585 else 585 else
586 s->sizer = pick( w->size() ); 586 s->sizer = pick( w->size() );
587 s->isSplitter = FALSE; 587 s->isSplitter = FALSE;
588 if ( first ) 588 if ( first )
589 data->list.insert( 0, s ); 589 data->list.insert( 0, s );
590 else 590 else
591 data->list.append( s ); 591 data->list.append( s );
592 if ( newHandle && isVisible() ) 592 if ( newHandle && isVisible() )
593 newHandle->show(); //will trigger sending of post events 593 newHandle->show(); //will trigger sending of post events
594 return s; 594 return s;
595} 595}
596 596
597 597
598/*! 598/*!
599 Tells the splitter that a child widget has been inserted or removed. 599 Tells the splitter that a child widget has been inserted or removed.
600 The event is passed in \a c. 600 The event is passed in \a c.
601*/ 601*/
602void KDGanttMinimizeSplitter::childEvent( QChildEvent *c ) 602void KDGanttMinimizeSplitter::childEvent( QChildEvent *c )
603{ 603{
604 if ( c->type() == QEvent::ChildInserted ) { 604 if ( c->type() == QEvent::ChildInserted ) {
605 if ( !c->child()->isWidgetType() ) 605 if ( !c->child()->isWidgetType() )
606 return; 606 return;
607 607
608 if ( ((QWidget*)c->child())->testWFlags( WType_TopLevel ) ) 608 if ( ((QWidget*)c->child())->testWFlags( WType_TopLevel ) )
609 return; 609 return;
610 610
611 QSplitterLayoutStruct *s = data->list.first(); 611 QSplitterLayoutStruct *s = data->list.first();
612 while ( s ) { 612 while ( s ) {
613 if ( s->wid == c->child() ) 613 if ( s->wid == c->child() )
614 return; 614 return;
615 s = data->list.next(); 615 s = data->list.next();
616 } 616 }
617 addWidget( (QWidget*)c->child() ); 617 addWidget( (QWidget*)c->child() );
618 recalc( isVisible() ); 618 recalc( isVisible() );
619 619
620 } else if ( c->type() == QEvent::ChildRemoved ) { 620 } else if ( c->type() == QEvent::ChildRemoved ) {
621 QSplitterLayoutStruct *p = 0; 621 QSplitterLayoutStruct *p = 0;
622 if ( data->list.count() > 1 ) 622 if ( data->list.count() > 1 )
623 p = data->list.at(1); //remove handle _after_ first widget. 623 p = data->list.at(1); //remove handle _after_ first widget.
624 QSplitterLayoutStruct *s = data->list.first(); 624 QSplitterLayoutStruct *s = data->list.first();
625 while ( s ) { 625 while ( s ) {
626 if ( s->wid == c->child() ) { 626 if ( s->wid == c->child() ) {
627 data->list.removeRef( s ); 627 data->list.removeRef( s );
628 delete s; 628 delete s;
629 if ( p && p->isSplitter ) { 629 if ( p && p->isSplitter ) {
630 data->list.removeRef( p ); 630 data->list.removeRef( p );
631 delete p->wid; //will call childEvent 631 delete p->wid; //will call childEvent
632 delete p; 632 delete p;
633 } 633 }
634 recalcId(); 634 recalcId();
635 doResize(); 635 doResize();
636 return; 636 return;
637 } 637 }
638 p = s; 638 p = s;
639 s = data->list.next(); 639 s = data->list.next();
640 } 640 }
641 } 641 }
642} 642}
643 643
644 644
645/*! 645/*!
646 Shows a rubber band at position \a p. If \a p is negative, the 646 Shows a rubber band at position \a p. If \a p is negative, the
647 rubber band is removed. 647 rubber band is removed.
648*/ 648*/
649void KDGanttMinimizeSplitter::setRubberband( int p ) 649void KDGanttMinimizeSplitter::setRubberband( int p )
650{ 650{
651#ifdef DESKTOP_VERSION 651#ifdef DESKTOP_VERSION
652 QPainter paint( this ); 652 QPainter paint( this );
653 paint.setPen( gray ); 653 paint.setPen( gray );
654 paint.setBrush( gray ); 654 paint.setBrush( gray );
655 paint.setRasterOp( XorROP ); 655 paint.setRasterOp( XorROP );
656 QRect r = contentsRect(); 656 QRect r = contentsRect();
657 const int rBord = 3; //Themable???? 657 const int rBord = 3; //Themable????
658#if QT_VERSION >= 0x030000 658#if QT_VERSION >= 0x030000
659 int sw = style().pixelMetric(QStyle::PM_SplitterWidth, this); 659 int sw = style().pixelMetric(QStyle::PM_SplitterWidth, this);
660#else 660#else
661 int sw = style().splitterWidth(); 661 int sw = style().splitterWidth();
662#endif 662#endif
663 if ( orient == Horizontal ) { 663 if ( orient == Horizontal ) {
664 if ( opaqueOldPos >= 0 ) 664 if ( opaqueOldPos >= 0 )
665 paint.drawRect( opaqueOldPos + sw/2 - rBord , r.y(), 665 paint.drawRect( opaqueOldPos + sw/2 - rBord , r.y(),
666 2*rBord, r.height() ); 666 2*rBord, r.height() );
667 if ( p >= 0 ) 667 if ( p >= 0 )
668 paint.drawRect( p + sw/2 - rBord, r.y(), 2*rBord, r.height() ); 668 paint.drawRect( p + sw/2 - rBord, r.y(), 2*rBord, r.height() );
669 } else { 669 } else {
670 if ( opaqueOldPos >= 0 ) 670 if ( opaqueOldPos >= 0 )
671 paint.drawRect( r.x(), opaqueOldPos + sw/2 - rBord, 671 paint.drawRect( r.x(), opaqueOldPos + sw/2 - rBord,
672 r.width(), 2*rBord ); 672 r.width(), 2*rBord );
673 if ( p >= 0 ) 673 if ( p >= 0 )
674 paint.drawRect( r.x(), p + sw/2 - rBord, r.width(), 2*rBord ); 674 paint.drawRect( r.x(), p + sw/2 - rBord, r.width(), 2*rBord );
675 } 675 }
676 opaqueOldPos = p; 676 opaqueOldPos = p;
677#else 677#else
678 if ( !mRubberBand ) { 678 if ( !mRubberBand ) {
679 mRubberBand = new QFrame( 0, "rubber", WStyle_NoBorder | WStyle_Customize | WStyle_StaysOnTop); 679 mRubberBand = new QFrame( 0, "rubber", WStyle_NoBorder | WStyle_Customize | WStyle_StaysOnTop);
680 mRubberBand->setFrameStyle( Box | Raised ); 680 mRubberBand->setFrameStyle( Box | Raised );
681 mRubberBand->setPalette( QPalette ( Qt::red.light(),Qt::red.dark() ) ); 681 //mRubberBand->setPalette( QPalette ( Qt::red.light(),Qt::red.dark() ) );
682 mRubberBand->setPalette( QPalette ( QColor( 178,18,188), QColor( 242,27,255 ) ));
682 } 683 }
683 QRect r = contentsRect(); 684 QRect r = contentsRect();
684 static int rBord = 0; //Themable???? 685 static int rBord = 0; //Themable????
685 if ( !rBord ) { 686 if ( !rBord ) {
686 if (QApplication::desktop()->width() <= 320 ) 687 if (QApplication::desktop()->width() <= 320 )
687 rBord = 4; 688 rBord = 3;
688 else 689 else
689 rBord = 5; 690 rBord = 4;
690 } 691 }
691 int sw = style().splitterWidth(); 692 int sw = style().splitterWidth();
692 if ( orient == Horizontal ) { 693 if ( orient == Horizontal ) {
693 if ( p >= 0 ) { 694 if ( p >= 0 ) {
694 QPoint geo = mapToGlobal (QPoint ( p + sw/2 - rBord, r.y())); 695 QPoint geo = mapToGlobal (QPoint ( p + sw/2 - rBord, r.y()));
695 mRubberBand->setGeometry( geo.x(), geo.y(), 2*rBord, r.height() ); 696 mRubberBand->setGeometry( geo.x(), geo.y(), 2*rBord, r.height() );
696 } 697 }
697 } else { 698 } else {
698 if ( p >= 0 ) { 699 if ( p >= 0 ) {
699 QPoint geo = mapToGlobal (QPoint ( r.x(), p + sw/2 - rBord)); 700 QPoint geo = mapToGlobal (QPoint ( r.x(), p + sw/2 - rBord));
700 mRubberBand->setGeometry( geo.x(), geo.y(), r.width(), 2*rBord); 701 mRubberBand->setGeometry( geo.x(), geo.y(), r.width(), 2*rBord);
701 } 702 }
702 } 703 }
703 opaqueOldPos = p; 704 opaqueOldPos = p;
704 if ( ! mRubberBand->isVisible() ) { 705 if ( ! mRubberBand->isVisible() ) {
705 mRubberBand->show(); 706 mRubberBand->show();
706 } 707 }
707#endif 708#endif
708} 709}
709 710
710 711
711/*! \reimp */ 712/*! \reimp */
712bool KDGanttMinimizeSplitter::event( QEvent *e ) 713bool KDGanttMinimizeSplitter::event( QEvent *e )
713{ 714{
714 if ( e->type() == QEvent::LayoutHint || ( e->type() == QEvent::Show && data->firstShow ) ) { 715 if ( e->type() == QEvent::LayoutHint || ( e->type() == QEvent::Show && data->firstShow ) ) {
715 recalc( isVisible() ); 716 recalc( isVisible() );
716 if ( e->type() == QEvent::Show ) 717 if ( e->type() == QEvent::Show )
717 data->firstShow = FALSE; 718 data->firstShow = FALSE;
718 } 719 }
719 return QWidget::event( e ); 720 return QWidget::event( e );
720} 721}
721 722
722 723
723/*! 724/*!
724 \obsolete 725 \obsolete
725 726
726 Draws the splitter handle in the rectangle described by \a x, \a y, 727 Draws the splitter handle in the rectangle described by \a x, \a y,
727 \a w, \a h using painter \a p. 728 \a w, \a h using painter \a p.
728 \sa QStyle::drawPrimitive() 729 \sa QStyle::drawPrimitive()
729*/ 730*/
730void KDGanttMinimizeSplitter::drawSplitter( QPainter *p, 731void KDGanttMinimizeSplitter::drawSplitter( QPainter *p,
731 QCOORD x, QCOORD y, QCOORD w, QCOORD h ) 732 QCOORD x, QCOORD y, QCOORD w, QCOORD h )
732{ 733{
733#if 0 734#if 0
734 // LR 735 // LR
735 style().drawPrimitive(QStyle::PE_Splitter, p, QRect(x, y, w, h), colorGroup(), 736 style().drawPrimitive(QStyle::PE_Splitter, p, QRect(x, y, w, h), colorGroup(),
736 (orientation() == Qt::Horizontal ? 737 (orientation() == Qt::Horizontal ?
737 QStyle::Style_Horizontal : 0)); 738 QStyle::Style_Horizontal : 0));
738#endif 739#endif
739} 740}
740 741
741 742
742/*! 743/*!
743 Returns the id of the splitter to the right of or below the widget \a w, 744 Returns the id of the splitter to the right of or below the widget \a w,
744 or 0 if there is no such splitter 745 or 0 if there is no such splitter
745 (i.e. it is either not in this KDGanttMinimizeSplitter or it is at the end). 746 (i.e. it is either not in this KDGanttMinimizeSplitter or it is at the end).
746*/ 747*/
747int KDGanttMinimizeSplitter::idAfter( QWidget* w ) const 748int KDGanttMinimizeSplitter::idAfter( QWidget* w ) const
748{ 749{
749 QSplitterLayoutStruct *s = data->list.first(); 750 QSplitterLayoutStruct *s = data->list.first();
750 bool seen_w = FALSE; 751 bool seen_w = FALSE;
751 while ( s ) { 752 while ( s ) {
752 if ( s->isSplitter && seen_w ) 753 if ( s->isSplitter && seen_w )
753 return data->list.at(); 754 return data->list.at();
754 if ( !s->isSplitter && s->wid == w ) 755 if ( !s->isSplitter && s->wid == w )
755 seen_w = TRUE; 756 seen_w = TRUE;
756 s = data->list.next(); 757 s = data->list.next();
757 } 758 }
758 return 0; 759 return 0;
759} 760}
760 761
761 762
762/*! 763/*!
763 Moves the left/top edge of the splitter handle with id \a id as 764 Moves the left/top edge of the splitter handle with id \a id as
764 close as possible to position \a p, which is the distance from the 765 close as possible to position \a p, which is the distance from the
765 left (or top) edge of the widget. 766 left (or top) edge of the widget.
766 767
767 For Arabic and Hebrew the layout is reversed, and using this 768 For Arabic and Hebrew the layout is reversed, and using this
768 function to set the position of the splitter might lead to 769 function to set the position of the splitter might lead to
769 unexpected results, since in Arabic and Hebrew the position of 770 unexpected results, since in Arabic and Hebrew the position of
770 splitter one is to the left of the position of splitter zero. 771 splitter one is to the left of the position of splitter zero.
771 772
772 \sa idAfter() 773 \sa idAfter()
773*/ 774*/
774void KDGanttMinimizeSplitter::moveSplitter( QCOORD p, int id ) 775void KDGanttMinimizeSplitter::moveSplitter( QCOORD p, int id )
775{ 776{
776 p = adjustPos( p, id ); 777 p = adjustPos( p, id );
777 QSplitterLayoutStruct *s = data->list.at(id); 778 QSplitterLayoutStruct *s = data->list.at(id);
778 int oldP = orient == Horizontal ? s->wid->x() : s->wid->y(); 779 int oldP = orient == Horizontal ? s->wid->x() : s->wid->y();
779 bool upLeft; 780 bool upLeft;
780 if ( false && orient == Horizontal ) { 781 if ( false && orient == Horizontal ) {
781 p += s->wid->width(); 782 p += s->wid->width();
782 upLeft = p > oldP; 783 upLeft = p > oldP;
783 } else 784 } else
784 upLeft = p < oldP; 785 upLeft = p < oldP;
785 786
786 moveAfter( p, id, upLeft ); 787 moveAfter( p, id, upLeft );
787 moveBefore( p-1, id-1, upLeft ); 788 moveBefore( p-1, id-1, upLeft );
788 789
789 storeSizes(); 790 storeSizes();
790} 791}
791 792
792 793
793void KDGanttMinimizeSplitter::setG( QWidget *w, int p, int s, bool isSplitter ) 794void KDGanttMinimizeSplitter::setG( QWidget *w, int p, int s, bool isSplitter )
794{ 795{
795 if ( orient == Horizontal ) { 796 if ( orient == Horizontal ) {
796 if ( false && orient == Horizontal && !isSplitter ) 797 if ( false && orient == Horizontal && !isSplitter )
797 p = contentsRect().width() - p - s; 798 p = contentsRect().width() - p - s;
798 w->setGeometry( p, contentsRect().y(), s, contentsRect().height() ); 799 w->setGeometry( p, contentsRect().y(), s, contentsRect().height() );
799 } else 800 } else
800 w->setGeometry( contentsRect().x(), p, contentsRect().width(), s ); 801 w->setGeometry( contentsRect().x(), p, contentsRect().width(), s );
801} 802}
802 803
803 804
804/* 805/*
805 Places the right/bottom edge of the widget at \a id at position \a pos. 806 Places the right/bottom edge of the widget at \a id at position \a pos.
806 807
807 \sa idAfter() 808 \sa idAfter()
808*/ 809*/
809void KDGanttMinimizeSplitter::moveBefore( int pos, int id, bool upLeft ) 810void KDGanttMinimizeSplitter::moveBefore( int pos, int id, bool upLeft )
810{ 811{
811 if( id < 0 ) 812 if( id < 0 )
812 return; 813 return;
813 QSplitterLayoutStruct *s = data->list.at(id); 814 QSplitterLayoutStruct *s = data->list.at(id);
814 if ( !s ) 815 if ( !s )
815 return; 816 return;
816 QWidget *w = s->wid; 817 QWidget *w = s->wid;
817 if ( w->isHidden() ) { 818 if ( w->isHidden() ) {
818 moveBefore( pos, id-1, upLeft ); 819 moveBefore( pos, id-1, upLeft );
819 } else if ( s->isSplitter ) { 820 } else if ( s->isSplitter ) {
820 int pos1, pos2; 821 int pos1, pos2;
821 int dd = s->sizer; 822 int dd = s->sizer;
822 if( false && orient == Horizontal ) { 823 if( false && orient == Horizontal ) {
823 pos1 = pos; 824 pos1 = pos;
824 pos2 = pos + dd; 825 pos2 = pos + dd;
825 } else { 826 } else {
826 pos2 = pos - dd; 827 pos2 = pos - dd;
827 pos1 = pos2 + 1; 828 pos1 = pos2 + 1;
828 } 829 }
829 if ( upLeft ) { 830 if ( upLeft ) {
830 setG( w, pos1, dd, TRUE ); 831 setG( w, pos1, dd, TRUE );
831 moveBefore( pos2, id-1, upLeft ); 832 moveBefore( pos2, id-1, upLeft );
832 } else { 833 } else {
833 moveBefore( pos2, id-1, upLeft ); 834 moveBefore( pos2, id-1, upLeft );
834 setG( w, pos1, dd, TRUE ); 835 setG( w, pos1, dd, TRUE );
835 } 836 }
836 } else { 837 } else {
837 int dd, newLeft, nextPos; 838 int dd, newLeft, nextPos;
838 if( false && orient == Horizontal ) { 839 if( false && orient == Horizontal ) {
839 dd = w->geometry().right() - pos; 840 dd = w->geometry().right() - pos;
840 dd = QMAX( pick(minSize(w)), QMIN(dd, pick(w->maximumSize()))); 841 dd = QMAX( pick(minSize(w)), QMIN(dd, pick(w->maximumSize())));
841 newLeft = pos+1; 842 newLeft = pos+1;
842 nextPos = newLeft + dd; 843 nextPos = newLeft + dd;
843 } else { 844 } else {
844 dd = pos - pick( w->pos() ) + 1; 845 dd = pos - pick( w->pos() ) + 1;
845 dd = QMAX( pick(minSize(w)), QMIN(dd, pick(w->maximumSize()))); 846 dd = QMAX( pick(minSize(w)), QMIN(dd, pick(w->maximumSize())));
846 newLeft = pos-dd+1; 847 newLeft = pos-dd+1;
847 nextPos = newLeft - 1; 848 nextPos = newLeft - 1;
848 } 849 }
849 setG( w, newLeft, dd, TRUE ); 850 setG( w, newLeft, dd, TRUE );
850 moveBefore( nextPos, id-1, upLeft ); 851 moveBefore( nextPos, id-1, upLeft );
851 } 852 }
852} 853}
853 854
854 855
855/* 856/*
856 Places the left/top edge of the widget at \a id at position \a pos. 857 Places the left/top edge of the widget at \a id at position \a pos.
857 858
858 \sa idAfter() 859 \sa idAfter()
859*/ 860*/
860void KDGanttMinimizeSplitter::moveAfter( int pos, int id, bool upLeft ) 861void KDGanttMinimizeSplitter::moveAfter( int pos, int id, bool upLeft )
861{ 862{
862 QSplitterLayoutStruct *s = id < int(data->list.count()) ? 863 QSplitterLayoutStruct *s = id < int(data->list.count()) ?
863 data->list.at(id) : 0; 864 data->list.at(id) : 0;
864 if ( !s ) 865 if ( !s )
865 return; 866 return;
866 QWidget *w = s->wid; 867 QWidget *w = s->wid;
867 if ( w->isHidden() ) { 868 if ( w->isHidden() ) {
868 moveAfter( pos, id+1, upLeft ); 869 moveAfter( pos, id+1, upLeft );
869 } else if ( pick( w->pos() ) == pos ) { 870 } else if ( pick( w->pos() ) == pos ) {
870 //No need to do anything if it's already there. 871 //No need to do anything if it's already there.
871 return; 872 return;
872 } else if ( s->isSplitter ) { 873 } else if ( s->isSplitter ) {
873 int dd = s->sizer; 874 int dd = s->sizer;
874 int pos1, pos2; 875 int pos1, pos2;
875 if( false && orient == Horizontal ) { 876 if( false && orient == Horizontal ) {
876 pos2 = pos - dd; 877 pos2 = pos - dd;
877 pos1 = pos2 + 1; 878 pos1 = pos2 + 1;
878 } else { 879 } else {
879 pos1 = pos; 880 pos1 = pos;
880 pos2 = pos + dd; 881 pos2 = pos + dd;
881 } 882 }