author | zecke <zecke> | 2004-12-20 22:49:19 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-12-20 22:49:19 (UTC) |
commit | 3d9ea198ea8046d3f2c5b88efd721ffb00df2c22 (patch) (unidiff) | |
tree | 14ae80693ed5faadd7d8a177f8a86ecefff476b6 | |
parent | 21b825786deeb195fa73462f09fe70709aa5a628 (diff) | |
download | opie-3d9ea198ea8046d3f2c5b88efd721ffb00df2c22.zip opie-3d9ea198ea8046d3f2c5b88efd721ffb00df2c22.tar.gz opie-3d9ea198ea8046d3f2c5b88efd721ffb00df2c22.tar.bz2 |
Patch from Hrw for 1493
"Launcher starts in one column mode"
Set the QIconView to adjust its layout on resize
-rw-r--r-- | core/launcher/launcherview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/launcher/launcherview.cpp b/core/launcher/launcherview.cpp index 2783423..dc4c57f 100644 --- a/core/launcher/launcherview.cpp +++ b/core/launcher/launcherview.cpp | |||
@@ -561,257 +561,257 @@ bool LauncherIconView::removeLink(const QString& linkfile,bool removeCache) | |||
561 | } | 561 | } |
562 | return did; | 562 | return did; |
563 | } | 563 | } |
564 | 564 | ||
565 | void LauncherIconView::addItem(AppLnk* app, bool resort) | 565 | void LauncherIconView::addItem(AppLnk* app, bool resort) |
566 | { | 566 | { |
567 | addCatsAndMimes(app); | 567 | addCatsAndMimes(app); |
568 | if ( (tf.isEmpty() || tf.match(app->type()) >= 0) | 568 | if ( (tf.isEmpty() || tf.match(app->type()) >= 0) |
569 | && (cf == 0 || app->categories().contains(cf) | 569 | && (cf == 0 || app->categories().contains(cf) |
570 | || cf == -1 && app->categories().count() == 0 ) ) { | 570 | || cf == -1 && app->categories().count() == 0 ) ) { |
571 | addCheckItem(app); | 571 | addCheckItem(app); |
572 | } else { | 572 | } else { |
573 | hidden.append(app); | 573 | hidden.append(app); |
574 | } | 574 | } |
575 | if ( resort ){ | 575 | if ( resort ){ |
576 | sort(); | 576 | sort(); |
577 | } | 577 | } |
578 | } | 578 | } |
579 | 579 | ||
580 | void LauncherIconView::changeItem(const AppLnk&old,AppLnk*nlink) | 580 | void LauncherIconView::changeItem(const AppLnk&old,AppLnk*nlink) |
581 | { | 581 | { |
582 | QString oldfile = old.file(); | 582 | QString oldfile = old.file(); |
583 | QString newfile = nlink->file(); | 583 | QString newfile = nlink->file(); |
584 | 584 | ||
585 | if (newfile != oldfile) { | 585 | if (newfile != oldfile) { |
586 | QMap<QString,QPixmap>::Iterator it = sm_EyeCache->find(oldfile); | 586 | QMap<QString,QPixmap>::Iterator it = sm_EyeCache->find(oldfile); |
587 | if (it != sm_EyeCache->end()) { | 587 | if (it != sm_EyeCache->end()) { |
588 | (*sm_EyeCache)[newfile]=(*it); | 588 | (*sm_EyeCache)[newfile]=(*it); |
589 | } | 589 | } |
590 | removeLink(old.linkFile()); | 590 | removeLink(old.linkFile()); |
591 | } else { | 591 | } else { |
592 | removeLink(old.linkFile(),false); | 592 | removeLink(old.linkFile(),false); |
593 | } | 593 | } |
594 | addItem(nlink,false); | 594 | addItem(nlink,false); |
595 | } | 595 | } |
596 | 596 | ||
597 | void LauncherIconView::timerEvent( QTimerEvent *te ) | 597 | void LauncherIconView::timerEvent( QTimerEvent *te ) |
598 | { | 598 | { |
599 | if ( te->timerId() == busyTimer ) { | 599 | if ( te->timerId() == busyTimer ) { |
600 | if ( bsy ) | 600 | if ( bsy ) |
601 | bsy->animateIcon(); | 601 | bsy->animateIcon(); |
602 | } else { | 602 | } else { |
603 | QIconView::timerEvent( te ); | 603 | QIconView::timerEvent( te ); |
604 | } | 604 | } |
605 | } | 605 | } |
606 | 606 | ||
607 | void LauncherIconView::setBigIcons( bool bi ) | 607 | void LauncherIconView::setBigIcons( bool bi ) |
608 | { | 608 | { |
609 | sm_EyeCache->clear(); | 609 | sm_EyeCache->clear(); |
610 | bigIcns = bi; | 610 | bigIcns = bi; |
611 | #ifdef USE_ANIMATED_BUSY_ICON_OVERLAY | 611 | #ifdef USE_ANIMATED_BUSY_ICON_OVERLAY |
612 | busyPix.resize(0,0); | 612 | busyPix.resize(0,0); |
613 | #endif | 613 | #endif |
614 | } | 614 | } |
615 | 615 | ||
616 | QIconViewItem* LauncherIconView::busyItem() const | 616 | QIconViewItem* LauncherIconView::busyItem() const |
617 | { | 617 | { |
618 | return bsy; | 618 | return bsy; |
619 | } | 619 | } |
620 | 620 | ||
621 | void LauncherIconView::setBusyIndicatorType ( BusyIndicatorType t ) { busyType = t; } | 621 | void LauncherIconView::setBusyIndicatorType ( BusyIndicatorType t ) { busyType = t; } |
622 | 622 | ||
623 | void LauncherIconView::calculateGrid( ItemTextPos pos ) | 623 | void LauncherIconView::calculateGrid( ItemTextPos pos ) |
624 | { | 624 | { |
625 | int dw = QApplication::desktop()->width(); | 625 | int dw = QApplication::desktop()->width(); |
626 | int viewerWidth = dw-style().scrollBarExtent().width(); | 626 | int viewerWidth = dw-style().scrollBarExtent().width(); |
627 | if ( pos == Bottom ) { | 627 | if ( pos == Bottom ) { |
628 | int cols = 3; | 628 | int cols = 3; |
629 | if ( viewerWidth <= 200 ) | 629 | if ( viewerWidth <= 200 ) |
630 | cols = 2; | 630 | cols = 2; |
631 | else if ( viewerWidth >= 400 ) | 631 | else if ( viewerWidth >= 400 ) |
632 | cols = viewerWidth/96; | 632 | cols = viewerWidth/96; |
633 | setSpacing( 4 ); | 633 | setSpacing( 4 ); |
634 | setGridX( (viewerWidth-(cols+1)*spacing())/cols ); | 634 | setGridX( (viewerWidth-(cols+1)*spacing())/cols ); |
635 | setGridY( fontMetrics().height()*2+24 ); | 635 | setGridY( fontMetrics().height()*2+24 ); |
636 | } else { | 636 | } else { |
637 | int cols = 2; | 637 | int cols = 2; |
638 | if ( viewerWidth < 150 ) | 638 | if ( viewerWidth < 150 ) |
639 | cols = 1; | 639 | cols = 1; |
640 | else if ( viewerWidth >= 400 ) | 640 | else if ( viewerWidth >= 400 ) |
641 | cols = viewerWidth/150; | 641 | cols = viewerWidth/150; |
642 | setSpacing( 2 ); | 642 | setSpacing( 2 ); |
643 | setGridX( (viewerWidth-(cols+1)*spacing())/cols ); | 643 | setGridX( (viewerWidth-(cols+1)*spacing())/cols ); |
644 | setGridY( fontMetrics().height()+2 ); | 644 | setGridY( fontMetrics().height()+2 ); |
645 | } | 645 | } |
646 | } | 646 | } |
647 | 647 | ||
648 | void LauncherIconView::styleChange( QStyle &old ) | 648 | void LauncherIconView::styleChange( QStyle &old ) |
649 | { | 649 | { |
650 | QIconView::styleChange( old ); | 650 | QIconView::styleChange( old ); |
651 | calculateGrid( itemTextPos() ); | 651 | calculateGrid( itemTextPos() ); |
652 | } | 652 | } |
653 | 653 | ||
654 | void LauncherIconView::keyPressEvent(QKeyEvent* e) | 654 | void LauncherIconView::keyPressEvent(QKeyEvent* e) |
655 | { | 655 | { |
656 | ike = TRUE; | 656 | ike = TRUE; |
657 | if ( e->key() == Key_F33 /* OK button */ || e->key() == Key_Space ) { | 657 | if ( e->key() == Key_F33 /* OK button */ || e->key() == Key_Space ) { |
658 | if ( (e->state() & ShiftButton) ) | 658 | if ( (e->state() & ShiftButton) ) |
659 | emit mouseButtonPressed(ShiftButton, currentItem(), QPoint() ); | 659 | emit mouseButtonPressed(ShiftButton, currentItem(), QPoint() ); |
660 | else | 660 | else |
661 | returnPressed(currentItem()); | 661 | returnPressed(currentItem()); |
662 | } | 662 | } |
663 | 663 | ||
664 | QIconView::keyPressEvent(e); | 664 | QIconView::keyPressEvent(e); |
665 | ike = FALSE; | 665 | ike = FALSE; |
666 | } | 666 | } |
667 | 667 | ||
668 | //=========================================================================== | 668 | //=========================================================================== |
669 | // Implemantation of LauncherIconview end | 669 | // Implemantation of LauncherIconview end |
670 | //=========================================================================== | 670 | //=========================================================================== |
671 | 671 | ||
672 | 672 | ||
673 | //=========================================================================== | 673 | //=========================================================================== |
674 | LauncherView::LauncherView( QWidget* parent, const char* name, WFlags fl ) | 674 | LauncherView::LauncherView( QWidget* parent, const char* name, WFlags fl ) |
675 | : QVBox( parent, name, fl ) | 675 | : QVBox( parent, name, fl ) |
676 | { | 676 | { |
677 | catmb = 0; | 677 | catmb = 0; |
678 | icons = new LauncherIconView( this ); | 678 | icons = new LauncherIconView( this ); |
679 | setFocusProxy(icons); | 679 | setFocusProxy(icons); |
680 | QPEApplication::setStylusOperation( icons->viewport(), QPEApplication::RightOnHold ); | 680 | QPEApplication::setStylusOperation( icons->viewport(), QPEApplication::RightOnHold ); |
681 | 681 | ||
682 | icons->setItemsMovable( FALSE ); | 682 | icons->setItemsMovable( FALSE ); |
683 | icons->setAutoArrange( TRUE ); | 683 | icons->setAutoArrange( TRUE ); |
684 | icons->setSorting( TRUE ); | 684 | icons->setSorting( TRUE ); |
685 | icons->setFrameStyle( QFrame::NoFrame ); | 685 | icons->setFrameStyle( QFrame::NoFrame ); |
686 | icons->setMargin( 0 ); | 686 | icons->setMargin( 0 ); |
687 | icons->setSelectionMode( QIconView::NoSelection ); | 687 | icons->setSelectionMode( QIconView::NoSelection ); |
688 | icons->setBackgroundMode( PaletteBase ); | 688 | icons->setBackgroundMode( PaletteBase ); |
689 | icons->setResizeMode( QIconView::Fixed ); | 689 | icons->setResizeMode( QIconView::Adjust ); |
690 | vmode = (ViewMode)-1; | 690 | vmode = (ViewMode)-1; |
691 | setViewMode( Icon ); | 691 | setViewMode( Icon ); |
692 | 692 | ||
693 | connect( icons, SIGNAL(mouseButtonClicked(int,QIconViewItem*,const QPoint&)), | 693 | connect( icons, SIGNAL(mouseButtonClicked(int,QIconViewItem*,const QPoint&)), |
694 | SLOT(itemClicked(int,QIconViewItem*)) ); | 694 | SLOT(itemClicked(int,QIconViewItem*)) ); |
695 | connect( icons, SIGNAL(selectionChanged()), | 695 | connect( icons, SIGNAL(selectionChanged()), |
696 | SLOT(selectionChanged()) ); | 696 | SLOT(selectionChanged()) ); |
697 | connect( icons, SIGNAL(returnPressed(QIconViewItem*)), | 697 | connect( icons, SIGNAL(returnPressed(QIconViewItem*)), |
698 | SLOT(returnPressed(QIconViewItem*)) ); | 698 | SLOT(returnPressed(QIconViewItem*)) ); |
699 | connect( icons, SIGNAL(mouseButtonPressed(int,QIconViewItem*,const QPoint&)), | 699 | connect( icons, SIGNAL(mouseButtonPressed(int,QIconViewItem*,const QPoint&)), |
700 | SLOT(itemPressed(int,QIconViewItem*)) ); | 700 | SLOT(itemPressed(int,QIconViewItem*)) ); |
701 | 701 | ||
702 | tools = 0; | 702 | tools = 0; |
703 | setBackgroundType( Ruled, QString::null ); | 703 | setBackgroundType( Ruled, QString::null ); |
704 | } | 704 | } |
705 | 705 | ||
706 | LauncherView::~LauncherView() | 706 | LauncherView::~LauncherView() |
707 | { | 707 | { |
708 | if ( bgCache && bgCache->contains( bgName ) ) | 708 | if ( bgCache && bgCache->contains( bgName ) ) |
709 | (*bgCache)[bgName]->ref--; | 709 | (*bgCache)[bgName]->ref--; |
710 | } | 710 | } |
711 | 711 | ||
712 | 712 | ||
713 | bool LauncherView::bsy=FALSE; | 713 | bool LauncherView::bsy=FALSE; |
714 | 714 | ||
715 | void LauncherView::setBusy(bool on) | 715 | void LauncherView::setBusy(bool on) |
716 | { | 716 | { |
717 | icons->setBusy(on); | 717 | icons->setBusy(on); |
718 | } | 718 | } |
719 | 719 | ||
720 | void LauncherView::setBusyIndicatorType( const QString& type ) { | 720 | void LauncherView::setBusyIndicatorType( const QString& type ) { |
721 | if ( type. lower ( ) == "animated" ) | 721 | if ( type. lower ( ) == "animated" ) |
722 | icons->setBusyIndicatorType( BIT_Animated ) ; | 722 | icons->setBusyIndicatorType( BIT_Animated ) ; |
723 | else | 723 | else |
724 | icons->setBusyIndicatorType( BIT_Normal ) ; | 724 | icons->setBusyIndicatorType( BIT_Normal ) ; |
725 | } | 725 | } |
726 | 726 | ||
727 | void LauncherView::hideIcons() | 727 | void LauncherView::hideIcons() |
728 | { | 728 | { |
729 | icons->hide(); | 729 | icons->hide(); |
730 | } | 730 | } |
731 | 731 | ||
732 | void LauncherView::setToolsEnabled(bool y) | 732 | void LauncherView::setToolsEnabled(bool y) |
733 | { | 733 | { |
734 | if ( !y != !tools ) { | 734 | if ( !y != !tools ) { |
735 | if ( y ) { | 735 | if ( y ) { |
736 | tools = new QHBox(this); | 736 | tools = new QHBox(this); |
737 | // Type filter | 737 | // Type filter |
738 | typemb = new QComboBox(tools); | 738 | typemb = new QComboBox(tools); |
739 | QSizePolicy p = typemb->sizePolicy(); | 739 | QSizePolicy p = typemb->sizePolicy(); |
740 | p.setHorData(QSizePolicy::Expanding); | 740 | p.setHorData(QSizePolicy::Expanding); |
741 | typemb->setSizePolicy(p); | 741 | typemb->setSizePolicy(p); |
742 | // Category filter | 742 | // Category filter |
743 | updateTools(); | 743 | updateTools(); |
744 | tools->show(); | 744 | tools->show(); |
745 | } else { | 745 | } else { |
746 | delete tools; | 746 | delete tools; |
747 | tools = 0; | 747 | tools = 0; |
748 | } | 748 | } |
749 | } | 749 | } |
750 | } | 750 | } |
751 | 751 | ||
752 | void LauncherView::updateTools() | 752 | void LauncherView::updateTools() |
753 | { | 753 | { |
754 | disconnect( typemb, SIGNAL(activated(int)), | 754 | disconnect( typemb, SIGNAL(activated(int)), |
755 | this, SLOT(showType(int)) ); | 755 | this, SLOT(showType(int)) ); |
756 | if ( catmb ) { | 756 | if ( catmb ) { |
757 | disconnect( catmb, SIGNAL(signalSelected(int)),this,SLOT(showCategory(int))); | 757 | disconnect( catmb, SIGNAL(signalSelected(int)),this,SLOT(showCategory(int))); |
758 | } | 758 | } |
759 | 759 | ||
760 | // ### I want to remove this | 760 | // ### I want to remove this |
761 | icons->updateCategoriesAndMimeTypes(); | 761 | icons->updateCategoriesAndMimeTypes(); |
762 | 762 | ||
763 | QString prev; | 763 | QString prev; |
764 | 764 | ||
765 | // Type filter | 765 | // Type filter |
766 | QStringList types; | 766 | QStringList types; |
767 | typelist = icons->mimeTypes(); | 767 | typelist = icons->mimeTypes(); |
768 | for (QStringList::ConstIterator it = typelist.begin(); it!=typelist.end(); ++it) { | 768 | for (QStringList::ConstIterator it = typelist.begin(); it!=typelist.end(); ++it) { |
769 | QString t = *it; | 769 | QString t = *it; |
770 | if ( t.left(12) == "application/" ) { | 770 | if ( t.left(12) == "application/" ) { |
771 | MimeType mt(t); | 771 | MimeType mt(t); |
772 | const AppLnk* app = mt.application(); | 772 | const AppLnk* app = mt.application(); |
773 | if ( app ) | 773 | if ( app ) |
774 | t = app->name(); | 774 | t = app->name(); |
775 | else | 775 | else |
776 | t = t.mid(12); | 776 | t = t.mid(12); |
777 | } else { | 777 | } else { |
778 | t[0] = t[0].upper(); | 778 | t[0] = t[0].upper(); |
779 | } | 779 | } |
780 | types += t; | 780 | types += t; |
781 | } | 781 | } |
782 | types << tr("All types"); | 782 | types << tr("All types"); |
783 | prev = typemb->currentText(); | 783 | prev = typemb->currentText(); |
784 | typemb->clear(); | 784 | typemb->clear(); |
785 | typemb->insertStringList(types); | 785 | typemb->insertStringList(types); |
786 | for (int i=0; i<typemb->count(); i++) { | 786 | for (int i=0; i<typemb->count(); i++) { |
787 | if ( typemb->text(i) == prev ) { | 787 | if ( typemb->text(i) == prev ) { |
788 | typemb->setCurrentItem(i); | 788 | typemb->setCurrentItem(i); |
789 | break; | 789 | break; |
790 | } | 790 | } |
791 | } | 791 | } |
792 | if ( prev.isNull() ) { | 792 | if ( prev.isNull() ) { |
793 | typemb->setCurrentItem(typemb->count()-1); | 793 | typemb->setCurrentItem(typemb->count()-1); |
794 | } | 794 | } |
795 | 795 | ||
796 | int pcat = catmb ? catmb->currentCategory() : -2; | 796 | int pcat = catmb ? catmb->currentCategory() : -2; |
797 | if ( !catmb ) { | 797 | if ( !catmb ) { |
798 | catmb = new CategorySelect(tools); | 798 | catmb = new CategorySelect(tools); |
799 | } else if (pcat!=-2) { | 799 | } else if (pcat!=-2) { |
800 | 800 | ||
801 | } | 801 | } |
802 | Categories cats( 0 ); | 802 | Categories cats( 0 ); |
803 | cats.load( categoryFileName() ); | 803 | cats.load( categoryFileName() ); |
804 | QArray<int> vl( 0 ); | 804 | QArray<int> vl( 0 ); |
805 | catmb->setCategories( vl, "Document View", // No tr | 805 | catmb->setCategories( vl, "Document View", // No tr |
806 | tr("Document View") ); | 806 | tr("Document View") ); |
807 | catmb->setRemoveCategoryEdit( TRUE ); | 807 | catmb->setRemoveCategoryEdit( TRUE ); |
808 | catmb->setAllCategories( TRUE ); | 808 | catmb->setAllCategories( TRUE ); |
809 | catmb->setCurrentCategory(pcat); | 809 | catmb->setCurrentCategory(pcat); |
810 | 810 | ||
811 | // if type has changed we need to redisplay | 811 | // if type has changed we need to redisplay |
812 | if ( typemb->currentText() != prev ) | 812 | if ( typemb->currentText() != prev ) |
813 | showType( typemb->currentItem() ); | 813 | showType( typemb->currentItem() ); |
814 | 814 | ||
815 | connect(typemb, SIGNAL(activated(int)), this, SLOT(showType(int))); | 815 | connect(typemb, SIGNAL(activated(int)), this, SLOT(showType(int))); |
816 | connect(catmb, SIGNAL(signalSelected(int)), this, SLOT(showCategory(int))); | 816 | connect(catmb, SIGNAL(signalSelected(int)), this, SLOT(showCategory(int))); |
817 | } | 817 | } |