summaryrefslogtreecommitdiff
path: root/library/lnkproperties.cpp
Unidiff
Diffstat (limited to 'library/lnkproperties.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--library/lnkproperties.cpp296
1 files changed, 145 insertions, 151 deletions
diff --git a/library/lnkproperties.cpp b/library/lnkproperties.cpp
index c020328..983c677 100644
--- a/library/lnkproperties.cpp
+++ b/library/lnkproperties.cpp
@@ -1,5 +1,5 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved. 2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of Qtopia Environment. 4** This file is part of the Qtopia Environment.
5** 5**
@@ -31,3 +31,5 @@
31#include <qpe/categorywidget.h> 31#include <qpe/categorywidget.h>
32#ifdef QWS
32#include <qpe/qcopenvelope_qws.h> 33#include <qpe/qcopenvelope_qws.h>
34#endif
33#include <qpe/filemanager.h> 35#include <qpe/filemanager.h>
@@ -56,2 +58,4 @@ LnkProperties::LnkProperties( AppLnk* l, QWidget* parent )
56{ 58{
59 setCaption( tr("Properties") );
60
57 QVBoxLayout *vbox = new QVBoxLayout( this ); 61 QVBoxLayout *vbox = new QVBoxLayout( this );
@@ -63,6 +67,6 @@ LnkProperties::LnkProperties( AppLnk* l, QWidget* parent )
63 if ( l->type().isEmpty() ) { 67 if ( l->type().isEmpty() ) {
64 d->type->hide(); 68 d->type->hide();
65 d->typeLabel->hide(); 69 d->typeLabel->hide();
66 } else { 70 } else {
67 d->type->setText( l->type() ); 71 d->type->setText( l->type() );
68 } 72 }
@@ -70,6 +74,6 @@ LnkProperties::LnkProperties( AppLnk* l, QWidget* parent )
70 if ( l->comment().isEmpty() ) { 74 if ( l->comment().isEmpty() ) {
71 d->comment->hide(); 75 d->comment->hide();
72 d->commentLabel->hide(); 76 d->commentLabel->hide();
73 } else { 77 } else {
74 d->comment->setText( l->comment() ); 78 d->comment->setText( l->comment() );
75 } 79 }
@@ -78,44 +82,42 @@ LnkProperties::LnkProperties( AppLnk* l, QWidget* parent )
78 if ( lnk->type().contains('/') ) { // A document? (#### better predicate needed) 82 if ( lnk->type().contains('/') ) { // A document? (#### better predicate needed)
79 connect(d->unlink,SIGNAL(clicked()),this,SLOT(unlinkLnk())); 83 connect(d->unlink,SIGNAL(clicked()),this,SLOT(unlinkLnk()));
80 connect(d->duplicate,SIGNAL(clicked()),this,SLOT(duplicateLnk())); 84 connect(d->duplicate,SIGNAL(clicked()),this,SLOT(duplicateLnk()));
81 connect(d->delicon,SIGNAL(clicked()),this,SLOT(unlinkIcon())); 85
82 86 d->docname->setReadOnly( FALSE );
83 d->docname->setReadOnly( FALSE ); 87 d->preload->hide();
84 d->preload->hide(); 88 d->spacer->hide();
85 d->spacer->hide(); 89
86 90 // ### THIS MUST GO, FIX WIERD BUG in QLAYOUT
87 // ### THIS MUST GO, FIX WIERD BUG in QLAYOUT 91 d->categoryEdit->kludge();
88 d->categoryEdit->kludge(); 92
89 93 d->categoryEdit->setCategories( lnk->categories(),
90 d->categoryEdit->setCategories( lnk->categories(), 94 "Document View",
91 "Document View", 95 tr("Document View") );
92 tr("Document View") ); 96 setupLocations();
93 setupLocations();
94 } else { 97 } else {
95 d->unlink->hide(); 98 d->unlink->hide();
96 d->duplicate->hide(); 99 d->duplicate->hide();
97 d->beam->hide(); 100 d->beam->hide();
98 d->hline->hide(); 101 d->hline->hide();
99 d->locationLabel->hide(); 102 d->locationLabel->hide();
100 d->locationCombo->hide(); 103 d->locationCombo->hide();
101 104
102 // Can't edit categories, since the app .desktop files are global, 105 // Can't edit categories, since the app .desktop files are global,
103 // possibly read-only. 106 // possibly read-only.
104 d->categoryEdit->hide(); 107 d->categoryEdit->hide();
105 108
106 d->docname->setReadOnly( TRUE ); 109 d->docname->setReadOnly( TRUE );
107 110
108 if ( l->property("CanFastload") == "0" ) 111 if ( l->property("CanFastload") == "0" )
109 d->preload->hide(); 112 d->preload->hide();
110 113
111 Config cfg("Launcher"); 114 Config cfg("Launcher");
112 cfg.setGroup("Preload"); 115 cfg.setGroup("Preload");
113 QStringList apps = cfg.readListEntry("Apps",','); 116 QStringList apps = cfg.readListEntry("Apps",',');
114 d->preload->setChecked( apps.contains(l->exec()) ); 117 d->preload->setChecked( apps.contains(l->exec()) );
115 if ( Global::isBuiltinCommand(lnk->exec()) ) 118 if ( Global::isBuiltinCommand(lnk->exec()) )
116 d->preload->hide(); // builtins are always fast 119 d->preload->hide(); // builtins are always fast
117 120
118 currentLocation = 0; // apps not movable (yet) 121 currentLocation = 0; // apps not movable (yet)
119 } 122 }
120 setCaption( l->file());
121} 123}
@@ -129,27 +131,8 @@ void LnkProperties::unlinkLnk()
129 if ( QPEMessageBox::confirmDelete( this, tr("Delete"), lnk->name() ) ) { 131 if ( QPEMessageBox::confirmDelete( this, tr("Delete"), lnk->name() ) ) {
130 if ( QFile::exists(lnk->file()) ) 132 lnk->removeFiles();
131 lnk->removeFiles(); 133 if ( QFile::exists(lnk->file()) ) {
132 else 134 QMessageBox::warning( this, tr("Delete"), tr("File deletion failed.") );
133 QMessageBox::warning( this, tr("Delete"), tr("File does not exist.") ); 135 } else {
134 if ( QFile::exists(lnk->file()) ) { 136 reject();
135 QMessageBox::warning( this, tr("Delete"), tr("File deletion failed.") ); 137 }
136 } else {
137 reject();
138 }
139 }
140}
141
142
143/*
144 * remove only the link from documents, not also the file
145 */
146void LnkProperties::unlinkIcon()
147{
148 if ( QPEMessageBox::confirmDelete( this, tr("Delete Icon and leave file"), lnk->name() ) ) {
149 lnk->removeLinkFile();
150 if ( QFile::exists(lnk->linkFile()) ) {
151 QMessageBox::warning( this, tr("Delete"), tr("Icon deletion failed.") );
152 } else {
153 reject();
154 }
155 } 138 }
@@ -171,30 +154,35 @@ void LnkProperties::setupLocations()
171 for ( ; it.current(); ++it ) { 154 for ( ; it.current(); ++it ) {
172 // we add 10k to the file size so we are sure we can also save the desktop file 155 // we add 10k to the file size so we are sure we can also save the desktop file
173 if ( (*it)->availBlocks() * (*it)->blockSize() > fileSize + 10000 ) { 156 if ( (ulong)(*it)->availBlocks() * (ulong)(*it)->blockSize() > (ulong)fileSize + 10000 ) {
174 if ( (*it)->isRemovable() || 157 if ( (*it)->isRemovable() ||
175 (*it)->disk() == "/dev/mtdblock1" || 158 (*it)->disk() == "/dev/mtdblock1" ||
176 (*it)->disk() == "/dev/mtdblock/1" || (*it)->disk().left(13) == "/dev/mtdblock" || 159 (*it)->disk() == "/dev/mtdblock/1" ||
177 (*it)->disk() == "/dev/mtdblock6" || (*it)->disk() == "tmpfs" ) { 160 (*it)->disk().left(13) == "/dev/mtdblock" ||
178 d->locationCombo->insertItem( (*it)->name(), index ); 161 (*it)->disk() == "/dev/mtdblock6" ||
179 locations.append( ((*it)->isRemovable() || (*it)->disk() == "/dev/mtdblock6" || (*it)->disk() == "tmpfs" ? (*it)->path() : homeDir) ); 162 (*it)->disk() == "tmpfs" ) {
180 if ( lnk->file().contains( (*it)->path() ) ) { 163 d->locationCombo->insertItem( (*it)->name(), index );
181 d->locationCombo->setCurrentItem( index ); 164 locations.append( ( ((*it)->isRemovable() ||
182 currentLocation = index; 165 (*it)->disk() == "/dev/mtdblock6" ||
183 } 166 (*it)->disk() == "tmpfs" )
184 index++; 167 ? (*it)->path() : homeDir) );
185 } else if ( (*it)->name().contains( tr("Hard Disk") ) && 168 if ( lnk->file().contains( (*it)->path() ) ) {
186 homeDir.contains( (*it)->path() ) && 169 d->locationCombo->setCurrentItem( index );
187 (*it)->path().length() > hardDiskHome.length() ) { 170 currentLocation = index;
188 hardDiskHome = (*it)->name(); 171 }
189 hardDiskPath = (*it)->path(); 172 index++;
190 } 173 } else if ( (*it)->name().contains( tr("Hard Disk") ) &&
191 } 174 homeDir.contains( (*it)->path() ) &&
175 (*it)->path().length() > hardDiskHome.length() ) {
176 hardDiskHome = (*it)->name();
177 hardDiskPath = (*it)->path();
178 }
179 }
192 } 180 }
193 if ( !hardDiskHome.isEmpty() ) { 181 if ( !hardDiskHome.isEmpty() ) {
194 d->locationCombo->insertItem( hardDiskHome ); 182 d->locationCombo->insertItem( hardDiskHome );
195 locations.append( hardDiskPath ); 183 locations.append( hardDiskPath );
196 if ( currentLocation == -1 ) { // assume it's the hard disk 184 if ( currentLocation == -1 ) { // assume it's the hard disk
197 d->locationCombo->setCurrentItem( index ); 185 d->locationCombo->setCurrentItem( index );
198 currentLocation = index; 186 currentLocation = index;
199 } 187 }
200 } 188 }
@@ -207,9 +195,9 @@ void LnkProperties::duplicateLnk()
207 if ( d->docname->text() == lnk->name() ) 195 if ( d->docname->text() == lnk->name() )
208 newdoc.setName(tr("Copy of ")+d->docname->text()); 196 newdoc.setName(tr("Copy of ")+d->docname->text());
209 else 197 else
210 newdoc.setName(d->docname->text()); 198 newdoc.setName(d->docname->text());
211 199
212 if ( !copyFile( newdoc ) ) { 200 if ( !copyFile( newdoc ) ) {
213 QMessageBox::warning( this, tr("Duplicate"), tr("File copy failed.") ); 201 QMessageBox::warning( this, tr("Duplicate"), tr("File copy failed.") );
214 return; 202 return;
215 } 203 }
@@ -224,4 +212,4 @@ bool LnkProperties::moveLnk()
224 if ( !copyFile( newdoc ) ) { 212 if ( !copyFile( newdoc ) ) {
225 QMessageBox::warning( this, tr("Details"), tr("Moving Document failed.") ); 213 QMessageBox::warning( this, tr("Details"), tr("Moving Document failed.") );
226 return FALSE; 214 return FALSE;
227 } 215 }
@@ -237,2 +225,4 @@ void LnkProperties::beamLnk()
237 DocLnk doc( *((DocLnk *)lnk) ); 225 DocLnk doc( *((DocLnk *)lnk) );
226 doc.setName(d->docname->text());
227 reject();
238 ir.send( doc, doc.comment() ); 228 ir.send( doc, doc.comment() );
@@ -246,3 +236,3 @@ bool LnkProperties::copyFile( DocLnk &newdoc )
246 if ( extnPos > 0 ) 236 if ( extnPos > 0 )
247 fileExtn = lnk->file().mid( extnPos ); 237 fileExtn = lnk->file().mid( extnPos );
248 238
@@ -252,11 +242,11 @@ bool LnkProperties::copyFile( DocLnk &newdoc )
252 QString fn = locations[ d->locationCombo->currentItem() ] 242 QString fn = locations[ d->locationCombo->currentItem() ]
253 + "/Documents/" + newdoc.type() + "/" + safename; 243 + "/Documents/" + newdoc.type() + "/" + safename;
254 if ( QFile::exists(fn + fileExtn) || QFile::exists(fn + linkExtn) ) { 244 if ( QFile::exists(fn + fileExtn) || QFile::exists(fn + linkExtn) ) {
255 int n=1; 245 int n=1;
256 QString nn = fn + "_" + QString::number(n); 246 QString nn = fn + "_" + QString::number(n);
257 while ( QFile::exists(nn+fileExtn) || QFile::exists(nn+linkExtn) ) { 247 while ( QFile::exists(nn+fileExtn) || QFile::exists(nn+linkExtn) ) {
258 n++; 248 n++;
259 nn = fn + "_" + QString::number(n); 249 nn = fn + "_" + QString::number(n);
260 } 250 }
261 fn = nn; 251 fn = nn;
262 } 252 }
@@ -268,3 +258,3 @@ bool LnkProperties::copyFile( DocLnk &newdoc )
268 if ( !fm.copyFile( *lnk, newdoc ) ) 258 if ( !fm.copyFile( *lnk, newdoc ) )
269 return FALSE; 259 return FALSE;
270 return TRUE; 260 return TRUE;
@@ -275,38 +265,42 @@ void LnkProperties::done(int ok)
275 if ( ok ) { 265 if ( ok ) {
276 bool changed=FALSE; 266 bool changed=FALSE;
277 if ( lnk->name() != d->docname->text() ) { 267 if ( lnk->name() != d->docname->text() ) {
278 lnk->setName(d->docname->text()); 268 lnk->setName(d->docname->text());
279 changed=TRUE; 269 changed=TRUE;
280 } 270 }
281 if ( d->categoryEdit->isVisible() ) { 271 if ( d->categoryEdit->isVisible() ) {
282 QArray<int> tmp = d->categoryEdit->newCategories(); 272 QArray<int> tmp = d->categoryEdit->newCategories();
283 if ( lnk->categories() != tmp ) { 273 if ( lnk->categories() != tmp ) {
284 lnk->setCategories( tmp ); 274 lnk->setCategories( tmp );
285 changed = TRUE; 275 changed = TRUE;
286 } 276 }
287 } 277 }
288 if ( d->preload->isHidden() && d->locationCombo->currentItem() != currentLocation ) { 278 if ( d->preload->isHidden() && d->locationCombo->currentItem() != currentLocation ) {
289 moveLnk(); 279 moveLnk();
290 } else if ( changed ) { 280 } else if ( changed ) {
291 lnk->writeLink(); 281 lnk->writeLink();
292 } 282 }
293 283
294 if ( !d->preload->isHidden() ) { 284 if ( !d->preload->isHidden() ) {
295 Config cfg("Launcher"); 285 Config cfg("Launcher");
296 cfg.setGroup("Preload"); 286 cfg.setGroup("Preload");
297 QStringList apps = cfg.readListEntry("Apps",','); 287 QStringList apps = cfg.readListEntry("Apps",',');
298 QString exe = lnk->exec(); 288 QString exe = lnk->exec();
299 if ( apps.contains(exe) != d->preload->isChecked() ) { 289 if ( apps.contains(exe) != d->preload->isChecked() ) {
300 if ( d->preload->isChecked() ) { 290 if ( d->preload->isChecked() ) {
301 apps.append(exe); 291 apps.append(exe);
302 QCopEnvelope e("QPE/Application/"+exe.local8Bit(), 292#ifndef QT_NO_COP
303 "enablePreload()"); 293 QCopEnvelope e("QPE/Application/"+exe.local8Bit(),
304 } else { 294 "enablePreload()");
305 apps.remove(exe); 295#endif
306 QCopEnvelope e("QPE/Application/"+exe.local8Bit(), 296 } else {
307 "quitIfInvisible()"); 297 apps.remove(exe);
308 } 298#ifndef QT_NO_COP
309 cfg.writeEntry("Apps",apps,','); 299 QCopEnvelope e("QPE/Application/"+exe.local8Bit(),
310 } 300 "quitIfInvisible()");
311 } 301#endif
302 }
303 cfg.writeEntry("Apps",apps,',');
304 }
305 }
312 } 306 }