summaryrefslogtreecommitdiff
path: root/libopie/ofileselector.cc
blob: 0e508afb90b6641a8e68c3ea09eeff79dd7d4b78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
/*
               =.            This file is part of the OPIE Project
             .=l.            Copyright (c)  2002 Holger Freyther <zecke@handhelds.org>
           .>+-=
 _;:,     .>    :=|.         This library is free software; you can 
.> <`_,   >  .   <=          redistribute it and/or  modify it under
:`=1 )Y*s>-.--   :           the terms of the GNU Library General Public
.="- .-=="i,     .._         License as published by the Free Software
 - .   .-<_>     .<>         Foundation; either version 2 of the License,
     ._= =}       :          or (at your option) any later version.
    .%`+i>       _;_.        
    .i_,=:_.      -<s.       This library is distributed in the hope that  
     +  .  -:.       =       it will be useful,  but WITHOUT ANY WARRANTY;
    : ..    .:,     . . .    without even the implied warranty of
    =_        +     =;=|`    MERCHANTABILITY or FITNESS FOR A
  _.=:.       :    :=>`:     PARTICULAR PURPOSE. See the GNU
..}^=.=       =       ;      Library General Public License for more
++=   -.     .`     .:       details.
 :     =  ...= . :.=-        
 -.   .:....=;==+<;          You should have received a copy of the GNU
  -_. . .   )=.  =           Library General Public License along with
    --        :-=`           this library; see the file COPYING.LIB. 
                             If not, write to the Free Software Foundation,
                             Inc., 59 Temple Place - Suite 330,
                             Boston, MA 02111-1307, USA.

*/

#include <qnamespace.h>
#include <qpushbutton.h>
#include <qcombobox.h>
#include <qhbox.h>
#include <qvbox.h>
#include <qlayout.h>
#include <qwidgetstack.h>
#include <qlineedit.h>
#include <qcheckbox.h>
#include <qlabel.h>
#include <qheader.h>
#include <qdir.h>
#include <qpainter.h>
#include <qaction.h>
#include <qpopupmenu.h>
#include <qcursor.h>
#include <qstringlist.h>
#include <qmessagebox.h>

#include <qpe/qpeapplication.h>
#include <qpe/fileselector.h>
#include <qpe/applnk.h>
#include <qpe/global.h>
#include <qpe/mimetype.h>
#include <qpe/resource.h>
#include <qpe/storage.h>

#include <unistd.h>
#include <stdlib.h>
#include <sys/stat.h>

#include "ofileselector.h"
//#include "ofileview.h"

QMap<QString,QPixmap> *OFileSelector::m_pixmaps = 0;

namespace {

  int indexByString( const QComboBox *box, const QString &str ){
    int index= -1;
    for(int i= 0; i < box->count(); i++ ){
      if( str == box->text(i ) ){
    index= i;
    break;
      }
    }
    return index;
  }
  class OFileSelectorItem : public QListViewItem {
  public:
    OFileSelectorItem(QListView *view, const QPixmap &pixmap, const QString &path,
		      const QString &date, const QString &size, const QString &mDir,
		      bool isLocked=false, bool isDir=false ): QListViewItem(view) {
      setPixmap(0, pixmap );
      setText(1, path );
      setText(2, size );
      setText(3, date );
      //setText(4, mDir );
      m_dir = mDir;
      dir = isDir;
      mLocked = isLocked;
    }
    bool isLocked() const{
      return mLocked;
    }
    QString directory()const{
      return m_dir;
    }
    bool isDir()const{
      return dir;
    }
    QString path()const{
      return text(1 );
    }
    QString key(int id, bool )const {
      QString ke;
      if( id == 0 || id == 1 ){ // name
	if( dir ){
	  ke.append("0" );
	  ke.append( text(1) );
	}else{
	  ke.append("1" );
	  ke.append( text(1) );
	}
      }else if( id == 2 ){ // size
	return text(2);
      }else if( id == 3 ){ // date
	return text(3);
      }
      return ke;
    };
  private:
    bool mLocked:1;
    bool dir:1;
    QString m_dir;
  };
};


