author | zecke <zecke> | 2002-10-06 09:53:16 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-10-06 09:53:16 (UTC) |
commit | 93432da5b2a73874b359d4a4468cdaffeaab960c (patch) (unidiff) | |
tree | 1f928a58b0e6b3036153a5461291f85d229f13fb | |
parent | a1ebad08d462e682554d39a9beabce125a374452 (diff) | |
download | opie-93432da5b2a73874b359d4a4468cdaffeaab960c.zip opie-93432da5b2a73874b359d4a4468cdaffeaab960c.tar.gz opie-93432da5b2a73874b359d4a4468cdaffeaab960c.tar.bz2 |
Sandman how did this compile?
inline setRotation( const QString& rotation ) { mRotation = rot; }
I fixed that now
-rw-r--r-- | library/applnk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/applnk.h b/library/applnk.h index b92ddba..b4590d3 100644 --- a/library/applnk.h +++ b/library/applnk.h | |||
@@ -12,129 +12,129 @@ | |||
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 | #ifndef __APPLNK_H__ | 20 | #ifndef __APPLNK_H__ |
21 | #define __APPLNK_H__ | 21 | #define __APPLNK_H__ |
22 | 22 | ||
23 | #include <qobject.h> | 23 | #include <qobject.h> |
24 | #include <qiconset.h> | 24 | #include <qiconset.h> |
25 | #include <qlist.h> | 25 | #include <qlist.h> |
26 | #include <qdict.h> | 26 | #include <qdict.h> |
27 | #include <qstringlist.h> | 27 | #include <qstringlist.h> |
28 | 28 | ||
29 | class AppLnkSetPrivate; | 29 | class AppLnkSetPrivate; |
30 | class AppLnkPrivate; | 30 | class AppLnkPrivate; |
31 | 31 | ||
32 | class AppLnk | 32 | class AppLnk |
33 | { | 33 | { |
34 | public: | 34 | public: |
35 | AppLnk(); | 35 | AppLnk(); |
36 | AppLnk( const QString &file ); | 36 | AppLnk( const QString &file ); |
37 | AppLnk( const AppLnk © ); // copy constructor | 37 | AppLnk( const AppLnk © ); // copy constructor |
38 | virtual ~AppLnk(); | 38 | virtual ~AppLnk(); |
39 | 39 | ||
40 | bool isValid() const { return !mLinkFile.isNull(); } | 40 | bool isValid() const { return !mLinkFile.isNull(); } |
41 | 41 | ||
42 | static void setSmallIconSize(int); | 42 | static void setSmallIconSize(int); |
43 | static void setBigIconSize(int); | 43 | static void setBigIconSize(int); |
44 | static int smallIconSize(); | 44 | static int smallIconSize(); |
45 | static int bigIconSize(); | 45 | static int bigIconSize(); |
46 | 46 | ||
47 | QString name() const { return mName; } | 47 | QString name() const { return mName; } |
48 | const QPixmap& pixmap() const; | 48 | const QPixmap& pixmap() const; |
49 | const QPixmap& bigPixmap() const; | 49 | const QPixmap& bigPixmap() const; |
50 | QString icon() const { return mIconFile; } | 50 | QString icon() const { return mIconFile; } |
51 | virtual QString exec() const { return mExec; } | 51 | virtual QString exec() const { return mExec; } |
52 | QString type() const; | 52 | QString type() const; |
53 | QString rotation() const { return mRotation; } | 53 | QString rotation() const { return mRotation; } |
54 | QString comment() const { return mComment; } | 54 | QString comment() const { return mComment; } |
55 | QString file() const; | 55 | QString file() const; |
56 | QString linkFile() const; | 56 | QString linkFile() const; |
57 | QStringList mimeTypes() const { return mMimeTypes; } | 57 | QStringList mimeTypes() const { return mMimeTypes; } |
58 | QStringList mimeTypeIcons() const { return mMimeTypeIcons; } | 58 | QStringList mimeTypeIcons() const { return mMimeTypeIcons; } |
59 | const QArray<int> &categories() const; | 59 | const QArray<int> &categories() const; |
60 | int id() const { return mId; } | 60 | int id() const { return mId; } |
61 | 61 | ||
62 | bool fileKnown() const { return !mFile.isNull(); } | 62 | bool fileKnown() const { return !mFile.isNull(); } |
63 | bool linkFileKnown() const { return !mLinkFile.isNull(); } | 63 | bool linkFileKnown() const { return !mLinkFile.isNull(); } |
64 | 64 | ||
65 | void execute() const; | 65 | void execute() const; |
66 | void execute(const QStringList& args) const; | 66 | void execute(const QStringList& args) const; |
67 | void removeFiles(); | 67 | void removeFiles(); |
68 | void removeLinkFile(); | 68 | void removeLinkFile(); |
69 | 69 | ||
70 | void setName( const QString& docname ); | 70 | void setName( const QString& docname ); |
71 | void setExec( const QString& exec ); | 71 | void setExec( const QString& exec ); |
72 | void setFile( const QString& filename ); | 72 | void setFile( const QString& filename ); |
73 | void setLinkFile( const QString& filename ); | 73 | void setLinkFile( const QString& filename ); |
74 | void setComment( const QString& comment ); | 74 | void setComment( const QString& comment ); |
75 | void setType( const QString& mimetype ); | 75 | void setType( const QString& mimetype ); |
76 | inline void setRotation ( const QString &rotation ) { mRotation = rot; } // inline for BC | 76 | inline void setRotation ( const QString &rot ) { mRotation = rot; } // inline for BC |
77 | void setIcon( const QString& iconname ); | 77 | void setIcon( const QString& iconname ); |
78 | void setCategories( const QArray<int> &v ); | 78 | void setCategories( const QArray<int> &v ); |
79 | bool writeLink() const; | 79 | bool writeLink() const; |
80 | 80 | ||
81 | void setProperty(const QString& key, const QString& value); | 81 | void setProperty(const QString& key, const QString& value); |
82 | QString property(const QString& key) const; | 82 | QString property(const QString& key) const; |
83 | 83 | ||
84 | #ifdef QTOPIA_INTERNAL_PRELOADACCESS | 84 | #ifdef QTOPIA_INTERNAL_PRELOADACCESS |
85 | bool isPreloaded() const; | 85 | bool isPreloaded() const; |
86 | void setPreloaded(bool yesNo); | 86 | void setPreloaded(bool yesNo); |
87 | #endif | 87 | #endif |
88 | 88 | ||
89 | #ifdef QTOPIA_INTERNAL_APPLNKASSIGN | 89 | #ifdef QTOPIA_INTERNAL_APPLNKASSIGN |
90 | AppLnk &operator=(const AppLnk &other); | 90 | AppLnk &operator=(const AppLnk &other); |
91 | #endif | 91 | #endif |
92 | 92 | ||
93 | protected: | 93 | protected: |
94 | QString mName; | 94 | QString mName; |
95 | 95 | ||
96 | /* remove for Qtopia 3.0 -zecke */ | 96 | /* remove for Qtopia 3.0 -zecke */ |
97 | QPixmap mPixmap; | 97 | QPixmap mPixmap; |
98 | 98 | ||
99 | /* remove for Qtopia 3.0 -zecke */ | 99 | /* remove for Qtopia 3.0 -zecke */ |
100 | QPixmap mBigPixmap; | 100 | QPixmap mBigPixmap; |
101 | 101 | ||
102 | QString mExec; | 102 | QString mExec; |
103 | QString mType; | 103 | QString mType; |
104 | QString mRotation; | 104 | QString mRotation; |
105 | QString mComment; | 105 | QString mComment; |
106 | QString mFile; | 106 | QString mFile; |
107 | QString mLinkFile; | 107 | QString mLinkFile; |
108 | QString mIconFile; | 108 | QString mIconFile; |
109 | QStringList mMimeTypes; | 109 | QStringList mMimeTypes; |
110 | QStringList mMimeTypeIcons; | 110 | QStringList mMimeTypeIcons; |
111 | int mId; | 111 | int mId; |
112 | static int lastId; | 112 | static int lastId; |
113 | AppLnkPrivate *d; | 113 | AppLnkPrivate *d; |
114 | friend class AppLnkSet; | 114 | friend class AppLnkSet; |
115 | 115 | ||
116 | virtual void invoke(const QStringList& args) const; | 116 | virtual void invoke(const QStringList& args) const; |
117 | bool ensureLinkExists() const; | 117 | bool ensureLinkExists() const; |
118 | void storeLink() const; | 118 | void storeLink() const; |
119 | 119 | ||
120 | private: | 120 | private: |
121 | const QPixmap& pixmap(int pos, int size) const; | 121 | const QPixmap& pixmap(int pos, int size) const; |
122 | }; | 122 | }; |
123 | 123 | ||
124 | class DocLnk : public AppLnk | 124 | class DocLnk : public AppLnk |
125 | { | 125 | { |
126 | public: | 126 | public: |
127 | DocLnk(); | 127 | DocLnk(); |
128 | DocLnk( const DocLnk &o ) : AppLnk(o) { } | 128 | DocLnk( const DocLnk &o ) : AppLnk(o) { } |
129 | DocLnk( const QString &file ); | 129 | DocLnk( const QString &file ); |
130 | DocLnk( const QString &file, bool may_be_desktopfile ); | 130 | DocLnk( const QString &file, bool may_be_desktopfile ); |
131 | virtual ~DocLnk(); | 131 | virtual ~DocLnk(); |
132 | 132 | ||
133 | 133 | ||
134 | #ifdef QTOPIA_INTERNAL_APPLNKASSIGN | 134 | #ifdef QTOPIA_INTERNAL_APPLNKASSIGN |
135 | DocLnk &operator=(const DocLnk &other) { AppLnk::operator=(other); return *this; } | 135 | DocLnk &operator=(const DocLnk &other) { AppLnk::operator=(other); return *this; } |
136 | #endif | 136 | #endif |
137 | 137 | ||
138 | QString exec() const; | 138 | QString exec() const; |
139 | 139 | ||
140 | protected: | 140 | protected: |