-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 | |||
@@ -593,193 +593,193 @@ void LauncherIconView::changeItem(const AppLnk&old,AppLnk*nlink) | |||
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); |