OFileSelector::OFileSelector(QWidget *wid, int mode, int selector, const QString &dirName,
           const QString &fileName, const QStringList &mimetypes ) : QWidget( wid )
{
  if(wid!=0)
    resize(wid->width(),wid->height());
  m_selector = selector;
  m_currentDir = dirName;
  m_name = fileName;
  m_mimetypes = mimetypes;
  
  if( mimetypes.isEmpty() )
    m_autoMime = true;

  qWarning("OFileSelector mimetypes %s", mimetypes.join(" ").latin1() );
  m_mode = mode;
  m_shTool = true;
  m_shPerm = true;
  m_shLne = true;
  m_shChooser = true;
  m_shYesNo = true;

  // for FILESELECTOR only view is interesting
  m_location = 0;
  m_homeButton = 0;
  m_docButton = 0;
  m_hideButton = 0;
  m_ok = 0;
  m_cancel = 0;
  m_reread = 0;
  m_up = 0;
  m_View = 0;
  m_select = 0;
  m_stack = 0;

  m_select = 0;
  m_stack = 0;
  m_lay = 0;
  m_boxToolbar = 0;
  m_boxOk = 0;
  m_edit = 0;

  m_fnLabel = 0;
  m_checkPerm = 0;
  m_mimeCheck = 0;
  m_viewCheck = 0;

  m_pseudo = 0;
  m_pseudoLayout = 0;

  m_dir = true;
  m_files = true;
  m_custom = 0;
  m_showPopup = true;

  if(m_pixmaps == 0 ) // init the pixmaps
    initPics();

  m_lay = new QVBoxLayout(this);
  init();
  m_edit->setText( fileName );
}

void OFileSelector::initPics()
{
  qWarning("init pics" );
  m_pixmaps = new QMap<QString,QPixmap>;
  QPixmap pm  = Resource::loadPixmap( "folder"  );
  QPixmap lnk = Resource::loadPixmap( "opie/symlink"  );
  QPainter painter( &pm );
  painter.drawPixmap( pm.width()-lnk.width(), pm.height()-lnk.height(), lnk );
  pm.setMask( pm.createHeuristicMask( FALSE ) );
  m_pixmaps->insert("dirsymlink", pm );

  QPixmap pm2 = Resource::loadPixmap( "lockedfolder" );
  QPainter pen(&pm2 );
  pen.drawPixmap(pm2.width()-lnk.width(), pm2.height()-lnk.height(), lnk );
  pm2.setMask( pm2.createHeuristicMask( FALSE ) );
  m_pixmaps->insert("symlinkedlocked", pm2 );

}

// let's initialize the gui
/**
   --------------------
   | cmbBox   Button  |
   --------------------
   | FileSlector      |
   |       or         |
   | OSelector        |
   |                  |
   |                  |
   ____________________
   | LineEdit         |
   ____________________
   | Permission Bar   |
   ____________________
   | ViewChoose       |
   ____________________
   | Save       Cancel|
   ____________________
 */
void OFileSelector::delItems()
{
  QLayoutIterator it = m_lay->iterator();
  while ( it.current() != 0 ){
    it.deleteCurrent();
  }
}

void OFileSelector::init()
{
//    qDebug("init");
  m_stack = new QWidgetStack(this, "wstack" );
  if( m_selector == NORMAL ){
    QString currMime;
    if( m_mimeCheck != 0 )
      currMime = m_mimeCheck->currentText();
    updateMimes();
    m_select = new FileSelector( currMime == "All" ? QString::null : currMime ,
				 m_stack, "fileselector", FALSE, FALSE );
    m_stack->addWidget(m_select, NORMAL );
    m_lay->addWidget(m_stack );
    m_stack->raiseWidget(NORMAL );
    connect(m_select, SIGNAL(fileSelected( const DocLnk &) ), 
	    this, SLOT(slotFileBridgeSelected(const DocLnk &) ) );
    m_pseudoLayout = 0l;

  } else {
    initializeListView();
  }
  if(m_shLne ){ 
    initializeName();
  }
  if(m_shPerm ){
    m_checkPerm = new QCheckBox(tr("Set Permission"), this, "Permission" );
    m_checkPerm->setChecked( false );
    m_lay->addWidget(m_checkPerm ); 
  }
  if( m_shChooser )
    initializeChooser();
  if(m_shYesNo )
    initializeYes();

  // m_mimeCheck->setCurrentItem(indexByString( m_mimeCheck, requestedMimeTypesList.first()) );
  //  reparse();
  
}

void OFileSelector::setYesCancelVisible( bool show )
{
  if ( show == m_shYesNo )
    return;
  m_shYesNo = show;
  if( !show ){
    delete m_ok;
    delete m_cancel; 
    m_ok = 0;
    m_cancel = 0;
    // delete m_boxOk; all ready deleted in delItems
  }
  updateLay(); // recreate it and save the other states
}

