summaryrefslogtreecommitdiff
path: root/libopie/ofileselector/ofileselector.cpp
Unidiff
Diffstat (limited to 'libopie/ofileselector/ofileselector.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/ofileselector/ofileselector.cpp283
1 files changed, 36 insertions, 247 deletions
diff --git a/libopie/ofileselector/ofileselector.cpp b/libopie/ofileselector/ofileselector.cpp
index 16ee3ee..98b61f7 100644
--- a/libopie/ofileselector/ofileselector.cpp
+++ b/libopie/ofileselector/ofileselector.cpp
@@ -28,52 +28,55 @@
28#include <unistd.h> 28#include <unistd.h>
29#include <stdlib.h> 29#include <stdlib.h>
30#include <sys/stat.h> 30#include <sys/stat.h>
31 31
32#include "ofileview.h" 32#include "ofileview.h"
33#include "ofileselector.h" 33#include "ofileselector.h"
34 34#include "olister.h"
35 35
36QMap<QString,QPixmap> *OFileSelector::m_pixmaps = 0; 36QMap<QString,QPixmap> *OFileSelector::m_pixmaps = 0;
37 37
38namespace { 38namespace {
39 int indexByString( const QComboBox *box, const QString &str ){ 39 /* let's find the index for a specified string */
40 int index= 0; 40 int indexByString( const QComboBox *box, const QString &str ){
41 for(int i= 0; i < box->count(); i++ ){ 41 int index= 0;
42 if( str == box->text(i ) ){ 42 for(int i= 0; i < box->count(); i++ ){
43 index= i; 43 /* found */
44 break; 44 if( str == box->text(i ) ){
45 } 45 index= i;
46 break;
47 }
48 }
49 return index;
46 } 50 }
47 return index;
48 }
49
50} 51}
51 52
52OFileSelector::OFileSelector( QWidget *wid, int mode, int selector, 53OFileSelector::OFileSelector( QWidget *wid, int mode, int selector,
53 const QString &dirName, 54 const QString &dirName,
54 const QString &fileName, 55 const QString &fileName,
55 const QMap<QString,QStringList>& mimeTypes) 56 const QMap<QString,QStringList>& mimeTypes)
56 : QWidget( wid, "OFileSelector") 57 : QWidget( wid, "OFileSelector")
57{ 58{
58 m_mimetypes = mimeTypes; 59 m_mimetypes = mimeTypes;
59 if (mode == Save ) 60 if (mode == Save )
60 m_name = fileName; 61 m_name = fileName;
62
61 initVars(); 63 initVars();
64
62 m_mode = mode; 65 m_mode = mode;
63 m_selector = selector; 66 m_selector = selector;
64 m_currentDir = dirName; 67 m_currentDir = dirName;
65 init(); 68 init();
66 //QTimer::singleShot(6*1000, this, SLOT( slotTest() ) );
67} 69}
68 70
69OFileSelector::OFileSelector(const QString &mimeFilter, QWidget *parent, 71OFileSelector::OFileSelector(const QString &mimeFilter, QWidget *parent,
70 const char *name, bool newVisible, 72 const char *name, bool newVisible,
71 bool closeVisible ) 73 bool closeVisible )
72 : QWidget( parent, name ) 74 : QWidget( parent, name )
73{ 75{
76 /* update the mimefilter */
74 if (!mimeFilter.isEmpty() ) { 77 if (!mimeFilter.isEmpty() ) {
75 QStringList list = QStringList::split(";", mimeFilter ); 78 QStringList list = QStringList::split(";", mimeFilter );
76 m_mimetypes.insert(mimeFilter, list ); 79 m_mimetypes.insert(mimeFilter, list );
77 } 80 }
78 initVars(); 81 initVars();
79 m_currentDir = QPEApplication::documentDir(); 82 m_currentDir = QPEApplication::documentDir();
@@ -151,12 +154,13 @@ void OFileSelector::setYesCancelVisible( bool show )
151 154
152} 155}
153void OFileSelector::setToolbarVisible( bool show ) 156void OFileSelector::setToolbarVisible( bool show )
154{ 157{
155 m_shTool = show; 158 m_shTool = show;
156 initializeListView(); // FIXME see above waste of memory 159 initializeListView(); // FIXME see above waste of memory
160
157 if(!m_shTool ){ 161 if(!m_shTool ){
158 m_location->hide(); 162 m_location->hide();
159 m_up->hide(); 163 m_up->hide();
160 m_homeButton->hide(); 164 m_homeButton->hide();
161 m_docButton->hide(); 165 m_docButton->hide();
162 }else{ 166 }else{
@@ -629,32 +633,12 @@ void OFileSelector::initVars()
629 m_custom = 0; 633 m_custom = 0;
630 m_edit = 0; 634 m_edit = 0;
631 m_fnLabel = 0; 635 m_fnLabel = 0;
632 m_new = 0; 636 m_new = 0;
633 m_close = 0; 637 m_close = 0;
634} 638}
635void OFileSelector::addFile(const QString &, QFileInfo *info, bool )
636{
637 if(!m_files)
638 return;
639 // if( !compliesMime(info->absFilePath(), mime ) )
640 // return;
641 MimeType type( info->absFilePath() );
642 if (!compliesMime( type.id() ) )
643 return;
644
645}
646void OFileSelector::addDir(const QString &, QFileInfo *, bool )
647{
648 if(!m_dir)
649 return;
650}
651void OFileSelector::delItems()
652{
653
654}
655void OFileSelector::initializeName() 639void OFileSelector::initializeName()
656{ 640{
657 /** Name Layout Line 641 /** Name Layout Line
658 * This is the Layout line arranged in 642 * This is the Layout line arranged in
659 * horizontal way each components 643 * horizontal way each components
660 * are next to each other 644 * are next to each other
@@ -726,12 +710,13 @@ void OFileSelector::initializeChooser()
726 m_boxView->setSpacing( 8 ); 710 m_boxView->setSpacing( 8 );
727 m_lay->addWidget(m_boxView, 0 ); 711 m_lay->addWidget(m_boxView, 0 );
728 712
729 m_viewCheck->insertItem( tr("Documents") ); 713 m_viewCheck->insertItem( tr("Documents") );
730 m_viewCheck->insertItem( tr("Files") ); 714 m_viewCheck->insertItem( tr("Files") );
731 m_viewCheck->insertItem( tr("All Files") ); 715 m_viewCheck->insertItem( tr("All Files") );
716 /* update to custom views */
732 updateMimeCheck(); 717 updateMimeCheck();
733 718
734 connect( m_viewCheck, SIGNAL( activated(const QString & ) ), 719 connect( m_viewCheck, SIGNAL( activated(const QString & ) ),
735 this, SLOT( slotViewCheck(const QString & ) ) ); 720 this, SLOT( slotViewCheck(const QString & ) ) );
736 connect( m_mimeCheck, SIGNAL( activated(const QString & ) ), 721 connect( m_mimeCheck, SIGNAL( activated(const QString & ) ),
737 this, SLOT( slotMimeCheck( const QString & ) ) ); 722 this, SLOT( slotMimeCheck( const QString & ) ) );
@@ -811,55 +796,31 @@ void OFileSelector::initializeListView()
811 //if(!m_shNew) 796 //if(!m_shNew)
812 //m_close->hide(); 797 //m_close->hide();
813 798
814 } // off toolbar 799 } // off toolbar
815 // the Main ListView 800 // the Main ListView
816 // make a QWidgetStack first so Views can share the Toolbar 801 // make a QWidgetStack first so Views can share the Toolbar
817 m_View = new QListView( m_pseudo, "Extended view"); 802
818 QPEApplication::setStylusOperation( m_View->viewport(), 803 // m_pseudoLayout->addWidget( m_View, 288 );
819 QPEApplication::RightOnHold);
820 m_View->addColumn(" " );
821 m_View->addColumn(tr("Name"), 135 );
822 m_View->addColumn(tr("Size"), -1 );
823 m_View->addColumn(tr("Date"), 60 );
824 m_View->addColumn(tr("Mime Type"), -1 );
825 QHeader *header = m_View->header();
826 header->hide();
827 m_View->setSorting( 1 );
828 m_View->setAllColumnsShowFocus( TRUE );
829
830 connect(m_View, SIGNAL(selectionChanged() ),
831 this, SLOT(slotSelectionChanged() ) );
832
833 connect(m_View, SIGNAL(currentChanged(QListViewItem *) ),
834 this, SLOT(slotCurrentChanged(QListViewItem * ) ) );
835
836 connect(m_View, SIGNAL(mouseButtonClicked(int, QListViewItem*, const QPoint &, int) ),
837 this, SLOT(slotClicked( int, QListViewItem *, const QPoint &, int) ) );
838
839 connect(m_View, SIGNAL(mouseButtonPressed(int, QListViewItem *, const QPoint &, int )),
840 this, SLOT(slotRightButton(int, QListViewItem *, const QPoint &, int ) ) );
841
842 m_pseudoLayout->addWidget( m_View, 288 );
843 m_stack->addWidget( m_pseudo, Extended ); 804 m_stack->addWidget( m_pseudo, Extended );
844 } 805 }
845} 806}
846void OFileSelector::initializePerm() 807void OFileSelector::initializePerm()
847{ 808{
848 if( m_checkPerm == 0 ){ 809 if( m_checkPerm == 0 ){
849 m_checkPerm = new QCheckBox(tr("Set Permission"), this, "perm"); 810 m_checkPerm = new QCheckBox(tr("Set Permission"), this, "perm");
850 m_checkPerm->setChecked( false ); 811 m_checkPerm->setChecked( false );
851 m_lay->addWidget( m_checkPerm ); 812 m_lay->addWidget( m_checkPerm );
852
853 } 813 }
854} 814}
855void OFileSelector::initPics() 815void OFileSelector::initPics()
856{ 816{
857 m_pixmaps = new QMap<QString,QPixmap>; 817 m_pixmaps = new QMap<QString,QPixmap>;
858 QPixmap pm = Resource::loadPixmap( "folder" ); 818 QPixmap pm = Resource::loadPixmap( "folder" );
859 QPixmap lnk = Resource::loadPixmap( "opie/symlink" ); 819 QPixmap lnk = Resource::loadPixmap( "opie/symlink" );
820
860 QPainter painter( &pm ); 821 QPainter painter( &pm );
861 painter.drawPixmap( pm.width()-lnk.width(), pm.height()-lnk.height(), lnk ); 822 painter.drawPixmap( pm.width()-lnk.width(), pm.height()-lnk.height(), lnk );
862 pm.setMask( pm.createHeuristicMask( FALSE ) ); 823 pm.setMask( pm.createHeuristicMask( FALSE ) );
863 m_pixmaps->insert("dirsymlink", pm ); 824 m_pixmaps->insert("dirsymlink", pm );
864 825
865 QPixmap pm2 = Resource::loadPixmap( "lockedfolder" ); 826 QPixmap pm2 = Resource::loadPixmap( "lockedfolder" );
@@ -913,16 +874,12 @@ bool OFileSelector::compliesMime( const QString& mime ) {
913 }else if ( currentText.isEmpty() ) return true; 874 }else if ( currentText.isEmpty() ) return true;
914 else{ 875 else{
915 it = m_mimetypes.find(currentText ); 876 it = m_mimetypes.find(currentText );
916 if ( it == m_mimetypes.end() ) qWarning("not there"), list << currentText; 877 if ( it == m_mimetypes.end() ) qWarning("not there"), list << currentText;
917 else qWarning("found"), list = it.data(); 878 else qWarning("found"), list = it.data();
918 } 879 }
919 // dump it now
920 //for ( QStringList::Iterator it = list.begin(); it != list.end(); ++it ) {
921 // qWarning( "%s", (*it).latin1() );
922 //}
923 880
924 881
925 if ( list.contains(mime) ) return true; 882 if ( list.contains(mime) ) return true;
926 qWarning("list doesn't contain it "); 883 qWarning("list doesn't contain it ");
927 QStringList::Iterator it2; 884 QStringList::Iterator it2;
928 int pos; 885 int pos;
@@ -942,117 +899,14 @@ void OFileSelector::slotFileSelected( const QString &string )
942} 899}
943void OFileSelector::slotFileBridgeSelected( const DocLnk &lnk ) 900void OFileSelector::slotFileBridgeSelected( const DocLnk &lnk )
944{ 901{
945 slotFileSelected( lnk.name() ); 902 slotFileSelected( lnk.name() );
946 // emit fileSelected( lnk ); 903 // emit fileSelected( lnk );
947} 904}
948void OFileSelector::slotSelectionChanged()
949{
950
951}
952void OFileSelector::slotCurrentChanged(QListViewItem* /*item*/ )
953{
954 /*
955 if( item == 0 )
956 return;
957 if( m_selector == Extended || m_selector == ExtendedAll ) {
958 OFileSelectorItem *sel = (OFileSelectorItem*) item; // start to use the C++ casts ;)
959 qWarning("current changed");
960 if(!sel->isDir() ){
961 if( m_shLne )
962 m_edit->setText( sel->text(1) );
963
964 if (m_mode == Fileselector ) {
965 QStringList str = QStringList::split("->", sel->text(1) );
966 QString path =sel->directory() + "/" + str[0].stripWhiteSpace();
967 emit fileSelected(path );
968 DocLnk lnk( path );
969 emit fileSelected(lnk );
970 }
971 }
972 } */
973}
974void OFileSelector::slotClicked( int /*button*/, QListViewItem */*item*/, const QPoint &, int)
975
976{
977 /*
978 if ( item == 0 )
979 return;
980
981 if( button != Qt::LeftButton )
982 return;
983
984 switch( m_selector ){
985 default:
986 break;
987 case Extended: // fall through
988 case ExtendedAll:{
989 OFileSelectorItem *sel = (OFileSelectorItem*)item;
990 if(!sel->isLocked() ){
991 QStringList str = QStringList::split("->", sel->text(1) );
992 if( sel->isDir() ){
993 cd( sel->directory() + "/" + str[0].stripWhiteSpace() );
994 // if MODE Dir m_shLne set the Text
995 }else{
996 if( m_shLne )
997 m_edit->setText( str[0].stripWhiteSpace() );
998 qWarning("selected here in slot clicked");
999 emit fileSelected( sel->directory() + "/" + str[0].stripWhiteSpace() );
1000 DocLnk lnk( sel->directory() + "/" + str[0].stripWhiteSpace() );
1001 qWarning("file selected");
1002 emit fileSelected( lnk );
1003 }
1004 }
1005 break;
1006 }
1007 } */
1008}
1009void OFileSelector::slotRightButton(int button, QListViewItem *item, const QPoint &, int )
1010{
1011 if( item == 0 )
1012 return;
1013 905
1014 if( button != Qt::RightButton )
1015 return;
1016 slotContextMenu( item );
1017}
1018void OFileSelector::slotContextMenu( QListViewItem */*item*/)
1019{
1020
1021}
1022void OFileSelector::slotChangedDir()
1023{
1024 /*
1025 OFileSelectorItem *sel = (OFileSelectorItem*)m_View->currentItem();
1026 if(sel->isDir() ){
1027 QStringList str = QStringList::split("->", sel->text(1) );
1028 cd( sel->directory() + "/" + str[0].stripWhiteSpace() );
1029 }
1030 */
1031}
1032void OFileSelector::slotOpen()
1033{
1034 /*
1035 OFileSelectorItem *sel = (OFileSelectorItem*)m_View->currentItem();
1036 if(!sel->isDir() ){
1037 QStringList str = QStringList::split("->", sel->text(1) );
1038 slotFileSelected( sel->directory() +"/" +str[0].stripWhiteSpace() );
1039 qWarning("slot open");
1040 // DocLnk lnk( sel->directory() + "/" + str[0].stripWhiteSpace() );
1041 //emit fileSelected( lnk );
1042 }
1043 */
1044}
1045void OFileSelector::slotRescan()
1046{
1047 906
1048}
1049void OFileSelector::slotRename()
1050{
1051 reparse();
1052}
1053void OFileSelector::slotDelete() 907void OFileSelector::slotDelete()
1054{ 908{
1055 /* 909 /*
1056 OFileSelectorItem *sel = (OFileSelectorItem*)m_View->currentItem(); 910 OFileSelectorItem *sel = (OFileSelectorItem*)m_View->currentItem();
1057 QStringList list = QStringList::split("->", sel->text(1) ); 911 QStringList list = QStringList::split("->", sel->text(1) );
1058 if( sel->isDir() ){ 912 if( sel->isDir() ){
@@ -1098,119 +952,50 @@ void OFileSelector::slotNavigate( )
1098} 952}
1099// fill the View with life 953// fill the View with life
1100void OFileSelector::reparse() 954void OFileSelector::reparse()
1101{ 955{
1102 if( m_selector == Normal ) 956 if( m_selector == Normal )
1103 return; 957 return;
1104 if( m_selector == Extended || m_selector == ExtendedAll ) 958
1105 m_View->clear(); 959 currentView()->clear();
1106 else // custom view 960
1107 ; // currentView()->clear();
1108 if( m_shChooser) 961 if( m_shChooser)
1109 qWarning("reparse %s", m_mimeCheck->currentText().latin1() ); 962 qWarning("reparse %s", m_mimeCheck->currentText().latin1() );
1110 963
1111 QString currentMimeType; 964 QString currentMimeType;
965
1112 // let's update the mimetype 966 // let's update the mimetype
1113 if( m_autoMime ){ 967 if( m_autoMime ){
1114 m_mimetypes.clear(); 968 m_mimetypes.clear();
1115 // ok we can change mimetype so we need to be able to give a selection 969 // ok we can change mimetype so we need to be able to give a selection
1116 if( m_shChooser ) { 970 if( m_shChooser ) {
1117 currentMimeType = m_mimeCheck->currentText(); 971 currentMimeType = m_mimeCheck->currentText();
1118 m_mimeCheck->clear(); 972 m_mimeCheck->clear();
1119 973
1120 // let's find possible mimetypes 974 // let's find possible mimetypes
1121 QDir dir( m_currentDir ); 975 m_mimetypes = currentLister()->mimeTypes( m_currentDir );
1122 dir.setFilter( QDir::Files | QDir::Readable ); 976
1123 dir.setSorting( QDir::Size );
1124 const QFileInfoList *list = dir.entryInfoList();
1125 QFileInfoListIterator it( *list );
1126 QFileInfo *fi;
1127 while( (fi=it.current() ) ) {
1128 if( fi->extension() == QString::fromLatin1("desktop") ){
1129 ++it;
1130 continue;
1131 }
1132 MimeType type( fi->absFilePath() );
1133 if( !m_mimetypes.contains( type.id() ) ){
1134 //qWarning("Type %s", type.id().latin1() );
1135 m_mimetypes.insert( type.id(), type.id() );
1136 }
1137
1138 ++it;
1139 }
1140 // add them to the chooser 977 // add them to the chooser
1141 updateMimeCheck(); 978 updateMimeCheck();
1142 m_mimeCheck->setCurrentItem( indexByString( m_mimeCheck, currentMimeType ) ); 979 m_mimeCheck->setCurrentItem( indexByString( m_mimeCheck, currentMimeType ) );
1143 currentMimeType = m_mimeCheck->currentText(); 980 currentMimeType = m_mimeCheck->currentText();
1144 } 981 }
1145 }else { // no autoMime 982 }else { // no autoMime
1146 // let the mimetype be set from out side the m_mimeCheck FEATURE 983 // let the mimetype be set from out side the m_mimeCheck FEATURE
1147 984
1148 if( m_shChooser ){ 985 if( m_shChooser )
1149 currentMimeType = m_mimeCheck->currentText(); 986 currentMimeType = m_mimeCheck->currentText();
1150// updateMimeCheck(); 987
1151 }
1152 } 988 }
1153 // now we got our mimetypes we can add the files 989 // now we got our mimetypes we can add the files
1154 990
1155 QDir dir( m_currentDir ); 991 currentLister()->reparse( m_currentDir );
992 /* we're done with adding let's sort */
993 currentView()->sort();
994
1156 995
1157 int sort;
1158 if ( m_case )
1159 sort = (QDir::IgnoreCase | QDir::Name | QDir::DirsFirst | QDir::Reversed);
1160 else
1161 sort = (QDir::Name | QDir::DirsFirst | QDir::Reversed);
1162 dir.setSorting( sort );
1163
1164 int filter;
1165 if( m_selector == ExtendedAll /*|| m_selector ==CUSTOM_ALL */ ){
1166 filter = QDir::Files | QDir::Dirs | QDir::Hidden | QDir::All;
1167 }else
1168 filter = QDir::Files | QDir::Dirs | QDir::All;
1169 dir.setFilter( filter );
1170
1171 // now go through all files
1172 const QFileInfoList *list = dir.entryInfoList();
1173 QFileInfoListIterator it( *list );
1174 QFileInfo *fi;
1175 while( (fi=it.current() ) ){
1176 //qWarning("True and only" );
1177 if( fi->fileName() == QString::fromLatin1("..") || fi->fileName() == QString::fromLatin1(".") ){
1178 //qWarning(".. or ." );
1179 ++it;
1180 continue;
1181 }
1182 if( fi->isSymLink() ){
1183 QString file = fi->dirPath( true ) + "/" + fi->readLink();
1184 for( int i = 0; i<=4; i++) { // 5 tries to prevent dos
1185 QFileInfo info( file );
1186 if( !info.exists() ){
1187 addSymlink( currentMimeType, fi, TRUE );
1188 break;
1189 }else if( info.isDir() ){
1190 addDir( currentMimeType, fi, TRUE );
1191 break;
1192 }else if( info.isFile() ){
1193 addFile( currentMimeType, fi, TRUE );
1194 break;
1195 }else if( info.isSymLink() ){
1196 file = info.dirPath(true ) + "/" + info.readLink() ;
1197 break;
1198 }else if( i == 4){
1199 addSymlink( currentMimeType, fi );
1200 }
1201 } // off for loop
1202 }else if( fi->isDir() ){
1203 addDir( currentMimeType, fi );
1204 }else if( fi->isFile() ){
1205 addFile( currentMimeType, fi );
1206 }
1207 //qWarning( "%s", fi->fileName().latin1() );
1208 ++it;
1209 } // of while loop
1210 m_View->sort();
1211 if( m_shTool ){ 996 if( m_shTool ){
1212 m_location->insertItem( m_currentDir ); 997 m_location->insertItem( m_currentDir );
1213 998
1214 } 999 }
1215 // reenable painting and updates 1000 // reenable painting and updates
1216} 1001}
@@ -1249,14 +1034,18 @@ void OFileSelector::internFileSelected( const DocLnk& d ) {
1249} 1034}
1250void OFileSelector::internContextMenu() { 1035void OFileSelector::internContextMenu() {
1251 emit contextMenu(); 1036 emit contextMenu();
1252} 1037}
1253void OFileSelector::internChangedDir( const QString& s) { 1038void OFileSelector::internChangedDir( const QString& s) {
1254 emit dirSelected( s ); 1039 emit dirSelected( s );
1040 cd(s );
1255} 1041}
1256void OFileSelector::internChangedDir( const QDir& s) { 1042void OFileSelector::internChangedDir( const QDir& s) {
1257 emit dirSelected( s ); 1043 emit dirSelected( s );
1258} 1044}
1259QPixmap OFileSelector::pixmap( const QString& s ) { 1045QPixmap OFileSelector::pixmap( const QString& s ) {
1260 1046
1261 return (*m_pixmaps)[s]; 1047 return (*m_pixmaps)[s];
1262} 1048}
1049OLister* OFileSelector::currentLister()const {
1050 return 0l;
1051}