-rw-r--r-- | library/lnkproperties.cpp | 23 | ||||
-rw-r--r-- | library/lnkproperties.h | 13 | ||||
-rw-r--r-- | library/lnkpropertiesbase_p.ui | 17 |
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 | |||
@@ -18,6 +18,10 @@ | |||
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | // WARNING: Do *NOT* define this yourself. The SL5xxx from SHARP does NOT | ||
22 | // have this class. | ||
23 | #define QTOPIA_INTERNAL_FSLP | ||
24 | #include "lnkproperties.h" | ||
21 | #include "lnkproperties.h" | 25 | #include "lnkproperties.h" |
22 | #include "lnkpropertiesbase_p.h" | 26 | #include "lnkpropertiesbase_p.h" |
23 | #include "ir.h" | 27 | #include "ir.h" |
@@ -74,7 +78,8 @@ LnkProperties::LnkProperties( AppLnk* l, QWidget* parent ) | |||
74 | if ( lnk->type().contains('/') ) { // A document? (#### better predicate needed) | 78 | if ( lnk->type().contains('/') ) { // A document? (#### better predicate needed) |
75 | connect(d->unlink,SIGNAL(clicked()),this,SLOT(unlinkLnk())); | 79 | connect(d->unlink,SIGNAL(clicked()),this,SLOT(unlinkLnk())); |
76 | connect(d->duplicate,SIGNAL(clicked()),this,SLOT(duplicateLnk())); | 80 | connect(d->duplicate,SIGNAL(clicked()),this,SLOT(duplicateLnk())); |
77 | 81 | connect(d->delicon,SIGNAL(clicked()),this,SLOT(unlinkIcon())); | |
82 | |||
78 | d->docname->setReadOnly( FALSE ); | 83 | d->docname->setReadOnly( FALSE ); |
79 | d->preload->hide(); | 84 | d->preload->hide(); |
80 | d->spacer->hide(); | 85 | d->spacer->hide(); |
@@ -130,6 +135,22 @@ void LnkProperties::unlinkLnk() | |||
130 | } | 135 | } |
131 | } | 136 | } |
132 | 137 | ||
138 | |||
139 | /* | ||
140 | * remove only the link from documents, not also the file | ||
141 | */ | ||
142 | void LnkProperties::unlinkIcon() | ||
143 | { | ||
144 | if ( QPEMessageBox::confirmDelete( this, tr("Delete Icon and leave file"), lnk->name() ) ) { | ||
145 | lnk->removeLinkFile(); | ||
146 | if ( QFile::exists(lnk->linkFile()) ) { | ||
147 | QMessageBox::warning( this, tr("Delete"), tr("Icon deletion failed.") ); | ||
148 | } else { | ||
149 | reject(); | ||
150 | } | ||
151 | } | ||
152 | } | ||
153 | |||
133 | void LnkProperties::setupLocations() | 154 | void LnkProperties::setupLocations() |
134 | { | 155 | { |
135 | QFileInfo fi( lnk->file() ); | 156 | QFileInfo fi( lnk->file() ); |
diff --git a/library/lnkproperties.h b/library/lnkproperties.h index 501692e..38da5b2 100644 --- a/library/lnkproperties.h +++ b/library/lnkproperties.h | |||
@@ -17,6 +17,14 @@ | |||
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | |||
21 | |||
22 | // | ||
23 | // DO NOT ATTEMPT TO USE THIS CLASS | ||
24 | // | ||
25 | |||
26 | |||
27 | |||
20 | #ifndef LNKPROPERTIES_H | 28 | #ifndef LNKPROPERTIES_H |
21 | #define LNKPROPERTIES_H | 29 | #define LNKPROPERTIES_H |
22 | #include <qstringlist.h> | 30 | #include <qstringlist.h> |
@@ -33,13 +41,18 @@ class LnkProperties : public QDialog | |||
33 | Q_OBJECT | 41 | Q_OBJECT |
34 | 42 | ||
35 | public: | 43 | public: |
44 | // WARNING: Do *NOT* define this yourself. The SL5xxx from SHARP does NOT | ||
45 | // have this class. | ||
46 | #ifdef QTOPIA_INTERNAL_FSLP | ||
36 | LnkProperties( AppLnk* lnk, QWidget* parent = 0 ); | 47 | LnkProperties( AppLnk* lnk, QWidget* parent = 0 ); |
37 | ~LnkProperties(); | 48 | ~LnkProperties(); |
49 | #endif | ||
38 | 50 | ||
39 | void done(int); | 51 | void done(int); |
40 | private slots: | 52 | private slots: |
41 | void beamLnk(); | 53 | void beamLnk(); |
42 | void unlinkLnk(); | 54 | void unlinkLnk(); |
55 | void unlinkIcon(); | ||
43 | void duplicateLnk(); | 56 | void duplicateLnk(); |
44 | 57 | ||
45 | signals: | 58 | signals: |
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 | |||
@@ -328,6 +328,23 @@ | |||
328 | <bool>false</bool> | 328 | <bool>false</bool> |
329 | </property> | 329 | </property> |
330 | </widget> | 330 | </widget> |
331 | |||
332 | <widget> | ||
333 | <class>QPushButton</class> | ||
334 | <property stdset="1"> | ||
335 | <name>name</name> | ||
336 | <cstring>delicon</cstring> | ||
337 | </property> | ||
338 | <property stdset="1"> | ||
339 | <name>text</name> | ||
340 | <string>Del Icon</string> | ||
341 | </property> | ||
342 | <property stdset="1"> | ||
343 | <name>autoDefault</name> | ||
344 | <bool>false</bool> | ||
345 | </property> | ||
346 | </widget> | ||
347 | |||
331 | <widget> | 348 | <widget> |
332 | <class>QPushButton</class> | 349 | <class>QPushButton</class> |
333 | <property stdset="1"> | 350 | <property stdset="1"> |