-rw-r--r-- | library/lnkproperties.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/library/lnkproperties.cpp b/library/lnkproperties.cpp index e8baca6..c020328 100644 --- a/library/lnkproperties.cpp +++ b/library/lnkproperties.cpp | |||
@@ -1,314 +1,315 @@ | |||
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 | ||
54 | LnkProperties::LnkProperties( AppLnk* l, QWidget* parent ) | 54 | LnkProperties::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 | ||
123 | LnkProperties::~LnkProperties() | 123 | LnkProperties::~LnkProperties() |
124 | { | 124 | { |
125 | } | 125 | } |
126 | 126 | ||
127 | void LnkProperties::unlinkLnk() | 127 | void LnkProperties::unlinkLnk() |
128 | { | 128 | { |
129 | if ( QPEMessageBox::confirmDelete( this, tr("Delete"), lnk->name() ) ) { | 129 | if ( QPEMessageBox::confirmDelete( this, tr("Delete"), lnk->name() ) ) { |
130 | if ( QFile::exists(lnk->file()) ) | 130 | if ( QFile::exists(lnk->file()) ) |
131 | lnk->removeFiles(); | 131 | lnk->removeFiles(); |
132 | else | 132 | else |
133 | QMessageBox::warning( this, tr("Delete"), tr("File does not exist.") ); | 133 | QMessageBox::warning( this, tr("Delete"), tr("File does not exist.") ); |
134 | if ( QFile::exists(lnk->file()) ) { | 134 | if ( QFile::exists(lnk->file()) ) { |
135 | QMessageBox::warning( this, tr("Delete"), tr("File deletion failed.") ); | 135 | QMessageBox::warning( this, tr("Delete"), tr("File deletion failed.") ); |
136 | } else { | 136 | } else { |
137 | reject(); | 137 | reject(); |
138 | } | 138 | } |
139 | } | 139 | } |
140 | } | 140 | } |
141 | 141 | ||
142 | 142 | ||
143 | /* | 143 | /* |
144 | * remove only the link from documents, not also the file | 144 | * remove only the link from documents, not also the file |
145 | */ | 145 | */ |
146 | void LnkProperties::unlinkIcon() | 146 | void LnkProperties::unlinkIcon() |
147 | { | 147 | { |
148 | if ( QPEMessageBox::confirmDelete( this, tr("Delete Icon and leave file"), lnk->name() ) ) { | 148 | if ( QPEMessageBox::confirmDelete( this, tr("Delete Icon and leave file"), lnk->name() ) ) { |
149 | lnk->removeLinkFile(); | 149 | lnk->removeLinkFile(); |
150 | if ( QFile::exists(lnk->linkFile()) ) { | 150 | if ( QFile::exists(lnk->linkFile()) ) { |
151 | QMessageBox::warning( this, tr("Delete"), tr("Icon deletion failed.") ); | 151 | QMessageBox::warning( this, tr("Delete"), tr("Icon deletion failed.") ); |
152 | } else { | 152 | } else { |
153 | reject(); | 153 | reject(); |
154 | } | 154 | } |
155 | } | 155 | } |
156 | } | 156 | } |
157 | 157 | ||
158 | void LnkProperties::setupLocations() | 158 | void LnkProperties::setupLocations() |
159 | { | 159 | { |
160 | QFileInfo fi( lnk->file() ); | 160 | QFileInfo fi( lnk->file() ); |
161 | fileSize = fi.size(); | 161 | fileSize = fi.size(); |
162 | StorageInfo storage; | 162 | StorageInfo storage; |
163 | const QList<FileSystem> &fs = storage.fileSystems(); | 163 | const QList<FileSystem> &fs = storage.fileSystems(); |
164 | QListIterator<FileSystem> it ( fs ); | 164 | QListIterator<FileSystem> it ( fs ); |
165 | QString s; | 165 | QString s; |
166 | QString homeDir = getenv("HOME"); | 166 | QString homeDir = getenv("HOME"); |
167 | QString hardDiskHome; | 167 | QString hardDiskHome; |
168 | QString hardDiskPath; | 168 | QString hardDiskPath; |
169 | int index = 0; | 169 | int index = 0; |
170 | currentLocation = -1; | 170 | currentLocation = -1; |
171 | for ( ; it.current(); ++it ) { | 171 | for ( ; it.current(); ++it ) { |
172 | // we add 10k to the file size so we are sure we can also save the desktop file | 172 | // 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 ) { | 173 | if ( (*it)->availBlocks() * (*it)->blockSize() > fileSize + 10000 ) { |
174 | if ( (*it)->isRemovable() || | 174 | if ( (*it)->isRemovable() || |
175 | (*it)->disk() == "/dev/mtdblock1" || | 175 | (*it)->disk() == "/dev/mtdblock1" || |
176 | (*it)->disk() == "/dev/mtdblock/1" || (*it)->disk().left(13) == "/dev/mtdblock" ) { | 176 | (*it)->disk() == "/dev/mtdblock/1" || (*it)->disk().left(13) == "/dev/mtdblock" || |
177 | (*it)->disk() == "/dev/mtdblock6" || (*it)->disk() == "tmpfs" ) { | ||
177 | d->locationCombo->insertItem( (*it)->name(), index ); | 178 | d->locationCombo->insertItem( (*it)->name(), index ); |
178 | locations.append( ((*it)->isRemovable() ? (*it)->path() : homeDir) ); | 179 | locations.append( ((*it)->isRemovable() || (*it)->disk() == "/dev/mtdblock6" || (*it)->disk() == "tmpfs" ? (*it)->path() : homeDir) ); |
179 | if ( lnk->file().contains( (*it)->path() ) ) { | 180 | if ( lnk->file().contains( (*it)->path() ) ) { |
180 | d->locationCombo->setCurrentItem( index ); | 181 | d->locationCombo->setCurrentItem( index ); |
181 | currentLocation = index; | 182 | currentLocation = index; |
182 | } | 183 | } |
183 | index++; | 184 | index++; |
184 | } else if ( (*it)->name().contains( "Hard Disk") && | 185 | } else if ( (*it)->name().contains( tr("Hard Disk") ) && |
185 | homeDir.contains( (*it)->path() ) && | 186 | homeDir.contains( (*it)->path() ) && |
186 | (*it)->path().length() > hardDiskHome.length() ) { | 187 | (*it)->path().length() > hardDiskHome.length() ) { |
187 | hardDiskHome = (*it)->name(); | 188 | hardDiskHome = (*it)->name(); |
188 | hardDiskPath = (*it)->path(); | 189 | hardDiskPath = (*it)->path(); |
189 | } | 190 | } |
190 | } | 191 | } |
191 | } | 192 | } |
192 | if ( !hardDiskHome.isEmpty() ) { | 193 | if ( !hardDiskHome.isEmpty() ) { |
193 | d->locationCombo->insertItem( hardDiskHome ); | 194 | d->locationCombo->insertItem( hardDiskHome ); |
194 | locations.append( hardDiskPath ); | 195 | locations.append( hardDiskPath ); |
195 | if ( currentLocation == -1 ) { // assume it's the hard disk | 196 | if ( currentLocation == -1 ) { // assume it's the hard disk |
196 | d->locationCombo->setCurrentItem( index ); | 197 | d->locationCombo->setCurrentItem( index ); |
197 | currentLocation = index; | 198 | currentLocation = index; |
198 | } | 199 | } |
199 | } | 200 | } |
200 | } | 201 | } |
201 | 202 | ||
202 | void LnkProperties::duplicateLnk() | 203 | void LnkProperties::duplicateLnk() |
203 | { | 204 | { |
204 | // The duplicate takes the new properties. | 205 | // The duplicate takes the new properties. |
205 | DocLnk newdoc( *((DocLnk *)lnk) ); | 206 | DocLnk newdoc( *((DocLnk *)lnk) ); |
206 | if ( d->docname->text() == lnk->name() ) | 207 | if ( d->docname->text() == lnk->name() ) |
207 | newdoc.setName(tr("Copy of ")+d->docname->text()); | 208 | newdoc.setName(tr("Copy of ")+d->docname->text()); |
208 | else | 209 | else |
209 | newdoc.setName(d->docname->text()); | 210 | newdoc.setName(d->docname->text()); |
210 | 211 | ||
211 | if ( !copyFile( newdoc ) ) { | 212 | if ( !copyFile( newdoc ) ) { |
212 | QMessageBox::warning( this, tr("Duplicate"), tr("File copy failed.") ); | 213 | QMessageBox::warning( this, tr("Duplicate"), tr("File copy failed.") ); |
213 | return; | 214 | return; |
214 | } | 215 | } |
215 | reject(); | 216 | reject(); |
216 | } | 217 | } |
217 | 218 | ||
218 | bool LnkProperties::moveLnk() | 219 | bool LnkProperties::moveLnk() |
219 | { | 220 | { |
220 | DocLnk newdoc( *((DocLnk *)lnk) ); | 221 | DocLnk newdoc( *((DocLnk *)lnk) ); |
221 | newdoc.setName(d->docname->text()); | 222 | newdoc.setName(d->docname->text()); |
222 | 223 | ||
223 | if ( !copyFile( newdoc ) ) { | 224 | if ( !copyFile( newdoc ) ) { |
224 | QMessageBox::warning( this, tr("Details"), tr("Moving Document failed.") ); | 225 | QMessageBox::warning( this, tr("Details"), tr("Moving Document failed.") ); |
225 | return FALSE; | 226 | return FALSE; |
226 | } | 227 | } |
227 | // remove old lnk | 228 | // remove old lnk |
228 | lnk->removeFiles(); | 229 | lnk->removeFiles(); |
229 | 230 | ||
230 | return TRUE; | 231 | return TRUE; |
231 | } | 232 | } |
232 | 233 | ||
233 | void LnkProperties::beamLnk() | 234 | void LnkProperties::beamLnk() |
234 | { | 235 | { |
235 | Ir ir; | 236 | Ir ir; |
236 | DocLnk doc( *((DocLnk *)lnk) ); | 237 | DocLnk doc( *((DocLnk *)lnk) ); |
237 | ir.send( doc, doc.comment() ); | 238 | ir.send( doc, doc.comment() ); |
238 | } | 239 | } |
239 | 240 | ||
240 | bool LnkProperties::copyFile( DocLnk &newdoc ) | 241 | bool LnkProperties::copyFile( DocLnk &newdoc ) |
241 | { | 242 | { |
242 | const char *linkExtn = ".desktop"; | 243 | const char *linkExtn = ".desktop"; |
243 | QString fileExtn; | 244 | QString fileExtn; |
244 | int extnPos = lnk->file().findRev( '.' ); | 245 | int extnPos = lnk->file().findRev( '.' ); |
245 | if ( extnPos > 0 ) | 246 | if ( extnPos > 0 ) |
246 | fileExtn = lnk->file().mid( extnPos ); | 247 | fileExtn = lnk->file().mid( extnPos ); |
247 | 248 | ||
248 | QString safename = newdoc.name(); | 249 | QString safename = newdoc.name(); |
249 | safename.replace(QRegExp("/"),"_"); | 250 | safename.replace(QRegExp("/"),"_"); |
250 | 251 | ||
251 | QString fn = locations[ d->locationCombo->currentItem() ] | 252 | QString fn = locations[ d->locationCombo->currentItem() ] |
252 | + "/Documents/" + newdoc.type() + "/" + safename; | 253 | + "/Documents/" + newdoc.type() + "/" + safename; |
253 | if ( QFile::exists(fn + fileExtn) || QFile::exists(fn + linkExtn) ) { | 254 | if ( QFile::exists(fn + fileExtn) || QFile::exists(fn + linkExtn) ) { |
254 | int n=1; | 255 | int n=1; |
255 | QString nn = fn + "_" + QString::number(n); | 256 | QString nn = fn + "_" + QString::number(n); |
256 | while ( QFile::exists(nn+fileExtn) || QFile::exists(nn+linkExtn) ) { | 257 | while ( QFile::exists(nn+fileExtn) || QFile::exists(nn+linkExtn) ) { |
257 | n++; | 258 | n++; |
258 | nn = fn + "_" + QString::number(n); | 259 | nn = fn + "_" + QString::number(n); |
259 | } | 260 | } |
260 | fn = nn; | 261 | fn = nn; |
261 | } | 262 | } |
262 | newdoc.setFile( fn + fileExtn ); | 263 | newdoc.setFile( fn + fileExtn ); |
263 | newdoc.setLinkFile( fn + linkExtn ); | 264 | newdoc.setLinkFile( fn + linkExtn ); |
264 | 265 | ||
265 | // Copy file | 266 | // Copy file |
266 | FileManager fm; | 267 | FileManager fm; |
267 | if ( !fm.copyFile( *lnk, newdoc ) ) | 268 | if ( !fm.copyFile( *lnk, newdoc ) ) |
268 | return FALSE; | 269 | return FALSE; |
269 | return TRUE; | 270 | return TRUE; |
270 | } | 271 | } |
271 | 272 | ||
272 | void LnkProperties::done(int ok) | 273 | void LnkProperties::done(int ok) |
273 | { | 274 | { |
274 | if ( ok ) { | 275 | if ( ok ) { |
275 | bool changed=FALSE; | 276 | bool changed=FALSE; |
276 | if ( lnk->name() != d->docname->text() ) { | 277 | if ( lnk->name() != d->docname->text() ) { |
277 | lnk->setName(d->docname->text()); | 278 | lnk->setName(d->docname->text()); |
278 | changed=TRUE; | 279 | changed=TRUE; |
279 | } | 280 | } |
280 | if ( d->categoryEdit->isVisible() ) { | 281 | if ( d->categoryEdit->isVisible() ) { |
281 | QArray<int> tmp = d->categoryEdit->newCategories(); | 282 | QArray<int> tmp = d->categoryEdit->newCategories(); |
282 | if ( lnk->categories() != tmp ) { | 283 | if ( lnk->categories() != tmp ) { |
283 | lnk->setCategories( tmp ); | 284 | lnk->setCategories( tmp ); |
284 | changed = TRUE; | 285 | changed = TRUE; |
285 | } | 286 | } |
286 | } | 287 | } |
287 | if ( d->preload->isHidden() && d->locationCombo->currentItem() != currentLocation ) { | 288 | if ( d->preload->isHidden() && d->locationCombo->currentItem() != currentLocation ) { |
288 | moveLnk(); | 289 | moveLnk(); |
289 | } else if ( changed ) { | 290 | } else if ( changed ) { |
290 | lnk->writeLink(); | 291 | lnk->writeLink(); |
291 | } | 292 | } |
292 | 293 | ||
293 | if ( !d->preload->isHidden() ) { | 294 | if ( !d->preload->isHidden() ) { |
294 | Config cfg("Launcher"); | 295 | Config cfg("Launcher"); |
295 | cfg.setGroup("Preload"); | 296 | cfg.setGroup("Preload"); |
296 | QStringList apps = cfg.readListEntry("Apps",','); | 297 | QStringList apps = cfg.readListEntry("Apps",','); |
297 | QString exe = lnk->exec(); | 298 | QString exe = lnk->exec(); |
298 | if ( apps.contains(exe) != d->preload->isChecked() ) { | 299 | if ( apps.contains(exe) != d->preload->isChecked() ) { |
299 | if ( d->preload->isChecked() ) { | 300 | if ( d->preload->isChecked() ) { |
300 | apps.append(exe); | 301 | apps.append(exe); |
301 | QCopEnvelope e("QPE/Application/"+exe.local8Bit(), | 302 | QCopEnvelope e("QPE/Application/"+exe.local8Bit(), |
302 | "enablePreload()"); | 303 | "enablePreload()"); |
303 | } else { | 304 | } else { |
304 | apps.remove(exe); | 305 | apps.remove(exe); |
305 | QCopEnvelope e("QPE/Application/"+exe.local8Bit(), | 306 | QCopEnvelope e("QPE/Application/"+exe.local8Bit(), |
306 | "quitIfInvisible()"); | 307 | "quitIfInvisible()"); |
307 | } | 308 | } |
308 | cfg.writeEntry("Apps",apps,','); | 309 | cfg.writeEntry("Apps",apps,','); |
309 | } | 310 | } |
310 | } | 311 | } |
311 | } | 312 | } |
312 | QDialog::done( ok ); | 313 | QDialog::done( ok ); |
313 | } | 314 | } |
314 | 315 | ||