summaryrefslogtreecommitdiff
path: root/core/apps/textedit/fileBrowser.cpp
Unidiff
Diffstat (limited to 'core/apps/textedit/fileBrowser.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/textedit/fileBrowser.cpp106
1 files changed, 104 insertions, 2 deletions
diff --git a/core/apps/textedit/fileBrowser.cpp b/core/apps/textedit/fileBrowser.cpp
index 8cb7c38..1fdf9d9 100644
--- a/core/apps/textedit/fileBrowser.cpp
+++ b/core/apps/textedit/fileBrowser.cpp
@@ -9,12 +9,14 @@
9** 9**
10** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 10** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
11** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 11** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
12** 12**
13****************************************************************************/ 13****************************************************************************/
14#include "fileBrowser.h" 14#include "fileBrowser.h"
15#include "inputDialog.h"
16
15#include <qpe/config.h> 17#include <qpe/config.h>
16#include <qpe/resource.h> 18#include <qpe/resource.h>
17#include <qpe/fileselector.h> 19#include <qpe/fileselector.h>
18#include <qpe/qpeapplication.h> 20#include <qpe/qpeapplication.h>
19 21
20#include <qwidgetstack.h> 22#include <qwidgetstack.h>
@@ -22,12 +24,17 @@
22#include <qcombo.h> 24#include <qcombo.h>
23#include <qpushbutton.h> 25#include <qpushbutton.h>
24#include <qfile.h> 26#include <qfile.h>
25#include <qmessagebox.h> 27#include <qmessagebox.h>
26#include <qlayout.h> 28#include <qlayout.h>
27#include <unistd.h> 29#include <unistd.h>
30#include <qpopupmenu.h>
31#include <qlineedit.h>
32
33#include <unistd.h>
34#include <stdlib.h>
28 35
29static int u_id = 1; 36static int u_id = 1;
30static int get_unique_id() 37static int get_unique_id()
31{ 38{
32 return u_id++; 39 return u_id++;
33} 40}
@@ -64,13 +71,13 @@ fileBrowser::fileBrowser( QWidget* parent, const char* name, bool modal, WFlags
64 connect(homeButton,SIGNAL(released()),this,SLOT(homeButtonPushed()) ); 71 connect(homeButton,SIGNAL(released()),this,SLOT(homeButtonPushed()) );
65 homeButton->setFlat(TRUE); 72 homeButton->setFlat(TRUE);
66 layout->addWidget( homeButton, 0, 2 ); 73 layout->addWidget( homeButton, 0, 2 );
67 74
68 FileStack = new QWidgetStack( this ); 75 FileStack = new QWidgetStack( this );
69 76
70 ListView = new QListView( this, "ListView" ); 77 ListView = new QListView( this, "ListView" );
71 ListView->setMinimumSize( QSize( 100, 25 ) ); 78 ListView->setMinimumSize( QSize( 100, 25 ) );
72 ListView->addColumn( tr( "Name" ) ); 79 ListView->addColumn( tr( "Name" ) );
73 ListView->setColumnWidth(0,120); 80 ListView->setColumnWidth(0,120);
74 ListView->setSorting( 2, FALSE); 81 ListView->setSorting( 2, FALSE);
75 ListView->addColumn( tr( "Size" ) ); 82 ListView->addColumn( tr( "Size" ) );
76 ListView->setColumnWidth(1,-1); 83 ListView->setColumnWidth(1,-1);
@@ -78,13 +85,18 @@ fileBrowser::fileBrowser( QWidget* parent, const char* name, bool modal, WFlags
78// ListView->addColumn( tr( "" ) ); 85// ListView->addColumn( tr( "" ) );
79 ListView->setColumnWidthMode(0,QListView::Manual); 86 ListView->setColumnWidthMode(0,QListView::Manual);
80 ListView->setColumnAlignment(1,QListView::AlignRight); 87 ListView->setColumnAlignment(1,QListView::AlignRight);
81 ListView->setColumnAlignment(2,QListView::AlignRight); 88 ListView->setColumnAlignment(2,QListView::AlignRight);
82 ListView->setAllColumnsShowFocus( TRUE ); 89 ListView->setAllColumnsShowFocus( TRUE );
83 90
84 connect( ListView, SIGNAL(pressed( QListViewItem*)), SLOT(listClicked(QListViewItem *)) ); 91 QPEApplication::setStylusOperation( ListView->viewport(),QPEApplication::RightOnHold);
92 connect( ListView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)),
93 this,SLOT( ListPressed(int, QListViewItem *, const QPoint&, int)) );
94
95 connect( ListView, SIGNAL( clicked( QListViewItem*)), SLOT(listClicked(QListViewItem *)) );
96
85 FileStack->addWidget( ListView, get_unique_id() ); 97 FileStack->addWidget( ListView, get_unique_id() );
86 98
87 fileSelector = new FileSelector( "text/*", FileStack, "fileselector" , FALSE, FALSE); //buggy 99 fileSelector = new FileSelector( "text/*", FileStack, "fileselector" , FALSE, FALSE); //buggy
88// connect( fileSelector, SIGNAL( closeMe() ), this, SLOT( showEditTools() ) ); 100// connect( fileSelector, SIGNAL( closeMe() ), this, SLOT( showEditTools() ) );
89// connect( fileSelector, SIGNAL( newSelected( const DocLnk &) ), this, SLOT( newFile( const DocLnk & ) ) ); 101// connect( fileSelector, SIGNAL( newSelected( const DocLnk &) ), this, SLOT( newFile( const DocLnk & ) ) );
90 connect( fileSelector, SIGNAL( fileSelected( const DocLnk &) ), this, SLOT( docOpen( const DocLnk & ) ) ); 102 connect( fileSelector, SIGNAL( fileSelected( const DocLnk &) ), this, SLOT( docOpen( const DocLnk & ) ) );
@@ -269,6 +281,96 @@ void fileBrowser::selectionChanged( const QString &select )
269 281
270void fileBrowser::docOpen( const DocLnk &doc ) 282void fileBrowser::docOpen( const DocLnk &doc )
271{ 283{
272 fileList.append( doc.file().latin1() ); 284 fileList.append( doc.file().latin1() );
273 accept(); 285 accept();
274} 286}
287
288void fileBrowser::ListPressed( int mouse, QListViewItem *item, const QPoint &point, int i)
289{
290 switch (mouse) {
291 case 1:
292 break;
293 case 2:
294 showListMenu(item);
295 break;
296 };
297}
298
299void fileBrowser::showListMenu(QListViewItem *item) {
300
301 QPopupMenu m;// = new QPopupMenu( Local_View );
302 if( item->text(0).find("/",0,TRUE))
303 m.insertItem( tr( "Change Directory" ), this, SLOT( doCd() ));
304 else
305 m.insertItem( tr( "Make Directory" ), this, SLOT( makDir() ));
306 m.insertItem( tr( "Rename" ), this, SLOT( localRename() ));
307 m.insertSeparator();
308 m.insertItem( tr( "Delete" ), this, SLOT( localDelete() ));
309 m.exec( QCursor::pos() );
310
311}
312
313void fileBrowser::doCd() {
314 listClicked( ListView->currentItem());
315}
316
317void fileBrowser::makDir() {
318 InputDialog *fileDlg;
319 fileDlg = new InputDialog(this,"Make Directory",TRUE, 0);
320 fileDlg->exec();
321 if( fileDlg->result() == 1 ) {
322 QString filename = fileDlg->LineEdit1->text();
323 currentDir.mkdir( currentDir.canonicalPath()+"/"+filename);
324 }
325 populateList();
326}
327
328void fileBrowser::localRename() {
329 QString curFile = ListView->currentItem()->text(0);
330 InputDialog *fileDlg;
331 fileDlg = new InputDialog(this,"Rename",TRUE, 0);
332 fileDlg->inputText = curFile;
333 fileDlg->exec();
334 if( fileDlg->result() == 1 ) {
335 QString oldname = currentDir.canonicalPath() + "/" + curFile;
336 QString newName = currentDir.canonicalPath() + "/" + fileDlg->LineEdit1->text();//+".playlist";
337 if( rename(oldname.latin1(), newName.latin1())== -1)
338 QMessageBox::message("Note","Could not rename");
339 }
340 populateList();
341}
342
343void fileBrowser::localDelete() {
344 QString f = ListView->currentItem()->text(0);
345 if(QDir(f).exists() ) {
346 switch ( QMessageBox::warning(this,"Delete","Do you really want to delete\n"+f+
347 " ?\nIt must be empty","Yes","No",0,0,1) ) {
348 case 0: {
349 f=currentDir.canonicalPath()+"/"+f;
350 QString cmd="rmdir "+f;
351 system( cmd.latin1());
352 populateList();
353 }
354 break;
355 case 1:
356 // exit
357 break;
358 };
359
360 } else {
361 switch ( QMessageBox::warning(this,"Delete","Do you really want to delete\n"+f
362 +" ?","Yes","No",0,0,1) ) {
363 case 0: {
364 f=currentDir.canonicalPath()+"/"+f;
365 QString cmd="rm "+f;
366 system( cmd.latin1());
367 populateList();
368 }
369 break;
370 case 1:
371 // exit
372 break;
373 };
374 }
375
376}