summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--library/lnkproperties.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/library/lnkproperties.cpp b/library/lnkproperties.cpp
index bd43e21..e8baca6 100644
--- a/library/lnkproperties.cpp
+++ b/library/lnkproperties.cpp
@@ -36,192 +36,194 @@
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 if ( QFile::exists(lnk->file()) ) 130 if ( QFile::exists(lnk->file()) )
131 lnk->removeFiles(); 131 lnk->removeFiles();
132 else
133 QMessageBox::warning( this, tr("Delete"), tr("File does not exist.") );
132 if ( QFile::exists(lnk->file()) ) { 134 if ( QFile::exists(lnk->file()) ) {
133 QMessageBox::warning( this, tr("Delete"), tr("File deletion failed.") ); 135 QMessageBox::warning( this, tr("Delete"), tr("File deletion failed.") );
134 } else { 136 } else {
135 reject(); 137 reject();
136 } 138 }
137 } 139 }
138} 140}
139 141
140 142
141/* 143/*
142 * remove only the link from documents, not also the file 144 * remove only the link from documents, not also the file
143 */ 145 */
144void LnkProperties::unlinkIcon() 146void LnkProperties::unlinkIcon()
145{ 147{
146 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() ) ) {
147 lnk->removeLinkFile(); 149 lnk->removeLinkFile();
148 if ( QFile::exists(lnk->linkFile()) ) { 150 if ( QFile::exists(lnk->linkFile()) ) {
149 QMessageBox::warning( this, tr("Delete"), tr("Icon deletion failed.") ); 151 QMessageBox::warning( this, tr("Delete"), tr("Icon deletion failed.") );
150 } else { 152 } else {
151 reject(); 153 reject();
152 } 154 }
153 } 155 }
154} 156}
155 157
156void LnkProperties::setupLocations() 158void LnkProperties::setupLocations()
157{ 159{
158 QFileInfo fi( lnk->file() ); 160 QFileInfo fi( lnk->file() );
159 fileSize = fi.size(); 161 fileSize = fi.size();
160 StorageInfo storage; 162 StorageInfo storage;
161 const QList<FileSystem> &fs = storage.fileSystems(); 163 const QList<FileSystem> &fs = storage.fileSystems();
162 QListIterator<FileSystem> it ( fs ); 164 QListIterator<FileSystem> it ( fs );
163 QString s; 165 QString s;
164 QString homeDir = getenv("HOME"); 166 QString homeDir = getenv("HOME");
165 QString hardDiskHome; 167 QString hardDiskHome;
166 QString hardDiskPath; 168 QString hardDiskPath;
167 int index = 0; 169 int index = 0;
168 currentLocation = -1; 170 currentLocation = -1;
169 for ( ; it.current(); ++it ) { 171 for ( ; it.current(); ++it ) {
170 // 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
171 if ( (*it)->availBlocks() * (*it)->blockSize() > fileSize + 10000 ) { 173 if ( (*it)->availBlocks() * (*it)->blockSize() > fileSize + 10000 ) {
172 if ( (*it)->isRemovable() || 174 if ( (*it)->isRemovable() ||
173 (*it)->disk() == "/dev/mtdblock1" || 175 (*it)->disk() == "/dev/mtdblock1" ||
174 (*it)->disk() == "/dev/mtdblock/1" || (*it)->disk().left(13) == "/dev/mtdblock" ) { 176 (*it)->disk() == "/dev/mtdblock/1" || (*it)->disk().left(13) == "/dev/mtdblock" ) {
175 d->locationCombo->insertItem( (*it)->name(), index ); 177 d->locationCombo->insertItem( (*it)->name(), index );
176 locations.append( ((*it)->isRemovable() ? (*it)->path() : homeDir) ); 178 locations.append( ((*it)->isRemovable() ? (*it)->path() : homeDir) );
177 if ( lnk->file().contains( (*it)->path() ) ) { 179 if ( lnk->file().contains( (*it)->path() ) ) {
178 d->locationCombo->setCurrentItem( index ); 180 d->locationCombo->setCurrentItem( index );
179 currentLocation = index; 181 currentLocation = index;
180 } 182 }
181 index++; 183 index++;
182 } else if ( (*it)->name().contains( "Hard Disk") && 184 } else if ( (*it)->name().contains( "Hard Disk") &&
183 homeDir.contains( (*it)->path() ) && 185 homeDir.contains( (*it)->path() ) &&
184 (*it)->path().length() > hardDiskHome.length() ) { 186 (*it)->path().length() > hardDiskHome.length() ) {
185 hardDiskHome = (*it)->name(); 187 hardDiskHome = (*it)->name();
186 hardDiskPath = (*it)->path(); 188 hardDiskPath = (*it)->path();
187 } 189 }
188 } 190 }
189 } 191 }
190 if ( !hardDiskHome.isEmpty() ) { 192 if ( !hardDiskHome.isEmpty() ) {
191 d->locationCombo->insertItem( hardDiskHome ); 193 d->locationCombo->insertItem( hardDiskHome );
192 locations.append( hardDiskPath ); 194 locations.append( hardDiskPath );
193 if ( currentLocation == -1 ) { // assume it's the hard disk 195 if ( currentLocation == -1 ) { // assume it's the hard disk
194 d->locationCombo->setCurrentItem( index ); 196 d->locationCombo->setCurrentItem( index );
195 currentLocation = index; 197 currentLocation = index;
196 } 198 }
197 } 199 }
198} 200}
199 201
200void LnkProperties::duplicateLnk() 202void LnkProperties::duplicateLnk()
201{ 203{
202 // The duplicate takes the new properties. 204 // The duplicate takes the new properties.
203 DocLnk newdoc( *((DocLnk *)lnk) ); 205 DocLnk newdoc( *((DocLnk *)lnk) );
204 if ( d->docname->text() == lnk->name() ) 206 if ( d->docname->text() == lnk->name() )
205 newdoc.setName(tr("Copy of ")+d->docname->text()); 207 newdoc.setName(tr("Copy of ")+d->docname->text());
206 else 208 else
207 newdoc.setName(d->docname->text()); 209 newdoc.setName(d->docname->text());
208 210
209 if ( !copyFile( newdoc ) ) { 211 if ( !copyFile( newdoc ) ) {
210 QMessageBox::warning( this, tr("Duplicate"), tr("File copy failed.") ); 212 QMessageBox::warning( this, tr("Duplicate"), tr("File copy failed.") );
211 return; 213 return;
212 } 214 }
213 reject(); 215 reject();
214} 216}
215 217
216bool LnkProperties::moveLnk() 218bool LnkProperties::moveLnk()
217{ 219{
218 DocLnk newdoc( *((DocLnk *)lnk) ); 220 DocLnk newdoc( *((DocLnk *)lnk) );
219 newdoc.setName(d->docname->text()); 221 newdoc.setName(d->docname->text());
220 222
221 if ( !copyFile( newdoc ) ) { 223 if ( !copyFile( newdoc ) ) {
222 QMessageBox::warning( this, tr("Details"), tr("Moving Document failed.") ); 224 QMessageBox::warning( this, tr("Details"), tr("Moving Document failed.") );
223 return FALSE; 225 return FALSE;
224 } 226 }
225 // remove old lnk 227 // remove old lnk
226 lnk->removeFiles(); 228 lnk->removeFiles();
227 229