void OFileSelector::setToolbarVisible( bool show )
{
  if ( m_shTool == show )
    return;
  if(!m_shTool ){
    delete m_boxToolbar;
    delete m_homeButton;
    delete m_docButton;
    delete m_location;
    delete m_up;
    m_boxToolbar = 0;
    m_homeButton = 0;
    m_docButton = 0;
    m_location = 0;
    m_up = 0;
  };
  updateLay();// overkill fix it
}

void OFileSelector::setPermissionBarVisible( bool show )
{
  if( show == m_shPerm )
    return;

  m_shPerm = show;

  updateLay();
}

void OFileSelector::setLineEditVisible( bool show )
{
  if( show == m_shLne )
    return;

  m_shLne = show;
  if( !show ){
    delete m_edit;
    delete m_fnLabel;
    m_edit = 0;
    m_fnLabel = 0;
    //delete m_boxName; will be deleted 
  }
  updateLay();
}

void OFileSelector::setChooserVisible( bool show )
{
  if( show = m_shChooser )
    return;
  m_shChooser = show;
  if( !show ){
    delete m_mimeCheck;
    delete m_viewCheck;
    m_mimeCheck = 0;
    m_viewCheck = 0;
  }
  updateLay();
}

QCheckBox* OFileSelector::permissionCheckbox( )
{
  return m_checkPerm;
}

void OFileSelector::setCaseSensetive( bool caSe )
{
  m_case = caSe;
  reparse();
}

void OFileSelector::setShowFiles(bool files ){
  m_files = files;
  reparse();
}

void OFileSelector::setPopupMenu(QPopupMenu *pop )
{
  //delete oldpopup;
  m_custom = pop;
}

bool OFileSelector::setPermission( ) const
{
  if( m_checkPerm == 0 )
    return false;
  else
    return m_checkPerm->isChecked(); 
}

void OFileSelector::setPermissionChecked( bool check )
{
  if( m_checkPerm == 0 )
    return;
  m_checkPerm->setChecked( check );
}

QString OFileSelector::selectedName( )const
{
  QString string;
  if( m_selector == NORMAL ){
    const DocLnk *lnk = m_select->selected();
    string = lnk->file();
  }else if(m_selector == EXTENDED || m_selector == EXTENDED_ALL ) {
    QListViewItem *item = m_View->currentItem();
    if(item != 0 ){
      string = m_currentDir + "/" + item->text( 1 );
    }
  }
  return string;
}

QStringList OFileSelector::selectedNames()const
{
  QStringList list;
  return list;
}

DocLnk OFileSelector::selectedDocument( )const
{
  DocLnk lnk;
  return lnk;
}
void OFileSelector::updateLay()
{
  /* if( m_shTool )
    //
  else
    // hide
  */
  // save the state
  bool check = false;
  if( m_checkPerm != 0 )
    check = m_checkPerm->isChecked();
  QString text;

  if( m_edit != 0 )
    text = m_edit->text();
  // save current mimetype

  delItems();
  delete m_checkPerm;
  m_checkPerm = 0;
  delete m_edit;
  m_edit = 0;
  delete m_fnLabel;
  m_fnLabel = 0;
  delete m_ok;
  m_ok = 0;
  delete m_cancel;
  m_cancel = 0;
  delete m_mimeCheck;
  m_mimeCheck = 0;
  delete m_viewCheck;
  m_viewCheck = 0;
  delete m_select; // test
  delete m_stack;
  //delete m_list;
  init();
  if( m_shLne )
    m_edit->setText(text );
  if( m_shPerm )
    m_checkPerm->setChecked(check );
}

// let's update the mimetypes. Use the current mimefilter for the 2nd QDir retrieve
// insert QListViewItems with the right options
bool OFileSelector::compliesMime(const QString &path, const QString &mime )
{
  if( mime == "All" )
    return true;
  MimeType type( path );
  if( type.id() == mime )
    return true;
  return false;
}

