homescreenapp/hsdomainmodel/src/hsshortcutservice.cpp
changeset 62 341166945d65
parent 55 03646e8da489
--- a/homescreenapp/hsdomainmodel/src/hsshortcutservice.cpp	Thu Jun 24 13:11:40 2010 +0100
+++ b/homescreenapp/hsdomainmodel/src/hsshortcutservice.cpp	Fri Jun 25 19:19:22 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)
 {