diff -r 03646e8da489 -r 30f14686fb04 homescreenapp/hsdomainmodel/src/hsshortcutservice.cpp --- a/homescreenapp/hsdomainmodel/src/hsshortcutservice.cpp Fri Jun 11 13:30:16 2010 +0300 +++ b/homescreenapp/hsdomainmodel/src/hsshortcutservice.cpp Wed Jun 23 18:03:36 2010 +0300 @@ -28,17 +28,33 @@ const char gShortcutWidgetUri[] = "hsshortcutwidgetplugin"; } + +/*! + \class HsShortcutService + \ingroup group_hsdomainmodel + \brief +*/ + +/*! + +*/ HsShortcutServicePrivate::HsShortcutServicePrivate(QStateMachine *stateMachine, QObject *parent) : QObject(parent), mStateMachine(stateMachine) { } +/*! + +*/ HsShortcutServicePrivate::~HsShortcutServicePrivate() { } +/*! + +*/ void HsShortcutServicePrivate::executeCollectionAction( int shortcutId, const QString& collectionType) { @@ -47,6 +63,9 @@ mStateMachine->postEvent(menuEvent); } +/*! + +*/ bool HsShortcutServicePrivate::isItemShortcutWidget(int itemId) { HsDatabase *db = HsDatabase::instance(); @@ -65,6 +84,9 @@ return false; } +/*! + +*/ HsShortcutService *HsShortcutService::instance(QStateMachine *stateMachine) { if (!mInstance && stateMachine) { @@ -73,21 +95,34 @@ return mInstance; } +/*! + +*/ HsShortcutService::~HsShortcutService() { + } +/*! + +*/ void HsShortcutService::executeCollectionAction( int shortcutId, const QString& collectionType) { mD->executeCollectionAction(shortcutId, collectionType); } +/*! + +*/ bool HsShortcutService::isItemShortcutWidget(int itemId) { return mD->isItemShortcutWidget(itemId); } +/*! + +*/ HsShortcutService::HsShortcutService(QStateMachine *stateMachine, QObject *parent) : QObject(parent) {