void OFileSelector::reparse()
{
    qDebug("reparse");
  if(m_View== 0 || m_selector == NORMAL)
    return;
  m_View->clear();
  QString currMime =m_mimeCheck->currentText();
  // update the mimetype now
  if( m_autoMime ) {
    QDir dir( m_currentDir );
    m_mimetypes.clear();
    m_mimeCheck->clear();
    dir.setFilter( QDir::Files | QDir::Readable );
    dir.setSorting(QDir::Size ); 
    const QFileInfoList *list = dir.entryInfoList();
    QFileInfoListIterator it( *list );
    QFileInfo *fi;
    while( (fi=it.current())  ){
      if(fi->extension() == QString::fromLatin1("desktop") ){
  ++it;
  continue;
      }
      MimeType type(fi->filePath() );
      if( !m_mimetypes.contains( type.id() ) )
  m_mimetypes.append( type.id() );

      ++it;
    }
    m_mimetypes.prepend("All" );
    m_mimeCheck->insertStringList(m_mimetypes );
    // set it to the current mimetype
    m_mimeCheck->setCurrentItem( indexByString( m_mimeCheck, currMime ) ); 
  }else{
    m_mimeCheck->clear();
    m_mimeCheck->insertItem( m_mimetypes.join(";")  );
  }
  
  QDir dir( m_currentDir );
  //dir.setFilter(-1 );
  int sort = QDir::Name | QDir::DirsFirst | QDir::Reversed;
  if( m_case )
    sort = QDir::IgnoreCase;
  dir.setSorting( sort  );
  
  int filter;
  /*  if( m_dir && !m_files)
      filter |= QDir::Dirs;
      else if( !m_dir && m_files )
      filter |= QDir::Files;
      else
      filter |= QDir::All;
  */
  if( m_selector == EXTENDED_ALL )
    filter = QDir::Files | QDir::Dirs | QDir::Hidden | QDir::All;
  else
    filter = QDir::Files | QDir::Dirs | QDir::All;
  dir.setFilter( filter );
  qDebug("infoList");
  const QFileInfoList *list = dir.entryInfoList();
  QFileInfoListIterator it( *list );
  QFileInfo *fi;
  while( (fi=it.current())  ){
    if(fi->fileName() == ".." || fi->fileName() == "." ){
      ++it;
      continue;
    }
//    qWarning("Test:  %s", fi->fileName().latin1() );
    if(fi->isSymLink() ){
//      qWarning("Symlink %s", fi->fileName().latin1() );
      QString file = fi->dirPath(true)+"/"+ fi->readLink();
//      qWarning("File ->%s", file.latin1() );
      for(int i=0; i<=4; i++ ){ // prepend from dos
  QFileInfo info( file );
  if( !info.exists() ){
//    qWarning("does not exist" );
    addSymlink(currMime,  fi, TRUE );
    break;
  }else if( info.isDir() ){ 
//    qWarning("isDir" );
    addDir(currMime, fi, TRUE  );
    break;
  }else if( info.isFile() ){
//    qWarning("isFile" );
    addFile(currMime, fi, TRUE );
    break;
  }else if( info.isSymLink() ){
    file = info.dirPath(true)+ "/"+ info.readLink();
//    qWarning("isSymlink again %s", file.latin1() );
  }else if( i == 4 ){ // just insert it and have the symlink symbol
    addSymlink(currMime, fi );
//    qWarning("level too deep" );
  }
      }
    }else if( fi->isDir() ){
      addDir(currMime, fi );
    }else if( fi->isFile() ) { // file ?
      addFile(currMime, fi );
    }
    ++it;  
  }
  m_View->sort();
//  m_View->ensureItemVisible();
}

QString OFileSelector::directory()const
{
    QDir d( m_currentDir);
  return d.absPath();
}

int OFileSelector::fileCount()
{
  return 0;
}

void OFileSelector::slotOk( )
{
  emit ok();
}

void OFileSelector::slotCancel( )
{
  emit cancel();
}

void OFileSelector::initializeName()
{
  m_boxName = new QHBoxLayout(this );
  m_edit = new QLineEdit(this );
  m_fnLabel = new QLabel(this );
  m_fnLabel->setText(tr("Name:") );
  m_boxName->addWidget(m_fnLabel );
  m_boxName->insertSpacing(1, 8 );
  m_boxName->addWidget(m_edit, 100 );

  m_lay->addLayout(m_boxName);
}

void OFileSelector::initializeYes()
{
  m_ok = new QPushButton("&Save", this, "save" );
  m_cancel = new QPushButton("C&ancel", this, "cancel" );
  m_boxOk = new QHBoxLayout(this );
  m_boxOk->addWidget( m_ok, Qt::AlignHCenter );
  m_boxOk->insertSpacing(1, 8 );
  m_boxOk->addWidget( m_cancel, Qt::AlignHCenter);
  m_lay->addLayout(m_boxOk );
  connect(m_ok, SIGNAL(clicked() ),
    this, SLOT(slotOk() )  );
  connect(m_cancel, SIGNAL(clicked() ),
    this, SLOT(slotCancel() )  );

}

