summaryrefslogtreecommitdiff
path: root/library/applnk.h
authorzecke <zecke>2002-09-10 12:09:49 (UTC)
committer zecke <zecke>2002-09-10 12:09:49 (UTC)
commit6b77a1cdb9536b1c135eb86d53a6b2c22c19b0a4 (patch) (side-by-side diff)
tree6ebc93c6432f4ed9d00ef1448b6a047ef522a79a /library/applnk.h
parentd10cddb3c9ce75bc90b14add14bc133737fe35aa (diff)
downloadopie-6b77a1cdb9536b1c135eb86d53a6b2c22c19b0a4.zip
opie-6b77a1cdb9536b1c135eb86d53a6b2c22c19b0a4.tar.gz
opie-6b77a1cdb9536b1c135eb86d53a6b2c22c19b0a4.tar.bz2
Qtopia1-6 merge
still to test bic changes to be resolved more changes to be made?
Diffstat (limited to 'library/applnk.h') (more/less context) (ignore whitespace changes)
-rw-r--r--library/applnk.h38
1 files changed, 34 insertions, 4 deletions
diff --git a/library/applnk.h b/library/applnk.h
index 9b5523e..71b62ef 100644
--- a/library/applnk.h
+++ b/library/applnk.h
@@ -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.
**
@@ -49,2 +49,3 @@ public:
const QPixmap& bigPixmap() const;
+ QString icon() const { return mIconFile; }
virtual QString exec() const { return mExec; }
@@ -60,2 +61,3 @@ public:
+ bool fileKnown() const { return !mFile.isNull(); }
bool linkFileKnown() const { return !mLinkFile.isNull(); }
@@ -80,6 +82,10 @@ public:
-//#ifdef QTOPIA_INTERNAL_PRELOADACCESS
+#ifdef QTOPIA_INTERNAL_PRELOADACCESS
bool isPreloaded() const;
void setPreloaded(bool yesNo);
-//#endif
+#endif
+
+#ifdef QTOPIA_INTERNAL_APPLNKASSIGN
+ AppLnk &operator=(const AppLnk &other);
+#endif
@@ -87,4 +93,9 @@ protected:
QString mName;
+
+ /* remove for Qtopia 3.0 -zecke */
QPixmap mPixmap;
+
+ /* remove for Qtopia 3.0 -zecke */
QPixmap mBigPixmap;
+
QString mExec;
@@ -106,2 +117,5 @@ protected:
void storeLink() const;
+
+private:
+ const QPixmap& pixmap(int pos, int size) const;
};
@@ -117,2 +131,7 @@ public:
+
+#ifdef QTOPIA_INTERNAL_APPLNKASSIGN
+ DocLnk &operator=(const DocLnk &other) { AppLnk::operator=(other); return *this; }
+#endif
+
QString exec() const;
@@ -143,2 +162,13 @@ public:
bool remove(AppLnk*);
+ void clear() {
+ QListIterator<AppLnk> it( mApps );
+ for ( ; it.current(); ) {
+ AppLnk* a = *it;
+ ++it;
+ a->mId = 0;
+ delete a;
+ }
+ mApps.clear();
+ typs.clear();
+ }