-rw-r--r-- | core/apps/textedit/fileBrowser.cpp | 106 | ||||
-rw-r--r-- | core/apps/textedit/fileBrowser.h | 8 | ||||
-rw-r--r-- | core/apps/textedit/textedit.pro | 6 |
3 files changed, 113 insertions, 7 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 | |||
@@ -12,6 +12,8 @@ | |||
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> |
@@ -25,6 +27,11 @@ | |||
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 | ||
29 | static int u_id = 1; | 36 | static int u_id = 1; |
30 | static int get_unique_id() | 37 | static int get_unique_id() |
@@ -67,7 +74,7 @@ fileBrowser::fileBrowser( QWidget* parent, const char* name, bool modal, WFlags | |||
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); |
@@ -81,7 +88,12 @@ fileBrowser::fileBrowser( QWidget* parent, const char* name, bool modal, WFlags | |||
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 |
@@ -272,3 +284,93 @@ void fileBrowser::docOpen( const DocLnk &doc ) | |||
272 | fileList.append( doc.file().latin1() ); | 284 | fileList.append( doc.file().latin1() ); |
273 | accept(); | 285 | accept(); |
274 | } | 286 | } |
287 | |||
288 | void 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 | |||
299 | void 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 | |||
313 | void fileBrowser::doCd() { | ||
314 | listClicked( ListView->currentItem()); | ||
315 | } | ||
316 | |||
317 | void 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 | |||
328 | void 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 | |||
343 | void 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 | } | ||
diff --git a/core/apps/textedit/fileBrowser.h b/core/apps/textedit/fileBrowser.h index d8f0d0d..4f765dd 100644 --- a/core/apps/textedit/fileBrowser.h +++ b/core/apps/textedit/fileBrowser.h | |||
@@ -34,6 +34,7 @@ class QPushButton; | |||
34 | class QComboBox; | 34 | class QComboBox; |
35 | class QWidgetStack; | 35 | class QWidgetStack; |
36 | class FileSelector; | 36 | class FileSelector; |
37 | class QPoint; | ||
37 | 38 | ||
38 | class fileBrowser : public QDialog | 39 | class fileBrowser : public QDialog |
39 | { | 40 | { |
@@ -62,7 +63,12 @@ public: | |||
62 | public slots: | 63 | public slots: |
63 | void homeButtonPushed(); | 64 | void homeButtonPushed(); |
64 | void docButtonPushed(); | 65 | void docButtonPushed(); |
65 | 66 | void ListPressed( int, QListViewItem *, const QPoint&, int); | |
67 | void showListMenu(QListViewItem*); | ||
68 | void doCd(); | ||
69 | void makDir(); | ||
70 | void localRename(); | ||
71 | void localDelete(); | ||
66 | private: | 72 | private: |
67 | 73 | ||
68 | private slots: | 74 | private slots: |
diff --git a/core/apps/textedit/textedit.pro b/core/apps/textedit/textedit.pro index 2c25d43..f019bf7 100644 --- a/core/apps/textedit/textedit.pro +++ b/core/apps/textedit/textedit.pro | |||
@@ -2,10 +2,8 @@ TEMPLATE = app | |||
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | 3 | ||
4 | DESTDIR = $(OPIEDIR)/bin | 4 | DESTDIR = $(OPIEDIR)/bin |
5 | 5 | HEADERS = textedit.h fileBrowser.h fontDialog.h fileSaver.h filePermissions.h inputDialog.h | |
6 | HEADERS = textedit.h fileBrowser.h fontDialog.h fileSaver.h filePermissions.h | 6 | SOURCES = main.cpp textedit.cpp fileBrowser.cpp fontDialog.cpp fileSaver.cpp filePermissions.cpp inputDialog.cpp |
7 | |||
8 | SOURCES = main.cpp textedit.cpp fileBrowser.cpp fontDialog.cpp fileSaver.cpp filePermissions.cpp | ||
9 | 7 | ||
10 | INCLUDEPATH += $(OPIEDIR)/include | 8 | INCLUDEPATH += $(OPIEDIR)/include |
11 | DEPENDPATH += $(OPIEDIR)/include | 9 | DEPENDPATH += $(OPIEDIR)/include |