void OFileSelector::initializeChooser()
{
  m_boxView = new QHBoxLayout(this );

  m_mimeCheck = new QComboBox(this, "mime check");
  m_viewCheck = new QComboBox(this, "view check");
  m_boxView->addWidget(m_viewCheck, 0 );
  m_boxView->insertSpacing(2, 8 );
  m_boxView->addWidget(m_mimeCheck, 0 );
  m_lay->addLayout(m_boxView );
  m_lay->insertSpacing( 4, 8);

  m_viewCheck->insertItem(tr("Documents") );
  m_viewCheck->insertItem(tr("Files") );
  m_viewCheck->insertItem(tr("All Files") );

   if(!m_autoMime )
     m_mimeCheck->insertItem(m_mimetypes.join("," ) );
   else{ // check
     updateMimes();
     m_mimeCheck->insertStringList( m_mimetypes );
   }

  connect( m_viewCheck, SIGNAL(activated(const QString &) ),
     this, SLOT(slotViewCheck(const QString & ) ) );

  connect( m_mimeCheck, SIGNAL(activated(const QString &) ),
     this, SLOT(slotMimeCheck(const QString & ) ) );
}

void OFileSelector::slotMimeCheck(const QString &view ){
  if(m_selector == NORMAL ){
    delete m_select;
    m_select = new FileSelector(view == "All" ? QString::null : view 
        , m_stack, "fileselector", FALSE, FALSE );
    m_stack->addWidget( m_select, NORMAL );
    m_stack->raiseWidget( NORMAL );
  }else{
    reparse();
  }
}

void OFileSelector::slotViewCheck(const QString &view ){
  qWarning("changed: show %s", view.latin1() );
  // if the current view is the one
  QString currMime = m_mimeCheck->currentText();
  if( view == QString::fromLatin1("Documents") ){
    // get the mimetype now
    // check if we're the current widget and return
    if( m_View != 0) { // delete 0 shouldn't crash but it did :( 
      delete m_View;
      delete m_boxToolbar;
      delete m_homeButton;
      delete m_docButton;
      delete m_location;
      delete m_up;
      delete m_pseudo;
      //if(m_pseudoLayout!=0 )
//  delete m_pseudoLayout;
    }
    m_View = 0;
    m_boxToolbar = 0;
    m_homeButton = 0;
    m_docButton = 0;
    m_location = 0;
    m_up = 0;
    m_pseudo = 0;
    m_pseudoLayout = 0;

    delete m_select;
    m_select = new FileSelector( currMime == "All" ? QString::null : currMime,
         m_stack,"fileselector", FALSE, FALSE );
    m_stack->addWidget( m_select, NORMAL );
    m_mimeCheck->clear();
    m_selector = NORMAL;
    updateMimes();
    m_mimeCheck->insertStringList( m_mimetypes );
    m_stack->raiseWidget( NORMAL );
    connect(m_select, SIGNAL(fileSelected( const DocLnk &) ), this, SLOT(slotFileBridgeSelected(const DocLnk &) ) );    

  } else if(view == QString::fromLatin1("Files") ){
    // remove from the stack
    delete m_select;
    m_select = 0;
    delete m_View;
    m_View = 0;

    m_selector = EXTENDED;
    initializeListView();
    reparse();
  } else if(view == QString::fromLatin1("All Files") ) {
    // remove from the stack
    delete m_select;
    m_select = 0;
    delete m_View;
    m_View = 0;

    m_selector = EXTENDED_ALL;
    initializeListView();
    reparse();
  }
}


void OFileSelector::updateMimes() // lets check which mode is active
  // check the current dir for items then
{
 if( m_autoMime ){  
   m_mimetypes.clear();
   m_mimetypes.append("All" );
   if( m_selector == NORMAL ){
     DocLnkSet set;
     Global::findDocuments(&set, QString::null );
     QListIterator<DocLnk> dit( set.children() );
     for ( ; dit.current(); ++dit ) {
       if( !m_mimetypes.contains((*dit)->type()  ) )
	 m_mimetypes.append( (*dit)->type() );
     }
   }else{
     // should be allreday updatet
     ;
   }
 }
}

