homescreenapp/stateplugins/hsapplibrarystateplugin/inc/hsallappsstate.h
changeset 39 4e8ebe173323
parent 36 cdae8c6c3876
child 46 23b5d6a29cce
--- a/homescreenapp/stateplugins/hsapplibrarystateplugin/inc/hsallappsstate.h	Fri Apr 16 14:54:01 2010 +0300
+++ b/homescreenapp/stateplugins/hsapplibrarystateplugin/inc/hsallappsstate.h	Mon May 03 12:24:59 2010 +0300
@@ -51,144 +51,49 @@
     HS_STATES_TEST_FRIEND_CLASS(MenuStatesTest)
 
 public:
-
-    /**
-     * Constructor.
-     *
-     * @since S60 ?S60_version.
-     * @param containerView Container view.
-     * @param parent Owner.
-     */
     HsAllAppsState(HsMenuView &menuView, QState *parent = 0);
-
-    /**
-     * Destructor.
-     *
-     * @since S60 ?S60_version.
-     */
     ~HsAllAppsState();
 
 public slots:
-    /**
-     * Populates all applications
-     *
-     * @since S60 ?S60_version.
-     */
     void scrollToBeginning();
-
-    /**
-     * Sets collections sort order
-     *
-     * @since S60 ?S60_version.
-     * @param sortOrder sort order.
-     */
     void collectionsSortOrder(HsSortAttribute sortAttribute);
 
 private slots:
 
     bool openTaskSwitcher();
 
-    /**
-     * Slot connected to List widget in normal mode.
-     *
-     * @since S60 ?S60_version.
-     * @param index Model index of the activated item.
-     */
+    bool checkSoftwareUpdates();
+
     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 called when application is adding to collection.
-     *
-     * @since S60 ?S60_version.
-     */
     void addToCollection();
 
-    /**
-     * Menu ascending sort action slot.
-     *
-     * @since S60 ?S60_version.
-     */
+    void openInstalledView();
+
     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 entered.
-     *
-     * @since S60 ?S60_version.
-     */
     void addModeEntered();
 
-    /**
-     * Slot invoked when normal mode entered.
-     *
-     * @since S60 ?S60_version.
-     */
     void normalModeEntered();
 
-    /**
-     * 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();
 
     void addToHomeScreen(const QModelIndex &index);
@@ -207,7 +112,6 @@
 
     /**
      * The View widget.
-     * Own.
      */
     HsMenuView &mMenuView;