summaryrefslogtreecommitdiff
path: root/library/lnkproperties.cpp
Side-by-side diff
Diffstat (limited to 'library/lnkproperties.cpp') (more/less context) (show whitespace changes)
-rw-r--r--library/lnkproperties.cpp48
1 files changed, 21 insertions, 27 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 @@
/**********************************************************************
-** Copyright (C) 2000 Trolltech AS. All rights reserved.
+** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
**
-** This file is part of Qtopia Environment.
+** This file is part of the Qtopia Environment.
**
@@ -31,3 +31,5 @@
#include <qpe/categorywidget.h>
+#ifdef QWS
#include <qpe/qcopenvelope_qws.h>
+#endif
#include <qpe/filemanager.h>
@@ -56,2 +58,4 @@ LnkProperties::LnkProperties( AppLnk* l, QWidget* parent )
{
+ setCaption( tr("Properties") );
+
QVBoxLayout *vbox = new QVBoxLayout( this );
@@ -80,3 +84,2 @@ LnkProperties::LnkProperties( AppLnk* l, QWidget* parent )
connect(d->duplicate,SIGNAL(clicked()),this,SLOT(duplicateLnk()));
- connect(d->delicon,SIGNAL(clicked()),this,SLOT(unlinkIcon()));
@@ -119,3 +122,2 @@ LnkProperties::LnkProperties( AppLnk* l, QWidget* parent )
}
- setCaption( l->file());
}
@@ -129,6 +131,3 @@ void LnkProperties::unlinkLnk()
if ( QPEMessageBox::confirmDelete( this, tr("Delete"), lnk->name() ) ) {
- if ( QFile::exists(lnk->file()) )
lnk->removeFiles();
- else
- QMessageBox::warning( this, tr("Delete"), tr("File does not exist.") );
if ( QFile::exists(lnk->file()) ) {
@@ -141,18 +140,2 @@ void LnkProperties::unlinkLnk()
-
-/*
- * remove only the link from documents, not also the file
- */
-void LnkProperties::unlinkIcon()
-{
- if ( QPEMessageBox::confirmDelete( this, tr("Delete Icon and leave file"), lnk->name() ) ) {
- lnk->removeLinkFile();
- if ( QFile::exists(lnk->linkFile()) ) {
- QMessageBox::warning( this, tr("Delete"), tr("Icon deletion failed.") );
- } else {
- reject();
- }
- }
-}
-
void LnkProperties::setupLocations()
@@ -172,9 +155,14 @@ void LnkProperties::setupLocations()
// we add 10k to the file size so we are sure we can also save the desktop file
- if ( (*it)->availBlocks() * (*it)->blockSize() > fileSize + 10000 ) {
+ if ( (ulong)(*it)->availBlocks() * (ulong)(*it)->blockSize() > (ulong)fileSize + 10000 ) {
if ( (*it)->isRemovable() ||
(*it)->disk() == "/dev/mtdblock1" ||
- (*it)->disk() == "/dev/mtdblock/1" || (*it)->disk().left(13) == "/dev/mtdblock" ||
- (*it)->disk() == "/dev/mtdblock6" || (*it)->disk() == "tmpfs" ) {
+ (*it)->disk() == "/dev/mtdblock/1" ||
+ (*it)->disk().left(13) == "/dev/mtdblock" ||
+ (*it)->disk() == "/dev/mtdblock6" ||
+ (*it)->disk() == "tmpfs" ) {
d->locationCombo->insertItem( (*it)->name(), index );
- locations.append( ((*it)->isRemovable() || (*it)->disk() == "/dev/mtdblock6" || (*it)->disk() == "tmpfs" ? (*it)->path() : homeDir) );
+ locations.append( ( ((*it)->isRemovable() ||
+ (*it)->disk() == "/dev/mtdblock6" ||
+ (*it)->disk() == "tmpfs" )
+ ? (*it)->path() : homeDir) );
if ( lnk->file().contains( (*it)->path() ) ) {
@@ -237,2 +225,4 @@ void LnkProperties::beamLnk()
DocLnk doc( *((DocLnk *)lnk) );
+ doc.setName(d->docname->text());
+ reject();
ir.send( doc, doc.comment() );
@@ -301,8 +291,12 @@ void LnkProperties::done(int ok)
apps.append(exe);
+#ifndef QT_NO_COP
QCopEnvelope e("QPE/Application/"+exe.local8Bit(),
"enablePreload()");
+#endif
} else {
apps.remove(exe);
+#ifndef QT_NO_COP
QCopEnvelope e("QPE/Application/"+exe.local8Bit(),
"quitIfInvisible()");
+#endif
}