void OFileSelector::initializeListView()
{
      // in the instance that a developer selected the view to be Files or Entended,
      // in the initial initialization, you are deleting objects here
      // that aren't even existing yet.
    
  // just to make sure but clean it up better FIXME
  delete m_View;
  m_View = 0;
  delete m_boxToolbar;
  delete m_homeButton;
  delete m_docButton;
  delete m_location;
  delete m_up;
  delete m_pseudo;

  m_boxToolbar = 0;
  m_homeButton = 0;
  m_docButton = 0;
  m_location = 0;
  m_up = 0;
  m_pseudo = 0;
  m_pseudoLayout = 0;
  qDebug(" time for the toolbar ");
  m_pseudo = new QWidget(m_stack, "Pseudo Widget");
  m_pseudoLayout = new QVBoxLayout(m_pseudo );
  if(m_shTool ){
    m_boxToolbar = new QHBoxLayout( );
    m_boxToolbar->setAutoAdd( true );
    m_location = new QComboBox(m_pseudo );
    m_location ->setEditable(TRUE);
    connect( m_location, SIGNAL(activated(const QString &) ), this, SLOT( locationComboActivated(const QString & ) ) );
    connect( m_location->lineEdit(),SIGNAL(returnPressed()), this,SLOT( locationComboChanged()));

    m_up = new QPushButton(Resource::loadIconSet("up"),"", m_pseudo,"cdUpButton");
    m_up->setFixedSize( QSize( 20, 20 ) );
    connect(m_up ,SIGNAL(clicked()),this,SLOT(cdUP()  ) );
    m_up->setFlat(TRUE);

    m_homeButton = new QPushButton(Resource::loadIconSet("home") , "", m_pseudo);
    m_homeButton->setFixedSize( QSize( 20, 20 ) );
    connect(m_homeButton,SIGNAL(clicked()),this,SLOT(slotHome() ) );
    m_homeButton->setFlat(TRUE);

    m_docButton = new QPushButton(Resource::loadIconSet("DocsIcon"),"", m_pseudo,"docsButton");
    m_docButton->setFixedSize( QSize( 20, 20 ) );
    connect(m_homeButton,SIGNAL(clicked()),this,SLOT(slotDoc() ) );
    m_docButton->setFlat(TRUE);

    m_boxToolbar->addWidget(m_location );
    m_boxToolbar->addWidget(m_up );
    m_boxToolbar->addWidget(m_homeButton );
    m_boxToolbar->addWidget(m_docButton );
    m_pseudoLayout->addLayout(m_boxToolbar );
    qDebug("lets fill the combobox");
    StorageInfo storage;
    const QList<FileSystem> &fs = storage.fileSystems();
    QListIterator<FileSystem> it ( fs );
    for( ; it.current(); ++it ){
      const QString disk = (*it)->name();
      const QString path = (*it)->path();
      m_location->insertItem(path+ "<-"+disk );
    }
    int count = m_location->count();
    m_location->insertItem(m_currentDir );
    m_location->setCurrentItem( count );
  };

  m_View = new QListView(m_pseudo, "Extended view" );
  m_stack->addWidget( m_pseudo, EXTENDED );
  m_stack->raiseWidget( EXTENDED );
  m_pseudoLayout->addWidget(m_View );
  QPEApplication::setStylusOperation( m_View->viewport(),QPEApplication::RightOnHold);
  // set up the stuff
  // Pixmap Name Date Size mime
  //(m_View->header() )->hide();
  //m_View->setRootIsDecorated(false);
  m_View->addColumn(" ");
  m_View->addColumn(tr("Name"),135 );
  m_View->addColumn(tr("Size"),-1 );
  m_View->addColumn(tr("Date"), 60 );
  m_View->addColumn(tr("Mime Type"),-1 );
  QHeader *header = m_View->header();
  header->hide();
  m_View->setSorting(1 );
  m_View->setAllColumnsShowFocus( TRUE);
  // connect now
  connect(m_View, SIGNAL(selectionChanged() ), this, SLOT(slotSelectionChanged() ) );
  connect(m_View, SIGNAL(currentChanged(QListViewItem *) ), this, SLOT(slotCurrentChanged(QListViewItem * ) ) );
  connect(m_View, SIGNAL(mouseButtonClicked(int, QListViewItem*, const QPoint &, int) ), 
    this, SLOT(slotClicked( int, QListViewItem *, const QPoint &, int) ) );
  connect(m_View, SIGNAL(mouseButtonPressed(int, QListViewItem *, const QPoint &, int )), 
    this, SLOT(slotRightButton(int, QListViewItem *, const QPoint &, int  ) ) );

 
};

/* If a item is locked  depends on the mode
   if we're in OPEN !isReadable is locked
   if we're in SAVE !isWriteable is locked


 */


