|
|
|
@ -12,6 +12,8 @@ |
|
|
|
|
#include <QUrl> |
|
|
|
|
#include <QByteArray> |
|
|
|
|
|
|
|
|
|
//#include "UBDockPaletteWidget.h"
|
|
|
|
|
|
|
|
|
|
enum UBFeatureElementType |
|
|
|
|
{ |
|
|
|
|
FEATURE_CATEGORY, |
|
|
|
@ -30,25 +32,30 @@ class UBFeature |
|
|
|
|
public: |
|
|
|
|
UBFeature() {;} |
|
|
|
|
//UBFeature(const UBFeature &f);
|
|
|
|
|
UBFeature(const QString &url, const QPixmap &icon, const QString &name, const QString &realPath, UBFeatureElementType type = FEATURE_CATEGORY); |
|
|
|
|
UBFeature(const QString &url, const QPixmap &icon, const QString &name, const QUrl &realPath, UBFeatureElementType type = FEATURE_CATEGORY); |
|
|
|
|
virtual ~UBFeature() {;} |
|
|
|
|
QString getName() const { return mName; } |
|
|
|
|
QPixmap getThumbnail() const {return mThumbnail;} |
|
|
|
|
QString getUrl() const { return virtualPath; } |
|
|
|
|
QString getVirtualPath() const { return virtualPath; } |
|
|
|
|
//QString getPath() const { return mPath; };
|
|
|
|
|
QString getFullPath() const { return mPath; } |
|
|
|
|
QString getVirtualPath() const { return virtualPath + "/" + mName; } |
|
|
|
|
QUrl getFullPath() const { return mPath; } |
|
|
|
|
QString getFullVirtualPath() const { return virtualPath + "/" + mName; } |
|
|
|
|
QString getUrl() const; |
|
|
|
|
UBFeatureElementType getType() const { return elementType; } |
|
|
|
|
|
|
|
|
|
bool isFolder() const; |
|
|
|
|
bool isDeletable() const; |
|
|
|
|
bool operator ==( const UBFeature &f )const; |
|
|
|
|
bool operator !=( const UBFeature &f )const; |
|
|
|
|
const QMap<QString,QString> & getMetadata() const { return metadata; } |
|
|
|
|
void setMetadata( const QMap<QString,QString> &data ) { metadata = data; } |
|
|
|
|
private: |
|
|
|
|
QString virtualPath; |
|
|
|
|
QPixmap mThumbnail; |
|
|
|
|
QString mName; |
|
|
|
|
QString mPath; |
|
|
|
|
QUrl mPath; |
|
|
|
|
UBFeatureElementType elementType; |
|
|
|
|
QMap<QString,QString> metadata; |
|
|
|
|
}; |
|
|
|
|
Q_DECLARE_METATYPE( UBFeature ) |
|
|
|
|
|
|
|
|
@ -65,9 +72,13 @@ class UBFeaturesController : public QObject |
|
|
|
|
const QString& getRootPath()const { return rootPath; } |
|
|
|
|
|
|
|
|
|
void addItemToPage( const UBFeature &item ); |
|
|
|
|
void addItemAsBackground( const UBFeature &item ); |
|
|
|
|
const UBFeature& getCurrentElement()const { return currentElement; } |
|
|
|
|
void setCurrentElement( const UBFeature &elem ) { currentElement = elem; } |
|
|
|
|
const UBFeature & getTrashElement () const { return trashElement; } |
|
|
|
|
|
|
|
|
|
UBFeature addDownloadedFile( const QUrl &sourceUrl, const QByteArray &pData ); |
|
|
|
|
|
|
|
|
|
UBFeature moveItemToFolder( const QUrl &url, const UBFeature &destination ); |
|
|
|
|
UBFeature copyItemToFolder( const QUrl &url, const UBFeature &destination ); |
|
|
|
|
void deleteItem( const QUrl &url ); |
|
|
|
@ -75,13 +86,14 @@ class UBFeaturesController : public QObject |
|
|
|
|
UBFeature newFolder( const QString &name ); |
|
|
|
|
UBFeature addToFavorite( const QUrl &path ); |
|
|
|
|
void removeFromFavorite( const QUrl &path ); |
|
|
|
|
UBFeature importImage( const QImage &image, const UBFeature &destination ); |
|
|
|
|
|
|
|
|
|
static QString fileNameFromUrl( const QUrl &url ); |
|
|
|
|
static QPixmap thumbnailForFile( const QString &path ); |
|
|
|
|
static bool isDeletable( const QUrl &url ); |
|
|
|
|
private: |
|
|
|
|
void initDirectoryTree(); |
|
|
|
|
void fileSystemScan(const QString &currPath, const QString & currVirtualPath); |
|
|
|
|
void fileSystemScan(const QUrl &currPath, const QString & currVirtualPath); |
|
|
|
|
static QPixmap createThumbnail(const QString &path); |
|
|
|
|
//void addImageToCurrentPage( const QString &path );
|
|
|
|
|
void loadFavoriteList(); |
|
|
|
@ -93,22 +105,22 @@ class UBFeaturesController : public QObject |
|
|
|
|
QList <UBFeature> *featuresList; |
|
|
|
|
UBFeature *rootElement; |
|
|
|
|
|
|
|
|
|
QString mUserAudioDirectoryPath; |
|
|
|
|
QString mUserVideoDirectoryPath; |
|
|
|
|
QString mUserPicturesDirectoryPath; |
|
|
|
|
QString mUserInteractiveDirectoryPath; |
|
|
|
|
QString mUserAnimationDirectoryPath; |
|
|
|
|
QUrl mUserAudioDirectoryPath; |
|
|
|
|
QUrl mUserVideoDirectoryPath; |
|
|
|
|
QUrl mUserPicturesDirectoryPath; |
|
|
|
|
QUrl mUserInteractiveDirectoryPath; |
|
|
|
|
QUrl mUserAnimationDirectoryPath; |
|
|
|
|
|
|
|
|
|
QString libraryPath; |
|
|
|
|
QString mLibAudioDirectoryPath; |
|
|
|
|
QString mLibVideoDirectoryPath; |
|
|
|
|
QString mLibPicturesDirectoryPath; |
|
|
|
|
QString mLibInteractiveDirectoryPath; |
|
|
|
|
QString mLibAnimationDirectoryPath; |
|
|
|
|
QString mLibApplicationsDirectoryPath; |
|
|
|
|
QString mLibShapesDirectoryPath; |
|
|
|
|
QString trashDirectoryPath; |
|
|
|
|
QString mLibSearchDirectoryPath; |
|
|
|
|
QUrl mLibAudioDirectoryPath; |
|
|
|
|
QUrl mLibVideoDirectoryPath; |
|
|
|
|
QUrl mLibPicturesDirectoryPath; |
|
|
|
|
QUrl mLibInteractiveDirectoryPath; |
|
|
|
|
QUrl mLibAnimationDirectoryPath; |
|
|
|
|
QUrl mLibApplicationsDirectoryPath; |
|
|
|
|
QUrl mLibShapesDirectoryPath; |
|
|
|
|
QUrl trashDirectoryPath; |
|
|
|
|
QUrl mLibSearchDirectoryPath; |
|
|
|
|
|
|
|
|
|
QString rootPath; |
|
|
|
|
QString audiosPath; |
|
|
|
@ -131,9 +143,9 @@ class UBFeaturesController : public QObject |
|
|
|
|
UBFeature interactElement; |
|
|
|
|
UBFeature flashElement; |
|
|
|
|
UBFeature shapesElement; |
|
|
|
|
UBFeature searchElement; |
|
|
|
|
UBFeature webSearchElement; |
|
|
|
|
|
|
|
|
|
QSet <QString> *favoriteSet; |
|
|
|
|
QSet <QUrl> *favoriteSet; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|