diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 84da08d7b7fcda12c85caeb5a10b4903770a6f69 (patch) | |
tree | 2a6aea76f2dfffb4cc04bb907c4725af94f70e72 /noatun-plugins/oblique/file.h | |
download | tdeaddons-84da08d7b7fcda12c85caeb5a10b4903770a6f69.tar.gz tdeaddons-84da08d7b7fcda12c85caeb5a10b4903770a6f69.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'noatun-plugins/oblique/file.h')
-rw-r--r-- | noatun-plugins/oblique/file.h | 115 |
1 files changed, 115 insertions, 0 deletions
diff --git a/noatun-plugins/oblique/file.h b/noatun-plugins/oblique/file.h new file mode 100644 index 0000000..21d3be9 --- /dev/null +++ b/noatun-plugins/oblique/file.h @@ -0,0 +1,115 @@ +// Copyright (c) 2003,2004 Charles Samuels <charles@kde.org> +// See the file COPYING for redistribution terms. + +#ifndef FILE_H +#define FILE_H + +#include "base.h" +#include <kurl.h> + + +class Slice; +class Query; + +/** + * just an file from the list in the database + **/ +class File +{ + + friend class Base; + File(Base *base, FileId id); + + mutable Base *mBase; + FileId mId; + +public: + /** + * create a copy of the reference + **/ + File(const File &ref); + /** + * create a null reference + **/ + File(); + + /** + * make me a copy of the reference + **/ + File &operator=(const File &ref); + + bool operator ==(const File &other) { return mId == other.mId; } + + inline operator bool() const { return mId; } + + QString file() const; + KURL url() const; + QString property(const QString &property) const; + void setProperty(const QString &key, const QString &value); + void clearProperty(const QString &key); + QStringList properties() const; + inline FileId id() const { return mId; } + void setId(FileId id); + + inline Base *base() { return mBase; } + inline const Base *base() const { return mBase; } + + /** + * when displaying me in @p query, place + * me immediately after @p after + **/ + void setPosition(Query *query, const File &after); + + /** + * when displaying @p query, set @p after according + * to what @ref setPosition was given. + * + * @return false if no position was set + **/ + bool getPosition(const Query *query, File *after) const; + + /** + * remove this file from the db, and emit Base::removed(File) + * the File objects don't change, but become invalid (careful!) + **/ + void remove(); + + void addTo(Slice *slice); + void removeFrom(Slice *slice); + bool isIn(const Slice *slice) const; + + /** + * load the tag information into the DB + **/ + void makeCache(); +}; + +class Slice +{ + int mId; + QString mName; + Base *mBase; + +public: + /** + * @internal + * create a slice based on its data + **/ + Slice(Base *base, int id, const QString &name); + + QString name() const; + void setName(const QString &name); + + /** + * remove this slice from the list of slices + * and dereference all Files from this slice + **/ + void remove(); + + int id() const { return mId; } +}; + + + + +#endif |