void OFileSelector::addFile(const QString &mime, QFileInfo *info, bool symlink ){
//  qWarning("Add Files" );
  if( !m_files ){
//    qWarning("not mfiles" );
    return;
  }

  MimeType type( info->filePath() );
  QString name;
  QString dir;
  bool locked= false;
  if(mime == "All" ){
    ;
  }else if( type.id() != mime ) {
    return;
  }
  QPixmap pix = type.pixmap(); 
  if(pix.isNull() )
    pix = Resource::loadPixmap( "UnknownDocument-14" );
  dir = info->dirPath( true );
  if( symlink ) { // check if the readLink is readable
    // do it right later
    name = info->fileName() + " -> " + info->dirPath() + "/" + info->readLink();
  }else{ // keep track of the icons
    name = info->fileName();
    if( m_mode == OPEN ){
      if( !info->isReadable() ){
  locked = true;
  pix = Resource::loadPixmap("locked" );
      }
    }else if( m_mode == SAVE ){
      if( !info->isWritable() ){
  locked = true;
  pix = Resource::loadPixmap("locked" );
      }
    } 
  }
  new OFileSelectorItem( m_View, pix, name,
       info->lastModified().toString(),
       QString::number( info->size() ),
       dir, locked ); 
}

void OFileSelector::addDir(const QString &mime, QFileInfo *info, bool symlink  )
{
  if(!m_dir )
    return;
  //if( showDirs )
  {
    bool locked=false;
    QString name;
    QPixmap pix;
    if( ( m_mode == OPEN && !info->isReadable() ) || ( m_mode == SAVE && !info->isWritable()  ) ){
      locked = true;
      if( symlink ){
  pix = (*m_pixmaps)["symlinkedlocked"];
      }else{
  pix = Resource::loadPixmap("lockedfolder"  );
      }
    }else{
      if( symlink ){
  pix = (*m_pixmaps)["dirsymlink" ];
      }else{
  pix = Resource::loadPixmap("folder"  );
      }
    }
    if( symlink){
      name = info->fileName()+ "->"+ info->dirPath(true) +"/" +info->readLink();

    }else{
      //if(info->isReadable() )
      name = info->fileName();
    }

      new OFileSelectorItem(m_View, pix,
          name, info->lastModified().toString(),
          QString::number(info->size() ),info->dirPath(true),  locked, true );

  }
}

void OFileSelector::setShowDirs(bool dir )
{
  m_dir = dir;
  reparse();
}

void OFileSelector::slotFileSelected(const QString &string )
{
  if(m_shLne )
    m_edit->setText( string );

  emit fileSelected( string );
  // do AppLnk stuff
} 

void OFileSelector::slotFileBridgeSelected( const DocLnk &lnk )
{
  slotFileSelected(lnk.name() );
  emit fileSelected( lnk );
}

void OFileSelector::slotSelectionChanged() // get the current items
  // fixme
{
  qWarning("selection changed" );
}

void OFileSelector::slotCurrentChanged(QListViewItem *item )
{
//   qWarning("current changed" );
  if( item == 0 )
    return;

  if( m_selector == EXTENDED || m_selector == EXTENDED_ALL ){
    OFileSelectorItem *sel = (OFileSelectorItem*)item;
    if(!sel->isDir() ){
//       qWarning("is not dir" );
      if(m_shLne ){
  m_edit->setText(sel->text(1) );
//   qWarning("setTexy" );
      }
    }
  }else {
    qWarning("mode not extended" );
  }
}

// either select or change dir
void OFileSelector::slotClicked( int button, QListViewItem *item, const QPoint &point, int )
{
  if( item == 0 )
    return;

  if( button != Qt::LeftButton )
    return; 

//  qWarning("clicked" );
  if(m_selector == EXTENDED || m_selector == EXTENDED_ALL ){
//     qWarning("inside" );
    OFileSelectorItem *sel = (OFileSelectorItem*)item;
    if(!sel->isLocked() ){ // not locked either changedir or open
      QStringList str = QStringList::split("->", sel->text(1) );
      if(sel->isDir() ){
        cd( sel->directory() + "/" + str[0] );
      } else {
//           qWarning("file" );
          if(m_shLne )
              m_edit->setText(str[0] );
          emit fileSelected(str[0] );
            // emit DocLnk need to do it
      }
    } else {
      qWarning( "locked" );
    }
  };
}

void OFileSelector::slotRightButton(int button, QListViewItem *item, const QPoint &, int )
{
  if (item == 0 )
    return;

  if( button != Qt::RightButton )
    return; 
//   qWarning("right button" );
  slotContextMenu(item);
}

