summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2002-06-24 13:03:30 (UTC)
committer llornkcor <llornkcor>2002-06-24 13:03:30 (UTC)
commit2a6e2c554e9a1b647fa9d6827948c38fdbaf3f2a (patch) (unidiff)
treedc2f59a5f5ac841c962db050f7db94f821f56b7c
parent428959b4974f51d55c088c0f6d73ee24b726a702 (diff)
downloadopie-2a6e2c554e9a1b647fa9d6827948c38fdbaf3f2a.zip
opie-2a6e2c554e9a1b647fa9d6827948c38fdbaf3f2a.tar.gz
opie-2a6e2c554e9a1b647fa9d6827948c38fdbaf3f2a.tar.bz2
small fix sent some time ago by Max Weninger, for non familiar 'standard' file layout
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--library/lnkproperties.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/lnkproperties.cpp b/library/lnkproperties.cpp
index ebfd4bf..28a71e9 100644
--- a/library/lnkproperties.cpp
+++ b/library/lnkproperties.cpp
@@ -1,311 +1,311 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved. 2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of Qtopia Environment. 4** This file is part of Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21// WARNING: Do *NOT* define this yourself. The SL5xxx from SHARP does NOT 21// WARNING: Do *NOT* define this yourself. The SL5xxx from SHARP does NOT
22// have this class. 22// have this class.
23#define QTOPIA_INTERNAL_FSLP 23#define QTOPIA_INTERNAL_FSLP
24#include "lnkproperties.h" 24#include "lnkproperties.h"
25#include "lnkproperties.h" 25#include "lnkproperties.h"
26#include "lnkpropertiesbase_p.h" 26#include "lnkpropertiesbase_p.h"
27#include "ir.h" 27#include "ir.h"
28 28
29#include <qpe/applnk.h> 29#include <qpe/applnk.h>
30#include <qpe/global.h> 30#include <qpe/global.h>
31#include <qpe/categorywidget.h> 31#include <qpe/categorywidget.h>
32#include <qpe/qcopenvelope_qws.h> 32#include <qpe/qcopenvelope_qws.h>
33#include <qpe/filemanager.h> 33#include <qpe/filemanager.h>
34#include <qpe/config.h> 34#include <qpe/config.h>
35#include <qpe/storage.h> 35#include <qpe/storage.h>
36#include <qpe/qpemessagebox.h> 36#include <qpe/qpemessagebox.h>
37 37
38#include <qlineedit.h> 38#include <qlineedit.h>
39#include <qtoolbutton.h> 39#include <qtoolbutton.h>
40#include <qpushbutton.h> 40#include <qpushbutton.h>
41#include <qgroupbox.h> 41#include <qgroupbox.h>
42#include <qcheckbox.h> 42#include <qcheckbox.h>
43#include <qlabel.h> 43#include <qlabel.h>
44#include <qlayout.h> 44#include <qlayout.h>
45#include <qfile.h> 45#include <qfile.h>
46#include <qfileinfo.h> 46#include <qfileinfo.h>
47#include <qmessagebox.h> 47#include <qmessagebox.h>
48#include <qsize.h> 48#include <qsize.h>
49#include <qcombobox.h> 49#include <qcombobox.h>
50#include <qregexp.h> 50#include <qregexp.h>
51 51
52#include <stdlib.h> 52#include <stdlib.h>
53 53
54LnkProperties::LnkProperties( AppLnk* l, QWidget* parent ) 54LnkProperties::LnkProperties( AppLnk* l, QWidget* parent )
55 : QDialog( parent, 0, TRUE ), lnk(l), fileSize( 0 ) 55 : QDialog( parent, 0, TRUE ), lnk(l), fileSize( 0 )
56{ 56{
57 QVBoxLayout *vbox = new QVBoxLayout( this ); 57 QVBoxLayout *vbox = new QVBoxLayout( this );
58 d = new LnkPropertiesBase( this ); 58 d = new LnkPropertiesBase( this );
59 vbox->add( d ); 59 vbox->add( d );
60 60
61 d->docname->setText(l->name()); 61 d->docname->setText(l->name());
62 QString inf; 62 QString inf;
63 if ( l->type().isEmpty() ) { 63 if ( l->type().isEmpty() ) {
64 d->type->hide(); 64 d->type->hide();
65 d->typeLabel->hide(); 65 d->typeLabel->hide();
66 } else { 66 } else {
67 d->type->setText( l->type() ); 67 d->type->setText( l->type() );
68 } 68 }
69 69
70 if ( l->comment().isEmpty() ) { 70 if ( l->comment().isEmpty() ) {
71 d->comment->hide(); 71 d->comment->hide();
72 d->commentLabel->hide(); 72 d->commentLabel->hide();
73 } else { 73 } else {
74 d->comment->setText( l->comment() ); 74 d->comment->setText( l->comment() );
75 } 75 }
76 76
77 connect(d->beam,SIGNAL(clicked()),this,SLOT(beamLnk())); 77 connect(d->beam,SIGNAL(clicked()),this,SLOT(beamLnk()));
78 if ( lnk->type().contains('/') ) { // A document? (#### better predicate needed) 78 if ( lnk->type().contains('/') ) { // A document? (#### better predicate needed)
79 connect(d->unlink,SIGNAL(clicked()),this,SLOT(unlinkLnk())); 79 connect(d->unlink,SIGNAL(clicked()),this,SLOT(unlinkLnk()));
80 connect(d->duplicate,SIGNAL(clicked()),this,SLOT(duplicateLnk())); 80 connect(d->duplicate,SIGNAL(clicked()),this,SLOT(duplicateLnk()));
81 connect(d->delicon,SIGNAL(clicked()),this,SLOT(unlinkIcon())); 81 connect(d->delicon,SIGNAL(clicked()),this,SLOT(unlinkIcon()));
82 82
83 d->docname->setReadOnly( FALSE ); 83 d->docname->setReadOnly( FALSE );
84 d->preload->hide(); 84 d->preload->hide();
85 d->spacer->hide(); 85 d->spacer->hide();
86 86
87 // ### THIS MUST GO, FIX WIERD BUG in QLAYOUT 87 // ### THIS MUST GO, FIX WIERD BUG in QLAYOUT
88 d->categoryEdit->kludge(); 88 d->categoryEdit->kludge();
89 89
90 d->categoryEdit->setCategories( lnk->categories(), 90 d->categoryEdit->setCategories( lnk->categories(),
91 "Document View", 91 "Document View",
92 tr("Document View") ); 92 tr("Document View") );
93 setupLocations(); 93 setupLocations();
94 } else { 94 } else {
95 d->unlink->hide(); 95 d->unlink->hide();
96 d->duplicate->hide(); 96 d->duplicate->hide();
97 d->beam->hide(); 97 d->beam->hide();
98 d->hline->hide(); 98 d->hline->hide();
99 d->locationLabel->hide(); 99 d->locationLabel->hide();
100 d->locationCombo->hide(); 100 d->locationCombo->hide();
101 101
102 // Can't edit categories, since the app .desktop files are global, 102 // Can't edit categories, since the app .desktop files are global,
103 // possibly read-only. 103 // possibly read-only.
104 d->categoryEdit->hide(); 104 d->categoryEdit->hide();
105 105
106 d->docname->setReadOnly( TRUE ); 106 d->docname->setReadOnly( TRUE );
107 107
108 if ( l->property("CanFastload") == "0" ) 108 if ( l->property("CanFastload") == "0" )
109 d->preload->hide(); 109 d->preload->hide();
110 110
111 Config cfg("Launcher"); 111 Config cfg("Launcher");
112 cfg.setGroup("Preload"); 112 cfg.setGroup("Preload");
113 QStringList apps = cfg.readListEntry("Apps",','); 113 QStringList apps = cfg.readListEntry("Apps",',');
114 d->preload->setChecked( apps.contains(l->exec()) ); 114 d->preload->setChecked( apps.contains(l->exec()) );
115 if ( Global::isBuiltinCommand(lnk->exec()) ) 115 if ( Global::isBuiltinCommand(lnk->exec()) )
116 d->preload->hide(); // builtins are always fast 116 d->preload->hide(); // builtins are always fast
117 117
118 currentLocation = 0; // apps not movable (yet) 118 currentLocation = 0; // apps not movable (yet)
119 } 119 }
120 setCaption( l->file()); 120 setCaption( l->file());
121} 121}
122 122
123LnkProperties::~LnkProperties() 123LnkProperties::~LnkProperties()
124{ 124{
125} 125}
126 126
127void LnkProperties::unlinkLnk() 127void LnkProperties::unlinkLnk()
128{ 128{
129 if ( QPEMessageBox::confirmDelete( this, tr("Delete"), lnk->name() ) ) { 129 if ( QPEMessageBox::confirmDelete( this, tr("Delete"), lnk->name() ) ) {
130 lnk->removeFiles(); 130 lnk->removeFiles();
131 if ( QFile::exists(lnk->file()) ) { 131 if ( QFile::exists(lnk->file()) ) {
132 QMessageBox::warning( this, tr("Delete"), tr("File deletion failed.") ); 132 QMessageBox::warning( this, tr("Delete"), tr("File deletion failed.") );
133 } else { 133 } else {
134 reject(); 134 reject();
135 } 135 }
136 } 136 }
137} 137}
138 138
139 139
140/* 140/*
141 * remove only the link from documents, not also the file 141 * remove only the link from documents, not also the file
142 */ 142 */
143void LnkProperties::unlinkIcon() 143void LnkProperties::unlinkIcon()
144{ 144{
145 if ( QPEMessageBox::confirmDelete( this, tr("Delete Icon and leave file"), lnk->name() ) ) { 145 if ( QPEMessageBox::confirmDelete( this, tr("Delete Icon and leave file"), lnk->name() ) ) {
146 lnk->removeLinkFile(); 146 lnk->removeLinkFile();
147 if ( QFile::exists(lnk->linkFile()) ) { 147 if ( QFile::exists(lnk->linkFile()) ) {
148 QMessageBox::warning( this, tr("Delete"), tr("Icon deletion failed.") ); 148 QMessageBox::warning( this, tr("Delete"), tr("Icon deletion failed.") );
149 } else { 149 } else {
150 reject(); 150 reject();
151 } 151 }
152 } 152 }
153} 153}
154 154
155void LnkProperties::setupLocations() 155void LnkProperties::setupLocations()
156{ 156{
157 QFileInfo fi( lnk->file() ); 157 QFileInfo fi( lnk->file() );
158 fileSize = fi.size(); 158 fileSize = fi.size();
159 StorageInfo storage; 159 StorageInfo storage;
160 const QList<FileSystem> &fs = storage.fileSystems(); 160 const QList<FileSystem> &fs = storage.fileSystems();
161 QListIterator<FileSystem> it ( fs ); 161 QListIterator<FileSystem> it ( fs );
162 QString s; 162 QString s;
163 QString homeDir = getenv("HOME"); 163 QString homeDir = getenv("HOME");
164 QString hardDiskHome; 164 QString hardDiskHome;
165 QString hardDiskPath; 165 QString hardDiskPath;
166 int index = 0; 166 int index = 0;
167 currentLocation = -1; 167 currentLocation = -1;
168 for ( ; it.current(); ++it ) { 168 for ( ; it.current(); ++it ) {
169 // we add 10k to the file size so we are sure we can also save the desktop file 169 // we add 10k to the file size so we are sure we can also save the desktop file
170 if ( (*it)->availBlocks() * (*it)->blockSize() > fileSize + 10000 ) { 170 if ( (*it)->availBlocks() * (*it)->blockSize() > fileSize + 10000 ) {
171 if ( (*it)->isRemovable() || 171 if ( (*it)->isRemovable() ||
172 (*it)->disk() == "/dev/mtdblock1" || 172 (*it)->disk() == "/dev/mtdblock1" ||
173 (*it)->disk() == "/dev/mtdblock/1" ) { 173 (*it)->disk() == "/dev/mtdblock/1" || (*it)->disk().left(13) == "/dev/mtdblock" ) {
174 d->locationCombo->insertItem( (*it)->name(), index ); 174 d->locationCombo->insertItem( (*it)->name(), index );
175 locations.append( ((*it)->isRemovable() ? (*it)->path() : homeDir) ); 175 locations.append( ((*it)->isRemovable() ? (*it)->path() : homeDir) );
176 if ( lnk->file().contains( (*it)->path() ) ) { 176 if ( lnk->file().contains( (*it)->path() ) ) {
177 d->locationCombo->setCurrentItem( index ); 177 d->locationCombo->setCurrentItem( index );
178 currentLocation = index; 178 currentLocation = index;
179 } 179 }
180 index++; 180 index++;
181 } else if ( (*it)->name().contains( "Hard Disk") && 181 } else if ( (*it)->name().contains( "Hard Disk") &&
182 homeDir.contains( (*it)->path() ) && 182 homeDir.contains( (*it)->path() ) &&
183 (*it)->path().length() > hardDiskHome.length() ) { 183 (*it)->path().length() > hardDiskHome.length() ) {
184 hardDiskHome = (*it)->name(); 184 hardDiskHome = (*it)->name();
185 hardDiskPath = (*it)->path(); 185 hardDiskPath = (*it)->path();
186 } 186 }
187 } 187 }
188 } 188 }
189 if ( !hardDiskHome.isEmpty() ) { 189 if ( !hardDiskHome.isEmpty() ) {
190 d->locationCombo->insertItem( hardDiskHome ); 190 d->locationCombo->insertItem( hardDiskHome );
191 locations.append( hardDiskPath ); 191 locations.append( hardDiskPath );
192 if ( currentLocation == -1 ) { // assume it's the hard disk 192 if ( currentLocation == -1 ) { // assume it's the hard disk
193 d->locationCombo->setCurrentItem( index ); 193 d->locationCombo->setCurrentItem( index );
194 currentLocation = index; 194 currentLocation = index;
195 } 195 }
196 } 196 }
197} 197}
198 198
199void LnkProperties::duplicateLnk() 199void LnkProperties::duplicateLnk()
200{ 200{
201 // The duplicate takes the new properties. 201 // The duplicate takes the new properties.
202 DocLnk newdoc( *((DocLnk *)lnk) ); 202 DocLnk newdoc( *((DocLnk *)lnk) );
203 if ( d->docname->text() == lnk->name() ) 203 if ( d->docname->text() == lnk->name() )
204 newdoc.setName(tr("Copy of ")+d->docname->text()); 204 newdoc.setName(tr("Copy of ")+d->docname->text());
205 else 205 else
206 newdoc.setName(d->docname->text()); 206 newdoc.setName(d->docname->text());
207 207
208 if ( !copyFile( newdoc ) ) { 208 if ( !copyFile( newdoc ) ) {
209 QMessageBox::warning( this, tr("Duplicate"), tr("File copy failed.") ); 209 QMessageBox::warning( this, tr("Duplicate"), tr("File copy failed.") );
210 return; 210 return;
211 } 211 }
212 reject(); 212 reject();
213} 213}
214 214
215bool LnkProperties::moveLnk() 215bool LnkProperties::moveLnk()
216{ 216{
217 DocLnk newdoc( *((DocLnk *)lnk) ); 217 DocLnk newdoc( *((DocLnk *)lnk) );
218 newdoc.setName(d->docname->text()); 218 newdoc.setName(d->docname->text());
219 219
220 if ( !copyFile( newdoc ) ) { 220 if ( !copyFile( newdoc ) ) {
221 QMessageBox::warning( this, tr("Details"), tr("Moving Document failed.") ); 221 QMessageBox::warning( this, tr("Details"), tr("Moving Document failed.") );
222 return FALSE; 222 return FALSE;
223 } 223 }
224 // remove old lnk 224 // remove old lnk
225 lnk->removeFiles(); 225 lnk->removeFiles();
226 226
227 return TRUE; 227 return TRUE;
228} 228}
229 229
230void LnkProperties::beamLnk() 230void LnkProperties::beamLnk()
231{ 231{
232 Ir ir; 232 Ir ir;
233 DocLnk doc( *((DocLnk *)lnk) ); 233 DocLnk doc( *((DocLnk *)lnk) );
234 ir.send( doc, doc.comment() ); 234 ir.send( doc, doc.comment() );
235} 235}
236 236
237bool LnkProperties::copyFile( DocLnk &newdoc ) 237bool LnkProperties::copyFile( DocLnk &newdoc )
238{ 238{
239 const char *linkExtn = ".desktop"; 239 const char *linkExtn = ".desktop";
240 QString fileExtn; 240 QString fileExtn;
241 int extnPos = lnk->file().findRev( '.' ); 241 int extnPos = lnk->file().findRev( '.' );
242 if ( extnPos > 0 ) 242 if ( extnPos > 0 )
243 fileExtn = lnk->file().mid( extnPos ); 243 fileExtn = lnk->file().mid( extnPos );
244 244
245 QString safename = newdoc.name(); 245 QString safename = newdoc.name();
246 safename.replace(QRegExp("/"),"_"); 246 safename.replace(QRegExp("/"),"_");
247 247
248 QString fn = locations[ d->locationCombo->currentItem() ] 248 QString fn = locations[ d->locationCombo->currentItem() ]
249 + "/Documents/" + newdoc.type() + "/" + safename; 249 + "/Documents/" + newdoc.type() + "/" + safename;
250 if ( QFile::exists(fn + fileExtn) || QFile::exists(fn + linkExtn) ) { 250 if ( QFile::exists(fn + fileExtn) || QFile::exists(fn + linkExtn) ) {
251 int n=1; 251 int n=1;
252 QString nn = fn + "_" + QString::number(n); 252 QString nn = fn + "_" + QString::number(n);
253 while ( QFile::exists(nn+fileExtn) || QFile::exists(nn+linkExtn) ) { 253 while ( QFile::exists(nn+fileExtn) || QFile::exists(nn+linkExtn) ) {
254 n++; 254 n++;
255 nn = fn + "_" + QString::number(n); 255 nn = fn + "_" + QString::number(n);
256 } 256 }
257 fn = nn; 257 fn = nn;
258 } 258 }
259 newdoc.setFile( fn + fileExtn ); 259 newdoc.setFile( fn + fileExtn );
260 newdoc.setLinkFile( fn + linkExtn ); 260 newdoc.setLinkFile( fn + linkExtn );
261 261
262 // Copy file 262 // Copy file
263 FileManager fm; 263 FileManager fm;
264 if ( !fm.copyFile( *lnk, newdoc ) ) 264 if ( !fm.copyFile( *lnk, newdoc ) )
265 return FALSE; 265 return FALSE;
266 return TRUE; 266 return TRUE;
267} 267}
268 268
269void LnkProperties::done(int ok) 269void LnkProperties::done(int ok)
270{ 270{
271 if ( ok ) { 271 if ( ok ) {
272 bool changed=FALSE; 272 bool changed=FALSE;
273 if ( lnk->name() != d->docname->text() ) { 273 if ( lnk->name() != d->docname->text() ) {
274 lnk->setName(d->docname->text()); 274 lnk->setName(d->docname->text());
275 changed=TRUE; 275 changed=TRUE;
276 } 276 }
277 if ( d->categoryEdit->isVisible() ) { 277 if ( d->categoryEdit->isVisible() ) {
278 QArray<int> tmp = d->categoryEdit->newCategories(); 278 QArray<int> tmp = d->categoryEdit->newCategories();
279 if ( lnk->categories() != tmp ) { 279 if ( lnk->categories() != tmp ) {
280 lnk->setCategories( tmp ); 280 lnk->setCategories( tmp );
281 changed = TRUE; 281 changed = TRUE;
282 } 282 }
283 } 283 }
284 if ( d->preload->isHidden() && d->locationCombo->currentItem() != currentLocation ) { 284 if ( d->preload->isHidden() && d->locationCombo->currentItem() != currentLocation ) {
285 moveLnk(); 285 moveLnk();
286 } else if ( changed ) { 286 } else if ( changed ) {
287 lnk->writeLink(); 287 lnk->writeLink();
288 } 288 }
289 289
290 if ( !d->preload->isHidden() ) { 290 if ( !d->preload->isHidden() ) {
291 Config cfg("Launcher"); 291 Config cfg("Launcher");
292 cfg.setGroup("Preload"); 292 cfg.setGroup("Preload");
293 QStringList apps = cfg.readListEntry("Apps",','); 293 QStringList apps = cfg.readListEntry("Apps",',');
294 QString exe = lnk->exec(); 294 QString exe = lnk->exec();
295 if ( apps.contains(exe) != d->preload->isChecked() ) { 295 if ( apps.contains(exe) != d->preload->isChecked() ) {
296 if ( d->preload->isChecked() ) { 296 if ( d->preload->isChecked() ) {
297 apps.append(exe); 297 apps.append(exe);
298 QCopEnvelope e("QPE/Application/"+exe.local8Bit(), 298 QCopEnvelope e("QPE/Application/"+exe.local8Bit(),
299 "enablePreload()"); 299 "enablePreload()");
300 } else { 300 } else {
301 apps.remove(exe); 301 apps.remove(exe);
302 QCopEnvelope e("QPE/Application/"+exe.local8Bit(), 302 QCopEnvelope e("QPE/Application/"+exe.local8Bit(),
303 "quitIfInvisible()"); 303 "quitIfInvisible()");
304 } 304 }
305 cfg.writeEntry("Apps",apps,','); 305 cfg.writeEntry("Apps",apps,',');
306 } 306 }
307 } 307 }
308 } 308 }
309 QDialog::done( ok ); 309 QDialog::done( ok );
310} 310}
311 311