summaryrefslogtreecommitdiff
path: root/noncore/unsupported
Unidiff
Diffstat (limited to 'noncore/unsupported') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/filebrowser/Makefile.in2
-rw-r--r--noncore/unsupported/filebrowser/filePermissions.cpp274
-rw-r--r--noncore/unsupported/filebrowser/filePermissions.h56
-rw-r--r--noncore/unsupported/filebrowser/filebrowser.cpp422
-rw-r--r--noncore/unsupported/filebrowser/filebrowser.h12
-rw-r--r--noncore/unsupported/filebrowser/filebrowser.pro7
6 files changed, 566 insertions, 207 deletions
diff --git a/noncore/unsupported/filebrowser/Makefile.in b/noncore/unsupported/filebrowser/Makefile.in
index c00d0f5..d1f80b7 100644
--- a/noncore/unsupported/filebrowser/Makefile.in
+++ b/noncore/unsupported/filebrowser/Makefile.in
@@ -121,2 +121,4 @@ main.o: main.cpp \
121 $(OPIEDIR)/include/qpe/qpeapplication.h \ 121 $(OPIEDIR)/include/qpe/qpeapplication.h \
122 $(OPIEDIR)/include/qpedecoration_qws.h \
123 $(OPIEDIR)/include/timestring.h \
122 $(OPIEDIR)/include/qpe/mimetype.h 124 $(OPIEDIR)/include/qpe/mimetype.h
diff --git a/noncore/unsupported/filebrowser/filePermissions.cpp b/noncore/unsupported/filebrowser/filePermissions.cpp
new file mode 100644
index 0000000..1938b84
--- a/dev/null
+++ b/noncore/unsupported/filebrowser/filePermissions.cpp
@@ -0,0 +1,274 @@
1/****************************************************************************
2** copyright 2002 ljp ljp@llornkcor.com
3** Created: Sat Feb 23 19:44:40 2002 L.J. Potter
4**
5** This file may be distributed and/or modified under the terms of the
6** GNU General Public License version 2 as published by the Free Software
7** Foundation and appearing in the file LICENSE.GPL included in the
8** packaging of this file.
9**
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.
12**
13****************************************************************************/
14#include "filePermissions.h"
15
16#include <qfile.h>
17#include <qfileinfo.h>
18
19#include <qcheckbox.h>
20#include <qlabel.h>
21#include <qlineedit.h>
22#include <qlayout.h>
23#include <qvariant.h>
24#include <qtooltip.h>
25#include <qmessagebox.h>
26
27#include <unistd.h>
28#include <sys/stat.h>
29#include <stdlib.h>
30#include <sys/types.h>
31#include <pwd.h>
32#include <grp.h>
33
34filePermissions::filePermissions( QWidget* parent, const char* name, bool modal, WFlags fl, const QString &fileName )
35 : QDialog( parent, name, modal, fl )
36{
37 if ( !name )
38 setName( "filePermissions" );
39 qDebug("FilePermissions "+fileName);
40 resize( 236, 210 );
41 setMaximumSize( QSize( 236, 210 ) );
42 setCaption( tr( "Set File Permissions" ) );
43
44 TextLabel1 = new QLabel( this, "TextLabel1" );
45 TextLabel1->setGeometry( QRect( 25, 5, 175, 20 ) );
46 TextLabel1->setText( tr( "Set file permissions for:" ) );
47
48 LineEdit1 = new QLineEdit( this, "LineEdit1" );
49 LineEdit1->setGeometry( QRect( 10, 25, 218, 22 ) );
50 LineEdit1->setReadOnly(true);
51
52 TextLabel4 = new QLabel( this, "TextLabel4" );
53 TextLabel4->setGeometry( QRect( 5, 85, 50, 15 ) );
54 TextLabel4->setText( tr( "owner" ) );
55
56 TextLabel4_2 = new QLabel( this, "TextLabel4_2" );
57 TextLabel4_2->setGeometry( QRect( 5, 105, 50, 15 ) );
58 TextLabel4_2->setText( tr( "group" ) );
59
60 TextLabel4_3 = new QLabel( this, "TextLabel4_3" );
61 TextLabel4_3->setGeometry( QRect( 5, 125, 50, 15 ) );
62 TextLabel4_3->setText( tr( "others" ) );
63
64 CheckBox1 = new QCheckBox( this, "CheckBox1" );
65 CheckBox1->setGeometry( QRect( 75, 85, 20, 16 ) );
66 connect(CheckBox1, SIGNAL(released()),this,SLOT(ownReadCheck()));
67
68 CheckBox1_2 = new QCheckBox( this, "CheckBox1_2" );
69 CheckBox1_2->setGeometry( QRect( 135, 85, 20, 16 ) );
70 connect(CheckBox1_2, SIGNAL(released()),this,SLOT(ownWriteCheck()));
71
72 CheckBox1_3 = new QCheckBox( this, "CheckBox1_3" );
73 CheckBox1_3->setGeometry( QRect( 195, 85, 20, 16 ) );
74 connect(CheckBox1_3, SIGNAL(released()),this,SLOT(ownExeCheck()));
75
76 CheckBox1_4 = new QCheckBox( this, "CheckBox1_4" );
77 CheckBox1_4->setGeometry( QRect( 75, 105, 20, 16 ) );
78 connect(CheckBox1_4, SIGNAL(released()),this,SLOT(grpReadCheck()));
79
80 CheckBox1_5 = new QCheckBox( this, "CheckBox1_5" );
81 CheckBox1_5->setGeometry( QRect( 135, 105, 20, 16 ) );
82 connect(CheckBox1_5, SIGNAL(released()),this,SLOT(grpWriteCheck()));
83
84 CheckBox1_6 = new QCheckBox( this, "CheckBox1_6" );
85 CheckBox1_6->setGeometry( QRect( 195, 105, 20, 16 ) );
86 connect(CheckBox1_6, SIGNAL(released()),this,SLOT(grpExeCheck()));
87
88 CheckBox1_7 = new QCheckBox( this, "CheckBox1_7" );
89 CheckBox1_7->setGeometry( QRect( 75, 125, 16, 16 ) );
90 connect(CheckBox1_7, SIGNAL(released()),this,SLOT(wrldReadCheck()));
91
92 CheckBox1_8 = new QCheckBox( this, "CheckBox1_8" );
93 CheckBox1_8->setGeometry( QRect( 135, 125, 20, 16 ) );
94 connect(CheckBox1_8, SIGNAL(released()),this,SLOT(wrldWriteCheck()));
95
96 CheckBox1_8_2 = new QCheckBox( this, "CheckBox1_8_2" );
97 CheckBox1_8_2->setGeometry( QRect( 195, 125, 20, 16 ) );
98 connect(CheckBox1_8_2, SIGNAL(released()),this,SLOT(wrldExeCheck()));
99
100 GroupLineEdit = new QLineEdit( this, "GroupLineEdit" );
101 GroupLineEdit->setGeometry( QRect( 125, 155, 106, 22 ) );
102
103 OwnerLineEdit = new QLineEdit( this, "OwnerLineEdit" );
104 OwnerLineEdit->setGeometry( QRect( 10, 155, 106, 22 ) );
105
106 TextLabel5 = new QLabel( this, "TextLabel5" );
107 TextLabel5->setGeometry( QRect( 45, 180, 40, 16 ) );
108 TextLabel5->setText( tr( "Owner" ) );
109
110 TextLabel5_2 = new QLabel( this, "TextLabel5_2" );
111 TextLabel5_2->setGeometry( QRect( 155, 180, 40, 16 ) );
112 TextLabel5_2->setText( tr( "Group" ) );
113
114 ModeLine = new QLineEdit( this, "TextLabelMode" );
115 ModeLine->setGeometry( QRect( 10, 60, 40, 15 ) );
116
117 TextLabel3_2 = new QLabel( this, "TextLabel3_2" );
118 TextLabel3_2->setGeometry( QRect( 60, 55, 50, 20 ) );
119 TextLabel3_2->setText( tr( "read" ) );
120 TextLabel3_2->setAlignment( int( QLabel::AlignBottom | QLabel::AlignHCenter ) );
121
122 TextLabel3_2_2 = new QLabel( this, "TextLabel3_2_2" );
123 TextLabel3_2_2->setGeometry( QRect( 120, 55, 50, 20 ) );
124 TextLabel3_2_2->setText( tr( "write" ) );
125 TextLabel3_2_2->setAlignment( int( QLabel::AlignBottom | QLabel::AlignHCenter ) );
126
127 TextLabel3 = new QLabel( this, "TextLabel3" );
128 TextLabel3->setGeometry( QRect( 180, 55, 50, 20 ) );
129 TextLabel3->setText( tr( "execute" ) );
130 TextLabel3->setAlignment( int( QLabel::AlignBottom | QLabel::AlignHCenter ) );
131
132 struct stat buf;
133 mode_t mode;
134 file = fileName;
135 QFileInfo fi(file);
136
137 LineEdit1->setText( file);
138 OwnerLineEdit->setText( fi.owner());
139 GroupLineEdit->setText( fi.group());
140
141 if( fi.permission( QFileInfo::ReadUser)) { CheckBox1->setChecked(true); }
142 if( fi.permission( QFileInfo::WriteUser)) { CheckBox1_2->setChecked(true); }
143 if( fi.permission( QFileInfo::ExeUser)) { CheckBox1_3->setChecked(true); }
144
145 if( fi.permission( QFileInfo::ReadGroup)) { CheckBox1_4->setChecked(true); }
146 if( fi.permission( QFileInfo::WriteGroup)) { CheckBox1_5->setChecked(true); }
147 if( fi.permission( QFileInfo::ExeGroup)) { CheckBox1_6->setChecked(true); }
148
149 if( fi.permission( QFileInfo::ReadOther)) { CheckBox1_7->setChecked(true); }
150 if( fi.permission( QFileInfo::WriteOther)) { CheckBox1_8->setChecked(true); }
151 if( fi.permission( QFileInfo::ExeOther)) { CheckBox1_8_2->setChecked(true); }
152
153 lstat(file.latin1(), &buf);
154 mode = buf.st_mode;
155 modeStr.sprintf("%#o", buf.st_mode & ~(S_IFMT) );
156 ModeLine->setText(modeStr);
157 bool ok;
158 i_mode = modeStr.toInt(&ok,10);
159
160}
161
162/*
163 * Destroys the object and frees any allocated resources
164 */
165filePermissions::~filePermissions()
166{
167}
168
169
170// might this be better as a callback routine???
171void filePermissions::ownReadCheck() {
172 if(CheckBox1->isChecked()) { i_mode +=400; }
173 else i_mode -=400;
174 modeStr.sprintf("0%d",i_mode);
175 ModeLine->setText( modeStr);
176// 0400
177}
178
179void filePermissions::ownWriteCheck() {
180 if(CheckBox1_2->isChecked()) { i_mode +=200; }
181 else i_mode -=200;
182 modeStr.sprintf("0%d",i_mode);
183 ModeLine->setText(modeStr);
184// 0200
185}
186
187void filePermissions::ownExeCheck() {
188 if(CheckBox1_3->isChecked()) { i_mode +=100; }
189 else i_mode -=100;
190 modeStr.sprintf("0%d",i_mode);
191 ModeLine->setText(modeStr);
192// 0100
193}
194
195void filePermissions::grpReadCheck() {
196 if(CheckBox1_4->isChecked()) { i_mode +=40; }
197 else i_mode -=40;
198 modeStr.sprintf("0%d",i_mode);
199 ModeLine->setText(modeStr);
200// 0040
201}
202
203void filePermissions::grpWriteCheck() {
204 if(CheckBox1_5->isChecked()) { i_mode +=20; }
205 else i_mode -=20;
206 modeStr.sprintf("0%d",i_mode);
207 ModeLine->setText(modeStr);
208// 0020
209}
210
211void filePermissions::grpExeCheck() {
212 if(CheckBox1_6->isChecked()) { i_mode +=10; }
213 else i_mode -=10;
214 modeStr.sprintf("0%d",i_mode);
215 ModeLine->setText(modeStr);
216// 0010
217}
218
219void filePermissions::wrldReadCheck() {
220 if(CheckBox1_7->isChecked()) { i_mode +=4; }
221 else i_mode -=4;
222 modeStr.sprintf("0%d",i_mode);
223 ModeLine->setText(modeStr);
224// 0004
225}
226
227void filePermissions::wrldWriteCheck() {
228 if(CheckBox1_8->isChecked()) { i_mode +=2; }
229 else i_mode -=2;
230 modeStr.sprintf("0%d",i_mode);
231 ModeLine->setText(modeStr);
232// 0002
233}
234
235void filePermissions::wrldExeCheck() {
236 if(CheckBox1_8_2->isChecked()) { i_mode +=1; }
237 else i_mode -=1;
238 modeStr.sprintf("0%d",i_mode);
239 ModeLine->setText(modeStr);
240// 0001
241}
242
243void filePermissions::accept() {
244
245 QFileInfo fi(file);
246 struct passwd *pwd=0;
247 struct group *grp=0;
248 pwd = getpwnam(OwnerLineEdit->text().latin1() );
249 if(pwd == NULL) {
250 perror("getpwnam");
251 QMessageBox::warning(this,"Warning","Error- no user");
252 return;
253 } else {
254 grp = getgrnam(GroupLineEdit->text().latin1());
255 if(grp==NULL) {
256 perror("getgrnam");
257 QMessageBox::warning(this,"Warning","Error- no group");
258 return;
259 }
260 if( chown( file.latin1(), pwd->pw_uid, grp->gr_gid) <0) {
261 perror("chown");
262 QMessageBox::warning(this,"Warning","Error setting ownership or group");
263 return;
264 }
265 bool ok;
266 uint moder = modeStr.toUInt(&ok,8);
267 if( chmod( file.latin1(), moder) < 0) {
268 perror("chmod");
269 QMessageBox::warning(this,"Warning","Error setting mode");
270 return;
271 }
272 }
273 close();
274}
diff --git a/noncore/unsupported/filebrowser/filePermissions.h b/noncore/unsupported/filebrowser/filePermissions.h
new file mode 100644
index 0000000..880304f
--- a/dev/null
+++ b/noncore/unsupported/filebrowser/filePermissions.h
@@ -0,0 +1,56 @@
1/****************************************************************************
2** copyright 2002 ljp ljp@llornkcor.com
3** Created: Sat Feb 23 19:44:17 2002
4**
5** This file may be distributed and/or modified under the terms of the
6** GNU General Public License version 2 as published by the Free Software
7** Foundation and appearing in the file LICENSE.GPL included in the
8** packaging of this file.
9**
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.
12**
13****************************************************************************/
14#ifndef FILEPERMISSIONS_H
15#define FILEPERMISSIONS_H
16
17#include <qvariant.h>
18#include <qdialog.h>
19class QVBoxLayout;
20class QHBoxLayout;
21class QGridLayout;
22class QCheckBox;
23class QLabel;
24class QLineEdit;
25class QString;
26
27class filePermissions : public QDialog
28{
29 Q_OBJECT
30
31public:
32 filePermissions( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 , const QString & fileName ="");
33 ~filePermissions();
34
35 QLineEdit *LineEdit1, *ModeLine;
36 QLabel *TextLabel1, *TextLabel4, *TextLabel4_2, *TextLabel4_3, *TextLabel3_2_2, *TextLabel3_2, *TextLabel3, *TextLabel5_2, *TextLabel5;
37 QCheckBox*CheckBox1, *CheckBox1_3, *CheckBox1_2, *CheckBox1_4, *CheckBox1_5, *CheckBox1_6, *CheckBox1_7, *CheckBox1_8, *CheckBox1_8_2;
38 QLineEdit*GroupLineEdit, *OwnerLineEdit;
39 QString modeStr, file;
40 int i_mode;
41private slots:
42 void ownReadCheck();
43 void ownWriteCheck();
44 void ownExeCheck();
45
46 void grpReadCheck();
47 void grpWriteCheck();
48 void grpExeCheck();
49
50 void wrldReadCheck();
51 void wrldWriteCheck();
52 void wrldExeCheck();
53 void accept();
54};
55
56#endif // FILEPERMISSIONS_H
diff --git a/noncore/unsupported/filebrowser/filebrowser.cpp b/noncore/unsupported/filebrowser/filebrowser.cpp
index 9439bb8..384d7da 100644
--- a/noncore/unsupported/filebrowser/filebrowser.cpp
+++ b/noncore/unsupported/filebrowser/filebrowser.cpp
@@ -22,3 +22,3 @@
22#include "filebrowser.h" 22#include "filebrowser.h"
23 23#include "filePermissions.h"
24#include <qpe/resource.h> 24#include <qpe/resource.h>
@@ -62,7 +62,7 @@ FileItem::FileItem( QListView * parent, const QFileInfo & fi )
62 if( fi.isDir() ) 62 if( fi.isDir() )
63 setText( 3, "directory" ); 63 setText( 3, "directory" );
64 else if( isLib() ) 64 else if( isLib() )
65 setText( 3, "library" ); 65 setText( 3, "library" );
66 else 66 else
67 setText( 3, mt.description() ); 67 setText( 3, mt.description() );
68 68
@@ -70,15 +70,15 @@ FileItem::FileItem( QListView * parent, const QFileInfo & fi )
70 if( fi.isDir() ){ 70 if( fi.isDir() ){
71 if( !QDir( fi.filePath() ).isReadable() ) 71 if( !QDir( fi.filePath() ).isReadable() )
72 pm = Resource::loadPixmap( "lockedfolder" ); 72 pm = Resource::loadPixmap( "lockedfolder" );
73 else 73 else
74 pm = Resource::loadPixmap( "folder" ); 74 pm = Resource::loadPixmap( "folder" );
75 } 75 }
76 else if( !fi.isReadable() ) 76 else if( !fi.isReadable() )
77 pm = Resource::loadPixmap( "locked" ); 77 pm = Resource::loadPixmap( "locked" );
78 else if( isLib() ) 78 else if( isLib() )
79 pm = Resource::loadPixmap( "library" ); 79 pm = Resource::loadPixmap( "library" );
80 else 80 else
81 pm = mt.pixmap(); 81 pm = mt.pixmap();
82 if ( pm.isNull() ) 82 if ( pm.isNull() )
83 pm = Resource::loadPixmap("UnknownDocument-14"); 83 pm = Resource::loadPixmap("UnknownDocument-14");
84 setPixmap(0,pm); 84 setPixmap(0,pm);
@@ -91,9 +91,9 @@ QString FileItem::sizeString( unsigned int s )
91 if ( size > 1024 * 1024 * 1024 ) 91 if ( size > 1024 * 1024 * 1024 )
92 return QString().sprintf( "%.1f", size / ( 1024 * 1024 * 1024 ) ) + "G"; 92 return QString().sprintf( "%.1f", size / ( 1024 * 1024 * 1024 ) ) + "G";
93 else if ( size > 1024 * 1024 ) 93 else if ( size > 1024 * 1024 )
94 return QString().sprintf( "%.1f", size / ( 1024 * 1024 ) ) + "M"; 94 return QString().sprintf( "%.1f", size / ( 1024 * 1024 ) ) + "M";
95 else if ( size > 1024 ) 95 else if ( size > 1024 )
96 return QString().sprintf( "%.1f", size / ( 1024 ) ) + "K"; 96 return QString().sprintf( "%.1f", size / ( 1024 ) ) + "K";
97 else 97 else
98 return QString::number( size ) + "B"; 98 return QString::number( size ) + "B";
99} 99}
@@ -107,13 +107,13 @@ QString FileItem::key( int column, bool ascending ) const
107 if( (column == 0) && fileInfo.isDir() ){ // Sort by name 107 if( (column == 0) && fileInfo.isDir() ){ // Sort by name
108 // We want the directories to appear at the top of the list 108 // We want the directories to appear at the top of the list
109 tmp = (char) 0; 109 tmp = (char) 0;
110 return (tmp + text( column ).lower()); 110 return (tmp + text( column ).lower());
111 } 111 }
112 else if( column == 2 ) { // Sort by date 112 else if( column == 2 ) { // Sort by date
113 QDateTime epoch( QDate( 1980, 1, 1 ) ); 113 QDateTime epoch( QDate( 1980, 1, 1 ) );
114 tmp.sprintf( "%08d", epoch.secsTo( fileInfo.lastModified() ) ); 114 tmp.sprintf( "%08d", epoch.secsTo( fileInfo.lastModified() ) );
115 return tmp; 115 return tmp;
116 } 116 }
117 else if( column == 1 ) { // Sort by size 117 else if( column == 1 ) { // Sort by size
118 return tmp.sprintf( "%08d", fileInfo.size() ); 118 return tmp.sprintf( "%08d", fileInfo.size() );
119 } 119 }
@@ -127,7 +127,7 @@ bool FileItem::isLib()
127 if( !qstrncmp("lib", fileInfo.baseName(), 3) && 127 if( !qstrncmp("lib", fileInfo.baseName(), 3) &&
128 ( fileInfo.extension().contains( "so" ) || 128 ( fileInfo.extension().contains( "so" ) ||
129 fileInfo.extension().contains( "a" ) ) ) 129 fileInfo.extension().contains( "a" ) ) )
130 return TRUE; 130 return TRUE;
131 else 131 else
132 return FALSE; 132 return FALSE;
133} 133}
@@ -147,6 +147,6 @@ bool FileItem::rename( const QString & name )
147 if ( name.isEmpty() ) 147 if ( name.isEmpty() )
148 return FALSE; 148 return FALSE;
149 149
150 if ( name.contains( QRegExp("[/\\$\"\'\\*\\?]") ) ) 150 if ( name.contains( QRegExp("[/\\$\"\'\\*\\?]") ) )
151 return FALSE; 151 return FALSE;
152 152
@@ -156,5 +156,5 @@ bool FileItem::rename( const QString & name )
156 if ( ::rename( (const char *) oldpath, (const char *) newpath ) != 0 ) 156 if ( ::rename( (const char *) oldpath, (const char *) newpath ) != 0 )
157 return FALSE; 157 return FALSE;
158 else 158 else
159 return TRUE; 159 return TRUE;
160} 160}
@@ -165,3 +165,3 @@ bool FileItem::rename( const QString & name )
165FileView::FileView( const QString & dir, QWidget * parent, 165FileView::FileView( const QString & dir, QWidget * parent,
166 const char * name ) 166 const char * name )
167 : QListView( parent, name ), 167 : QListView( parent, name ),
@@ -188,5 +188,5 @@ FileView::FileView( const QString & dir, QWidget * parent,
188 connect( this, SIGNAL( clicked( QListViewItem * )), 188 connect( this, SIGNAL( clicked( QListViewItem * )),
189 SLOT( itemClicked( QListViewItem * )) ); 189 SLOT( itemClicked( QListViewItem * )) );
190 connect( this, SIGNAL( doubleClicked( QListViewItem * )), 190 connect( this, SIGNAL( doubleClicked( QListViewItem * )),
191 SLOT( itemDblClicked( QListViewItem * )) ); 191 SLOT( itemDblClicked( QListViewItem * )) );
192 connect( this, SIGNAL( selectionChanged() ), SLOT( cancelMenuTimer() ) ); 192 connect( this, SIGNAL( selectionChanged() ), SLOT( cancelMenuTimer() ) );
@@ -212,5 +212,5 @@ void FileView::setDir( const QString & dir )
212 if ( dir.startsWith( "/dev" ) ) { 212 if ( dir.startsWith( "/dev" ) ) {
213 QMessageBox::warning( this, tr( "File Manager" ), 213 QMessageBox::warning( this, tr( "File Manager" ),
214 tr( "Can't show /dev/ directory." ), tr( "&Ok" ) ); 214 tr( "Can't show /dev/ directory." ), tr( "&Ok" ) );
215 return; 215 return;
216 } 216 }
@@ -230,3 +230,3 @@ void FileView::generateDir( const QString & dir )
230 d.setSorting( QDir::Name | QDir::DirsFirst | QDir::IgnoreCase | 230 d.setSorting( QDir::Name | QDir::DirsFirst | QDir::IgnoreCase |
231 QDir::Reversed ); 231 QDir::Reversed );
232 232
@@ -238,8 +238,8 @@ void FileView::generateDir( const QString & dir )
238 while( (fi = it.current()) ){ 238 while( (fi = it.current()) ){
239 if( (fi->fileName() == ".") || (fi->fileName() == "..") ){ 239 if( (fi->fileName() == ".") || (fi->fileName() == "..") ){
240 ++it; 240 ++it;
241 continue; 241 continue;
242 } 242 }
243 (void) new FileItem( (QListView *) this, *fi ); 243 (void) new FileItem( (QListView *) this, *fi );
244 ++it; 244 ++it;
245 } 245 }
@@ -258,5 +258,5 @@ void FileView::rename()
258 if( ( pm = itemToRename->pixmap( 0 ) ) == NULL ) 258 if( ( pm = itemToRename->pixmap( 0 ) ) == NULL )
259 pmw = 0; 259 pmw = 0;
260 else 260 else
261 pmw = pm->width(); 261 pmw = pm->width();
262 262
@@ -271,5 +271,5 @@ void FileView::rename()
271 if( le == NULL ){ 271 if( le == NULL ){
272 le = new InlineEdit( this ); 272 le = new InlineEdit( this );
273 le->setFrame( FALSE ); 273 le->setFrame( FALSE );
274 connect( le, SIGNAL( lostFocus() ), SLOT( endRenaming() ) ); 274 connect( le, SIGNAL( lostFocus() ), SLOT( endRenaming() ) );
275 } 275 }
@@ -292,14 +292,14 @@ void FileView::endRenaming()
292 if( le && itemToRename ){ 292 if( le && itemToRename ){
293 le->hide(); 293 le->hide();
294 setSelected( itemToRename, selected ); 294 setSelected( itemToRename, selected );
295 295
296 if( !itemToRename->rename( le->text() ) ){ 296 if( !itemToRename->rename( le->text() ) ){
297 QMessageBox::warning( this, tr( "Rename file" ), 297 QMessageBox::warning( this, tr( "Rename file" ),
298 tr( "Rename failed!" ), tr( "&Ok" ) ); 298 tr( "Rename failed!" ), tr( "&Ok" ) );
299 } else { 299 } else {
300 updateDir(); 300 updateDir();
301 } 301 }
302 itemToRename = NULL; 302 itemToRename = NULL;
303 horizontalScrollBar()->setEnabled( TRUE ); 303 horizontalScrollBar()->setEnabled( TRUE );
304 verticalScrollBar()->setEnabled( TRUE ); 304 verticalScrollBar()->setEnabled( TRUE );
305 } 305 }
@@ -320,6 +320,6 @@ void FileView::copy()
320 while( i ){ 320 while( i ){
321 if( i->isSelected() /*&& !i->isDir()*/ ){ 321 if( i->isSelected() /*&& !i->isDir()*/ ){
322 flist += i->getFilePath(); 322 flist += i->getFilePath();
323 } 323 }
324 i = (FileItem *) i->nextSibling(); 324 i = (FileItem *) i->nextSibling();
325 } 325 }
@@ -335,45 +335,45 @@ void FileView::paste()
335 for ( QStringList::Iterator it = flist.begin(); it != flist.end(); ++it ) { 335 for ( QStringList::Iterator it = flist.begin(); it != flist.end(); ++it ) {
336 basename = (*it).mid((*it).findRev("/") + 1, (*it).length()); 336 basename = (*it).mid((*it).findRev("/") + 1, (*it).length());
337 337
338 dest = cd + "/" + basename; 338 dest = cd + "/" + basename;
339 if( QFile( dest ).exists() ){ 339 if( QFile( dest ).exists() ){
340 i = 1; 340 i = 1;
341 dest = cd + "/Copy of " + basename; 341 dest = cd + "/Copy of " + basename;
342 while( QFile( dest ).exists() ){ 342 while( QFile( dest ).exists() ){
343 dest.sprintf( "%s/Copy (%d) of %s", (const char *) cd, i++, 343 dest.sprintf( "%s/Copy (%d) of %s", (const char *) cd, i++,
344 (const char *) basename ); 344 (const char *) basename );
345 } 345 }
346 } 346 }
347 347
348 // 348 //
349 // Copy a directory recursively using the "cp" command - 349 // Copy a directory recursively using the "cp" command -
350 // may have to be changed 350 // may have to be changed
351 // 351 //
352 if( QFileInfo( (*it) ).isDir() ){ 352 if( QFileInfo( (*it) ).isDir() ){
353 cmd = "/bin/cp -fpR \"" + (*it) +"\" " + "\"" + dest + "\""; 353 cmd = "/bin/cp -fpR \"" + (*it) +"\" " + "\"" + dest + "\"";
354 err = system( (const char *) cmd ); 354 err = system( (const char *) cmd );
355 } else if( !copyFile( dest, (*it) ) ){ 355 } else if( !copyFile( dest, (*it) ) ){
356 err = -1; 356 err = -1;
357 } else { 357 } else {
358 err = 0; 358 err = 0;
359 } 359 }
360 360
361 if ( err != 0 ) { 361 if ( err != 0 ) {
362 QMessageBox::warning( this, tr("Paste file"), tr("Paste failed!"), 362 QMessageBox::warning( this, tr("Paste file"), tr("Paste failed!"),
363 tr("Ok") ); 363 tr("Ok") );
364 break; 364 break;
365 } else { 365 } else {
366 updateDir(); 366 updateDir();
367 QListViewItem * i = firstChild(); 367 QListViewItem * i = firstChild();
368 basename = dest.mid( dest.findRev("/") + 1, dest.length() ); 368 basename = dest.mid( dest.findRev("/") + 1, dest.length() );
369 369
370 while( i ){ 370 while( i ){
371 if( i->text(0) == basename ){ 371 if( i->text(0) == basename ){
372 setCurrentItem( i ); 372 setCurrentItem( i );
373 ensureItemVisible( i ); 373 ensureItemVisible( i );
374 break; 374 break;
375 } 375 }
376 i = i->nextSibling(); 376 i = i->nextSibling();
377 } 377 }
378 } 378 }
379 } 379 }
@@ -392,17 +392,17 @@ bool FileView::copyFile( const QString & dest, const QString & src )
392 if( s.open( IO_ReadOnly | IO_Raw ) && 392 if( s.open( IO_ReadOnly | IO_Raw ) &&
393 d.open( IO_WriteOnly | IO_Raw ) ) 393 d.open( IO_WriteOnly | IO_Raw ) )
394 { 394 {
395 while( (bytesRead = s.readBlock( bf, sizeof( bf ) )) == 395 while( (bytesRead = s.readBlock( bf, sizeof( bf ) )) ==
396 sizeof( bf ) ) 396 sizeof( bf ) )
397 { 397 {
398 if( d.writeBlock( bf, sizeof( bf ) ) != sizeof( bf ) ){ 398 if( d.writeBlock( bf, sizeof( bf ) ) != sizeof( bf ) ){
399 success = FALSE; 399 success = FALSE;
400 break; 400 break;
401 } 401 }
402 } 402 }
403 if( success && (bytesRead > 0) ){ 403 if( success && (bytesRead > 0) ){
404 d.writeBlock( bf, bytesRead ); 404 d.writeBlock( bf, bytesRead );
405 } 405 }
406 } else { 406 } else {
407 success = FALSE; 407 success = FALSE;
408 } 408 }
@@ -411,3 +411,3 @@ bool FileView::copyFile( const QString & dest, const QString & src )
411 if( stat( (const char *) src, &status ) == 0 ){ 411 if( stat( (const char *) src, &status ) == 0 ){
412 chmod( (const char *) dest, status.st_mode ); 412 chmod( (const char *) dest, status.st_mode );
413 } 413 }
@@ -423,9 +423,9 @@ void FileView::cut()
423 QString cmd, dest, basename, cd = "/tmp/qpemoving"; 423 QString cmd, dest, basename, cd = "/tmp/qpemoving";
424 QStringList newflist; 424 QStringList newflist;
425 newflist.clear(); 425 newflist.clear();
426 426
427 cmd = "rm -rf " + cd; 427 cmd = "rm -rf " + cd;
428 system ( (const char *) cmd ); 428 system ( (const char *) cmd );
429 cmd = "mkdir " + cd; 429 cmd = "mkdir " + cd;
430 system( (const char *) cmd ); 430 system( (const char *) cmd );
431 431
@@ -450,3 +450,3 @@ void FileView::cut()
450 450
451 newflist += dest; 451 newflist += dest;
452 452
@@ -475,4 +475,4 @@ void FileView::cut()
475 475
476 // update the filelist to point to tmp dir so paste works nicely 476 // update the filelist to point to tmp dir so paste works nicely
477 flist = newflist; 477 flist = newflist;
478} 478}
@@ -489,6 +489,6 @@ void FileView::del()
489 while( i ){ 489 while( i ){
490 if( i->isSelected() ){ 490 if( i->isSelected() ){
491 fl += i->getFilePath(); 491 fl += i->getFilePath();
492 } 492 }
493 i = (FileItem *) i->nextSibling(); 493 i = (FileItem *) i->nextSibling();
494 } 494 }
@@ -497,17 +497,17 @@ void FileView::del()
497 if( QMessageBox::warning( this, tr("Delete"), tr("Are you sure?"), 497 if( QMessageBox::warning( this, tr("Delete"), tr("Are you sure?"),
498 tr("Yes"), tr("No") ) == 0) 498 tr("Yes"), tr("No") ) == 0)
499 { 499 {
500 // 500 //
501 // Dependant upon the "rm" command - will probably have to be replaced 501 // Dependant upon the "rm" command - will probably have to be replaced
502 // 502 //
503 for ( QStringList::Iterator it = fl.begin(); it != fl.end(); ++it ) { 503 for ( QStringList::Iterator it = fl.begin(); it != fl.end(); ++it ) {
504 cmd = "/bin/rm -rf \"" + (*it) + "\""; 504 cmd = "/bin/rm -rf \"" + (*it) + "\"";
505 err = system( (const char *) cmd ); 505 err = system( (const char *) cmd );
506 if ( err != 0 ) { 506 if ( err != 0 ) {
507 QMessageBox::warning( this, tr("Delete"), tr("Delete failed!"), 507 QMessageBox::warning( this, tr("Delete"), tr("Delete failed!"),
508 tr("Ok") ); 508 tr("Ok") );
509 break; 509 break;
510 } 510 }
511 } 511 }
512 updateDir(); 512 updateDir();
513 } 513 }
@@ -522,3 +522,3 @@ void FileView::newFolder()
522 while( QFile( nd ).exists() ){ 522 while( QFile( nd ).exists() ){
523 nd.sprintf( "%s/NewFolder (%d)", (const char *) currentDir, t++ ); 523 nd.sprintf( "%s/NewFolder (%d)", (const char *) currentDir, t++ );
524 } 524 }
@@ -526,6 +526,6 @@ void FileView::newFolder()
526 if( mkdir( (const char *) nd, 0777 ) != 0){ 526 if( mkdir( (const char *) nd, 0777 ) != 0){
527 QMessageBox::warning( this, tr( "New folder" ), 527 QMessageBox::warning( this, tr( "New folder" ),
528 tr( "Folder creation failed!" ), 528 tr( "Folder creation failed!" ),
529 tr( "Ok" ) ); 529 tr( "Ok" ) );
530 return; 530 return;
531 } 531 }
@@ -536,8 +536,8 @@ void FileView::newFolder()
536 while( i ){ 536 while( i ){
537 if( i->isDir() && ( i->getFilePath() == nd ) ){ 537 if( i->isDir() && ( i->getFilePath() == nd ) ){
538 setCurrentItem( i ); 538 setCurrentItem( i );
539 rename(); 539 rename();
540 break; 540 break;
541 } 541 }
542 i = (FileItem *) i->nextSibling(); 542 i = (FileItem *) i->nextSibling();
543 } 543 }
@@ -557,3 +557,3 @@ void FileView::itemClicked( QListViewItem * i)
557 if( t->isDir() ){ 557 if( t->isDir() ){
558 setDir( t->getFilePath() ); 558 setDir( t->getFilePath() );
559 } 559 }
@@ -567,4 +567,4 @@ void FileView::itemDblClicked( QListViewItem * i)
567 if(t->launch() == -1){ 567 if(t->launch() == -1){
568 QMessageBox::warning( this, tr( "Launch Application" ), 568 QMessageBox::warning( this, tr( "Launch Application" ),
569 tr( "Launch failed!" ), tr( "Ok" ) ); 569 tr( "Launch failed!" ), tr( "Ok" ) );
570 } 570 }
@@ -601,3 +601,3 @@ void FileView::cancelMenuTimer()
601 if( menuTimer.isActive() ) 601 if( menuTimer.isActive() )
602 menuTimer.stop(); 602 menuTimer.stop();
603} 603}
@@ -625,3 +625,3 @@ void FileView::showFileMenu()
625 if ( !i ) 625 if ( !i )
626 return; 626 return;
627 627
@@ -630,4 +630,4 @@ void FileView::showFileMenu()
630 if ( !i->isDir() ) { 630 if ( !i->isDir() ) {
631 m->insertItem( tr( "Add to Documents" ), this, SLOT( addToDocuments() ) ); 631 m->insertItem( tr( "Add to Documents" ), this, SLOT( addToDocuments() ) );
632 m->insertSeparator(); 632 m->insertSeparator();
633 } 633 }
@@ -638,11 +638,11 @@ void FileView::showFileMenu()
638 if ( !i->isDir() ) { 638 if ( !i->isDir() ) {
639 if ( app ) 639 if ( app )
640 m->insertItem( app->pixmap(), tr( "Open in " + app->name() ), this, SLOT( run() ) ); 640 m->insertItem( app->pixmap(), tr( "Open in " + app->name() ), this, SLOT( run() ) );
641 else if( i->isExecutable() ) 641 else if( i->isExecutable() )
642 m->insertItem( Resource::loadPixmap( i->text( 0 ) ), tr( "Run" ), this, SLOT( run() ) ); 642 m->insertItem( Resource::loadPixmap( i->text( 0 ) ), tr( "Run" ), this, SLOT( run() ) );
643 643
644 m->insertItem( Resource::loadPixmap( "txt" ), tr( "View as text" ), 644 m->insertItem( Resource::loadPixmap( "txt" ), tr( "View as text" ),
645 this, SLOT( viewAsText() ) ); 645 this, SLOT( viewAsText() ) );
646 646
647 m->insertSeparator(); 647 m->insertSeparator();
648 } 648 }
@@ -651,7 +651,8 @@ void FileView::showFileMenu()
651 m->insertItem( Resource::loadPixmap("cut"), 651 m->insertItem( Resource::loadPixmap("cut"),
652 tr( "Cut" ), this, SLOT( cut() ) ); 652 tr( "Cut" ), this, SLOT( cut() ) );
653 m->insertItem( Resource::loadPixmap("copy"), 653 m->insertItem( Resource::loadPixmap("copy"),
654 tr( "Copy" ), this, SLOT( copy() ) ); 654 tr( "Copy" ), this, SLOT( copy() ) );
655 m->insertItem( Resource::loadPixmap("paste"), 655 m->insertItem( Resource::loadPixmap("paste"),
656 tr( "Paste" ), this, SLOT( paste() ) ); 656 tr( "Paste" ), this, SLOT( paste() ) );
657 m->insertItem( tr( "change permissions" ), this, SLOT( chPerm() ) );
657 m->insertItem( tr( "Delete" ), this, SLOT( del() ) ); 658 m->insertItem( tr( "Delete" ), this, SLOT( del() ) );
@@ -668,3 +669,3 @@ void FileView::showFileMenu()
668FileBrowser::FileBrowser( QWidget * parent, 669FileBrowser::FileBrowser( QWidget * parent,
669 const char * name, WFlags f ) : 670 const char * name, WFlags f ) :
670 QMainWindow( parent, name, f ) 671 QMainWindow( parent, name, f )
@@ -675,3 +676,3 @@ FileBrowser::FileBrowser( QWidget * parent,
675FileBrowser::FileBrowser( const QString & dir, QWidget * parent, 676FileBrowser::FileBrowser( const QString & dir, QWidget * parent,
676 const char * name, WFlags f ) : 677 const char * name, WFlags f ) :
677 QMainWindow( parent, name, f ) 678 QMainWindow( parent, name, f )
@@ -714,3 +715,3 @@ void FileBrowser::init(const QString & dir)
714 lastAction = new QAction( tr("Previous dir"), Resource::loadIconSet( "back" ), 715 lastAction = new QAction( tr("Previous dir"), Resource::loadIconSet( "back" ),
715 QString::null, 0, this, 0 ); 716 QString::null, 0, this, 0 );
716 connect( lastAction, SIGNAL( activated() ), fileView, SLOT( lastDir() ) ); 717 connect( lastAction, SIGNAL( activated() ), fileView, SLOT( lastDir() ) );
@@ -720,3 +721,3 @@ void FileBrowser::init(const QString & dir)
720 upAction = new QAction( tr("Parent dir"), Resource::loadIconSet( "up" ), 721 upAction = new QAction( tr("Parent dir"), Resource::loadIconSet( "up" ),
721 QString::null, 0, this, 0 ); 722 QString::null, 0, this, 0 );
722 connect( upAction, SIGNAL( activated() ), fileView, SLOT( parentDir() ) ); 723 connect( upAction, SIGNAL( activated() ), fileView, SLOT( parentDir() ) );
@@ -725,3 +726,3 @@ void FileBrowser::init(const QString & dir)
725 QAction *a = new QAction( tr("New folder"), Resource::loadPixmap( "newfolder" ), 726 QAction *a = new QAction( tr("New folder"), Resource::loadPixmap( "newfolder" ),
726 QString::null, 0, this, 0 ); 727 QString::null, 0, this, 0 );
727 connect( a, SIGNAL( activated() ), fileView, SLOT( newFolder() ) ); 728 connect( a, SIGNAL( activated() ), fileView, SLOT( newFolder() ) );
@@ -730,3 +731,3 @@ void FileBrowser::init(const QString & dir)
730 a = new QAction( tr("Cut"), Resource::loadPixmap( "cut" ), 731 a = new QAction( tr("Cut"), Resource::loadPixmap( "cut" ),
731 QString::null, 0, this, 0 ); 732 QString::null, 0, this, 0 );
732 connect( a, SIGNAL( activated() ), fileView, SLOT( cut() ) ); 733 connect( a, SIGNAL( activated() ), fileView, SLOT( cut() ) );
@@ -735,3 +736,3 @@ void FileBrowser::init(const QString & dir)
735 a = new QAction( tr("Copy"), Resource::loadPixmap( "copy" ), 736 a = new QAction( tr("Copy"), Resource::loadPixmap( "copy" ),
736 QString::null, 0, this, 0 ); 737 QString::null, 0, this, 0 );
737 connect( a, SIGNAL( activated() ), fileView, SLOT( copy() ) ); 738 connect( a, SIGNAL( activated() ), fileView, SLOT( copy() ) );
@@ -740,3 +741,3 @@ void FileBrowser::init(const QString & dir)
740 pasteAction = new QAction( tr("Paste"), Resource::loadPixmap( "paste" ), 741 pasteAction = new QAction( tr("Paste"), Resource::loadPixmap( "paste" ),
741 QString::null, 0, this, 0 ); 742 QString::null, 0, this, 0 );
742 connect( pasteAction, SIGNAL( activated() ), fileView, SLOT( paste() ) ); 743 connect( pasteAction, SIGNAL( activated() ), fileView, SLOT( paste() ) );
@@ -750,3 +751,3 @@ void FileBrowser::init(const QString & dir)
750 connect( pcmciaChannel, SIGNAL(received(const QCString &, const QByteArray &)), 751 connect( pcmciaChannel, SIGNAL(received(const QCString &, const QByteArray &)),
751 this, SLOT(pcmciaMessage( const QCString &, const QByteArray &)) ); 752 this, SLOT(pcmciaMessage( const QCString &, const QByteArray &)) );
752} 753}
@@ -756,3 +757,3 @@ void FileBrowser::pcmciaMessage( const QCString &msg, const QByteArray &)
756 if ( msg == "mtabChanged()" ) { 757 if ( msg == "mtabChanged()" ) {
757 // ## Only really needed if current dir is on a card 758 // ## Only really needed if current dir is on a card
758 fileView->updateDir(); 759 fileView->updateDir();
@@ -768,5 +769,5 @@ void FileBrowser::dirSelected( int id )
768 while( (j = dirMenu->idAt( i )) != id ){ 769 while( (j = dirMenu->idAt( i )) != id ){
769 dir += dirMenu->text( j ).stripWhiteSpace(); 770 dir += dirMenu->text( j ).stripWhiteSpace();
770 if( dirMenu->text( j ) != "/" ) dir += "/"; 771 if( dirMenu->text( j ) != "/" ) dir += "/";
771 i++; 772 i++;
772 } 773 }
@@ -787,5 +788,5 @@ void FileBrowser::updateDirMenu()
787 for ( QStringList::Iterator it = l.begin(); it != l.end(); ++it ) { 788 for ( QStringList::Iterator it = l.begin(); it != l.end(); ++it ) {
788 spc.fill( ' ', i++); 789 spc.fill( ' ', i++);
789 dirMenu->insertItem( spc + (*it), this, 790 dirMenu->insertItem( spc + (*it), this,
790 SLOT( dirSelected(int) ) ); 791 SLOT( dirSelected(int) ) );
791 } 792 }
@@ -842,9 +843,38 @@ void FileBrowser::updateSorting()
842 if ( sortMenu->isItemChecked( sortMenu->idAt( 0 ) ) ) 843 if ( sortMenu->isItemChecked( sortMenu->idAt( 0 ) ) )
843 sortName(); 844 sortName();
844 else if ( sortMenu->isItemChecked( sortMenu->idAt( 1 ) ) ) 845 else if ( sortMenu->isItemChecked( sortMenu->idAt( 1 ) ) )
845 sortSize(); 846 sortSize();
846 else if ( sortMenu->isItemChecked( sortMenu->idAt( 2 ) ) ) 847 else if ( sortMenu->isItemChecked( sortMenu->idAt( 2 ) ) )
847 sortDate(); 848 sortDate();
848 else 849 else
849 sortType(); 850 sortType();
851}
852
853void FileView::chPerm() {
854 FileItem * i;
855 QStringList fl;
856 QString cmd;
857 int err;
858
859 if((i = (FileItem *) firstChild()) == 0) return;
860
861 while( i ){
862 if( i->isSelected() ){
863 fl += i->getFilePath();
864 }
865 i = (FileItem *) i->nextSibling();
866 }
867 if( fl.count() < 1 ) return;
868 if( QMessageBox::warning( this, tr("Change permissions"), tr("Are you sure?"),
869 tr("Yes"), tr("No") ) == 0) {
870 for ( QStringList::Iterator it = fl.begin(); it != fl.end(); ++it ) {
871 filePermissions *filePerm;
872 filePerm = new filePermissions(this, "Permissions",true,0,(const QString &)(*it));
873 filePerm->exec();
874 if( filePerm)
875 delete filePerm;
876 break;
877 }
878 updateDir();
879 }
850} 880}
diff --git a/noncore/unsupported/filebrowser/filebrowser.h b/noncore/unsupported/filebrowser/filebrowser.h
index 2e9e444..c214dbe 100644
--- a/noncore/unsupported/filebrowser/filebrowser.h
+++ b/noncore/unsupported/filebrowser/filebrowser.h
@@ -56,3 +56,3 @@ public:
56 FileView( const QString & dir, QWidget * parent = 0, 56 FileView( const QString & dir, QWidget * parent = 0,
57 const char * name = 0 ); 57 const char * name = 0 );
58 void setDir( const QString & dir ); 58 void setDir( const QString & dir );
@@ -73,3 +73,3 @@ public slots:
73 void viewAsText(); 73 void viewAsText();
74 74 void chPerm();
75protected: 75protected:
@@ -113,5 +113,5 @@ public:
113 FileBrowser( QWidget * parent = 0, 113 FileBrowser( QWidget * parent = 0,
114 const char * name = 0, WFlags f = 0 ); 114 const char * name = 0, WFlags f = 0 );
115 FileBrowser( const QString & dir, QWidget * parent = 0, 115 FileBrowser( const QString & dir, QWidget * parent = 0,
116 const char * name = 0, WFlags f = 0 ); 116 const char * name = 0, WFlags f = 0 );
117private: 117private:
@@ -122,4 +122,4 @@ private:
122 QAction * pasteAction; 122 QAction * pasteAction;
123 QAction*lastAction; 123 QAction *lastAction;
124 QAction*upAction; 124 QAction *upAction;
125 125
diff --git a/noncore/unsupported/filebrowser/filebrowser.pro b/noncore/unsupported/filebrowser/filebrowser.pro
index 5d8f140..65e51a5 100644
--- a/noncore/unsupported/filebrowser/filebrowser.pro
+++ b/noncore/unsupported/filebrowser/filebrowser.pro
@@ -3,7 +3,4 @@ CONFIG = qt warn_on release
3 DESTDIR = $(OPIEDIR)/bin 3 DESTDIR = $(OPIEDIR)/bin
4 HEADERS = inlineedit.h \ 4 HEADERS = inlineedit.h filebrowser.h filePermissions.h
5 filebrowser.h 5 SOURCES = filebrowser.cpp inlineedit.cpp filePermissions.cpp main.cpp
6 SOURCES = filebrowser.cpp \
7 inlineedit.cpp \
8 main.cpp
9INCLUDEPATH += $(OPIEDIR)/include 6INCLUDEPATH += $(OPIEDIR)/include