homescreenapp/stateplugins/hsapplibrarystateplugin/inc/hsallcollectionsstate.h
changeset 39 4e8ebe173323
parent 36 cdae8c6c3876
child 46 23b5d6a29cce
--- a/homescreenapp/stateplugins/hsapplibrarystateplugin/inc/hsallcollectionsstate.h	Fri Apr 16 14:54:01 2010 +0300
+++ b/homescreenapp/stateplugins/hsapplibrarystateplugin/inc/hsallcollectionsstate.h	Mon May 03 12:24:59 2010 +0300
@@ -54,166 +54,56 @@
 
 public:
 
-    /**
-     * Constructor.
-     *
-     * @since S60 ?S60_version.
-     * @param containerView Container view.
-     * @param parent Owner.
-     */
     HsAllCollectionsState(HsMenuView &menuView, QState *parent = 0);
 
-
-    /**
-     * Destructor.
-     *
-     * @since S60 ?S60_version.
-     */
     ~HsAllCollectionsState();
 
 signals:
 
-    /**
-     * Signal emitted when sort order is changed.
-     *
-     * @since S60 ?S60_version.
-     * @param sortOrder new sort order.
-     */
     void sortOrderChanged(HsSortAttribute sortAttribute);
 
 public slots:
-    /**
-     * Populates all folders
-     *
-     * @since S60 ?S60_version.
-     */
+
     void scrollToBeginning();
 
 private slots:
 
     bool openTaskSwitcher();
 
-    /**
-     * Slot connected to List widget in normal mode.
-     *
-     * @since S60 ?S60_version.
-     * @param index Model index of the activated item.
-     */
     void listItemActivated(const QModelIndex &index);
 
-    /**
-     * Slot connected to List widget in add mode.
-     *
-     * @since S60 ?S60_version.
-     * @param index Model index of the activated item.
-     */
     void addActivated(const QModelIndex &index);
 
-    /**
-     * Slot connected to List widget in normal mode.
-     * Called when item long pressed.
-     *
-     * @since S60 ?S60_version.
-     * @param item View item.
-     * @param coords Press point coordinates.
-     */
     void listItemLongPressed(HbAbstractViewItem *item,
                              const QPointF &coords);
 
-    /**
-     * Slot connected to List widget in add mode.
-     * Called when item long pressed.
-     *
-     * @since S60 ?S60_version.
-     * @param item View item.
-     * @param coords Press point coordinates.
-     */
     void addLongPressed(HbAbstractViewItem *item,
                         const QPointF &coords);
 
-    /**
-     * Slot connected to constructMenu.
-     *
-     * @since S60 ?S60_version.
-     */
     void createNewCollection();
 
-    /**
-     * Slot connected to constructMenu.
-     *
-     * @since S60 ?S60_version.
-     */
     void createArrangeCollection();
 
-    /**
-     * Menu custom sort action slot.
-     *
-     * @since S60 ?S60_version.
-     */
     void customMenuAction();
 
-    /**
-     * Menu ascending sort action slot.
-     *
-     * @since S60 ?S60_version.
-     */
     void ascendingMenuAction();
 
-    /**
-     * Menu descending sort action slot.
-     *
-     * @since S60 ?S60_version.
-     */
     void descendingMenuAction();
 
-    /**
-     * Slot invoked when a state is entered.
-     *
-     * @since S60 ?S60_version.
-     */
     void stateEntered();
 
-    /**
-     * Slot invoked when add mode is entered.
-     *
-     * @since S60 ?S60_version.
-     */
     void addModeEntered();
 
-    /**
-     * Slot invoked when normal mode is entered.
-     *
-     * @since S60 ?S60_version.
-     */
     void normalModeEntered();
 
-    /**
-     * Slot invoked when normal mode is exited.
-     *
-     * @since S60 ?S60_version.
-     */
     void normalModeExited();
 
-    /**
-     * Slot invoked when a state is exited.
-     *
-     * @since S60 ?S60_version.
-     */
     void stateExited();
 
 private:
 
-    /**
-     * Constructs contained objects.
-     *
-     * @since S60 ?S60_version.
-     */
     void construct();
-    /**
-     * Creates and installs menu options for the view
-     *
-     * @since S60 ?S60_version.
-     */
+
     void setMenuOptions();
 
 private:
@@ -225,7 +115,6 @@
 
     /**
      * The List View widget.
-     * Own.
      */
     HsMenuView &mMenuView;