diff -r 60cc495d7bcf -r ccee5c4b0de4 ui/inc/glxmodelparm.h --- a/ui/inc/glxmodelparm.h Tue Sep 07 13:12:03 2010 +0530 +++ b/ui/inc/glxmodelparm.h Mon Sep 20 12:39:08 2010 +0530 @@ -32,7 +32,8 @@ mDepth(depth) , mFilterType( filterType ), mContextMode( contextMode ), - mUri(uri) + mUri(uri), + mFetcherFiletrType(EGlxFetcherFilterNone) { } @@ -44,8 +45,11 @@ QString path() { return mUri; } void setPath(QString uri = NULL) { mUri=uri; } TGlxFilterItemType filterType() { return mFilterType; } + void setFilterType(TGlxFilterItemType filterType) { mFilterType = filterType; } void setContextMode( GlxContextMode contextMode ) { mContextMode = contextMode ; } GlxContextMode contextMode() { return mContextMode ; } + void setFetcherFiterType(GlxFetcherFilterType filterType ){mFetcherFiletrType = filterType;} + GlxFetcherFilterType fetcherFiterType() { return mFetcherFiletrType;} private: qint32 mCollectionId; @@ -53,6 +57,7 @@ TGlxFilterItemType mFilterType; GlxContextMode mContextMode; QString mUri; + GlxFetcherFilterType mFetcherFiletrType; };