void OFileSelector::slotContextMenu(QListViewItem *item)
{
//   qWarning("context menu" );
  if( item ==0 || !m_showPopup )
    return;
 
  if( m_custom !=0){
    m_custom->exec();
  }else{
    QPopupMenu menu;
    QAction up;
    up.setText("cd up");
    up.addTo( &menu );
    connect(&up, SIGNAL(activated() ),
      this, SLOT(cdUP()  ) );

    QAction act;
    OFileSelectorItem *sel = (OFileSelectorItem*)item;
    if(sel->isDir() ){
      act.setText( tr("Change Directory") );
      act.addTo(&menu );
      connect(&act, SIGNAL(activated() ),
        this, SLOT(slotChangedDir() ) );
    }else{
      act.setText( tr("Open file" )  );
      act.addTo( &menu );
      connect(&act, SIGNAL(activated() ),
        this, SLOT(slotOpen() ) );
    }
    QAction rescan;
    rescan.setText( tr("Rescan")  );
    rescan.addTo( &menu );
    connect(&rescan, SIGNAL(activated() ),
      this, SLOT(slotRescan() ) );

    QAction rename;
    rename.setText( tr("Rename") );
    rename.addTo( &menu );
    connect(&rename, SIGNAL(activated() ),
      this, SLOT(slotRename() ) );

    menu.insertSeparator();
    QAction delItem;
    delItem.setText( tr("Delete")  );
    delItem.addTo(&menu );
    connect(&delItem, SIGNAL(activated() ),
      this, SLOT(slotDelete() ) );

    menu.exec(QCursor::pos() );
  }
}

bool OFileSelector::cd(const QString &str )
{
//   qWarning(" dir %s", str.latin1() );
  QDir dir( str);
  if(dir.exists() ){
    m_currentDir = dir.absPath();
    reparse();
    if(m_shTool ){
        int count = m_location->count();
        insertLocationPath( str ,count );
      m_location->setCurrentItem( count );
    }
    return true;
  }
  return false;
}

void  OFileSelector::insertLocationPath(const QString &currentPath, int count) {
    QStringList pathList;
    bool underDog = FALSE;
    for(int i=0;i<count;i++) {
        pathList << m_location->text(i);
        if( m_location->text(i) == currentPath)
            underDog = TRUE;
    }
    if( !underDog) {
        m_location->clear();
        if( currentPath.left(2)=="//")
            pathList.append( currentPath.right(currentPath.length()-1) );
        else
            pathList.append( currentPath );
        m_location->insertStringList( pathList,-1);
    }
}

void OFileSelector::slotChangedDir()
{
  OFileSelectorItem *sel = (OFileSelectorItem*)m_View->currentItem();
  if(sel->isDir() ){
    QStringList str = QStringList::split("->", sel->text(1) );
    cd( sel->directory() + "/" + str[0] );
        
  }
}

void OFileSelector::slotOpen()
{
  OFileSelectorItem *sel = (OFileSelectorItem*)m_View->currentItem();
  if(!sel->isDir() ){
    QStringList str = QStringList::split("->", sel->text(1) );
    slotFileSelected( str[0] );
  }
}

void OFileSelector::slotRescan()
{
  reparse();
}

void OFileSelector::slotRename()
{
  // rename inline
}

void OFileSelector::slotDelete()
{
//   qWarning("delete slot" );
  OFileSelectorItem *sel = (OFileSelectorItem*)m_View->currentItem();
  QStringList list = QStringList::split("->", sel->text(1) );
  if( sel->isDir() ){
      QString str = QString::fromLatin1("rm -rf ") + list[0]; //better safe than sorry
    switch ( QMessageBox::warning(this,tr("Delete"),tr("Do you really want to delete\n")+list[0],
                                  tr("Yes"),tr("No"),0,1,1) ) {
          case 0:
              ::system(str.utf8().data() );
          break;
    }
  } else {
    QFile::remove( list[0] );
  }
  m_View->takeItem( sel );
  delete sel;
}

void OFileSelector::cdUP()
{
  QDir dir( m_currentDir );
  dir.cdUp();
  if(dir.exists() ){
    m_currentDir = dir.absPath();
    reparse();
    int count = m_location->count();
    insertLocationPath( m_currentDir, count);
    m_location->setCurrentItem( indexByString( m_location, m_currentDir));
//this wont work in all instances
      // FIXME
  }
}

void OFileSelector::slotHome()
{
  cd(QDir::homeDirPath() );
}

void OFileSelector::slotDoc()
{
  cd(QDir::homeDirPath() + "/Documents" );
}

void OFileSelector::slotNavigate()
{

}

void OFileSelector::locationComboActivated(const QString & file ) {
    cd(file.left(file.find("<-",0,TRUE)));
    reparse();
}

void OFileSelector::locationComboChanged() {
    cd( m_location->lineEdit()->text());
    reparse();
}