summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--library/lnkproperties.cpp23
-rw-r--r--library/lnkproperties.h13
-rw-r--r--library/lnkpropertiesbase_p.ui17
3 files changed, 52 insertions, 1 deletions
diff --git a/library/lnkproperties.cpp b/library/lnkproperties.cpp
index e278cb2..abd430c 100644
--- a/library/lnkproperties.cpp
+++ b/library/lnkproperties.cpp
@@ -20,2 +20,6 @@
+// WARNING: Do *NOT* define this yourself. The SL5xxx from SHARP does NOT
+// have this class.
+#define QTOPIA_INTERNAL_FSLP
+#include "lnkproperties.h"
#include "lnkproperties.h"
@@ -76,3 +80,4 @@ LnkProperties::LnkProperties( AppLnk* l, QWidget* parent )
connect(d->duplicate,SIGNAL(clicked()),this,SLOT(duplicateLnk()));
-
+ connect(d->delicon,SIGNAL(clicked()),this,SLOT(unlinkIcon()));
+
d->docname->setReadOnly( FALSE );
@@ -132,2 +137,18 @@ 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()
diff --git a/library/lnkproperties.h b/library/lnkproperties.h
index 501692e..38da5b2 100644
--- a/library/lnkproperties.h
+++ b/library/lnkproperties.h
@@ -19,2 +19,10 @@
**********************************************************************/
+
+
+//
+// DO NOT ATTEMPT TO USE THIS CLASS
+//
+
+
+
#ifndef LNKPROPERTIES_H
@@ -35,4 +43,8 @@ class LnkProperties : public QDialog
public:
+// WARNING: Do *NOT* define this yourself. The SL5xxx from SHARP does NOT
+// have this class.
+#ifdef QTOPIA_INTERNAL_FSLP
LnkProperties( AppLnk* lnk, QWidget* parent = 0 );
~LnkProperties();
+#endif
@@ -42,2 +54,3 @@ private slots:
void unlinkLnk();
+ void unlinkIcon();
void duplicateLnk();
diff --git a/library/lnkpropertiesbase_p.ui b/library/lnkpropertiesbase_p.ui
index d99b228..3d35bca 100644
--- a/library/lnkpropertiesbase_p.ui
+++ b/library/lnkpropertiesbase_p.ui
@@ -330,2 +330,19 @@
</widget>
+
+ <widget>
+ <class>QPushButton</class>
+ <property stdset="1">
+ <name>name</name>
+ <cstring>delicon</cstring>
+ </property>
+ <property stdset="1">
+ <name>text</name>
+ <string>Del Icon</string>
+ </property>
+ <property stdset="1">
+ <name>autoDefault</name>
+ <bool>false</bool>
+ </property>
+ </widget>
+
<widget>