summaryrefslogtreecommitdiff
path: root/library/lnkproperties.h
Unidiff
Diffstat (limited to 'library/lnkproperties.h') (more/less context) (show whitespace changes)
-rw-r--r--library/lnkproperties.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/library/lnkproperties.h b/library/lnkproperties.h
index 501692e..38da5b2 100644
--- a/library/lnkproperties.h
+++ b/library/lnkproperties.h
@@ -8,47 +8,60 @@
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
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>
23#include <qdialog.h> 31#include <qdialog.h>
24 32
25class AppLnk; 33class AppLnk;
26class QListViewItem; 34class QListViewItem;
27class DocLnk; 35class DocLnk;
28 36
29class LnkPropertiesBase; 37class LnkPropertiesBase;
30 38
31class LnkProperties : public QDialog 39class LnkProperties : public QDialog
32{ 40{
33 Q_OBJECT 41 Q_OBJECT
34 42
35public: 43public:
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);
40private slots: 52private slots:
41 void beamLnk(); 53 void beamLnk();
42 void unlinkLnk(); 54 void unlinkLnk();
55 void unlinkIcon();
43 void duplicateLnk(); 56 void duplicateLnk();
44 57
45signals: 58signals:
46 void select(const AppLnk *); 59 void select(const AppLnk *);
47 60
48private: 61private:
49 void setupLocations(); 62 void setupLocations();
50 bool moveLnk(); 63 bool moveLnk();
51 bool copyFile( DocLnk &newdoc ); 64 bool copyFile( DocLnk &newdoc );
52 65
53 AppLnk* lnk; 66 AppLnk* lnk;
54 int fileSize; 67 int fileSize;