fotaapplication/fotaserver/inc/fsview.h
changeset 73 ae69c2e8bc34
parent 66 08c8318ec9cb
equal deleted inserted replaced
71:d2517372cc44 73:ae69c2e8bc34
    21 #include <hbview.h>
    21 #include <hbview.h>
    22 #include <QObject>
    22 #include <QObject>
    23 
    23 
    24 class CFotaServer;
    24 class CFotaServer;
    25 
    25 
    26 class FSView : public HbView
    26 class HbFSView : public HbView
    27     {
    27     {
    28     Q_OBJECT
    28     Q_OBJECT
    29 
    29 
    30 public:
    30 public:
    31     FSView();
    31     /**
    32     ~FSView();
    32      * Used to disable the RSK of the dialog when resume dialogs
    33 signals :
    33      * @param   aVal - to enable or disable the key
    34 	/**
    34      * @return   void
    35 	 * applicationReady() - To emit the application ready signal for matti tool.
    35      */
    36    */
    36     HbFSView();
    37    void applicationReady();
    37     
    38 public:   
    38     /**
       
    39      * Used to disable the RSK of the dialog when resume dialogs
       
    40      * @param   aVal - to enable or disable the key
       
    41      * @return   void
       
    42      */
       
    43     ~HbFSView();
       
    44 
       
    45     /**
       
    46      * Sets the instance of the fotaserver to the view to access server related variables.
       
    47      * @param   aServer - Instance of the fotaserver which is to be set.
       
    48      * @return   void
       
    49      */
    39     void SetServer(CFotaServer * aServer);
    50     void SetServer(CFotaServer * aServer);
    40     
    51     
    41     //Handles the incoming events
    52     /**
       
    53      * Implements the eventFilter function of HbView and sets the fullscreen dialog to be visible
       
    54      * @param   object - The object on which the event is activated. 
       
    55      * @param   event - the event ID of the event which is received
       
    56      * @return   void
       
    57      */
    42     bool eventFilter(QObject *object, QEvent *event);
    58     bool eventFilter(QObject *object, QEvent *event);
    43 
    59 
    44 private:
    60 private:
    45     CFotaServer *iServer;
    61     CFotaServer *m_Server;
    46     TBool Initilized;
       
    47     };
    62     };
    48 #endif /* FSVIEW_H_ */
    63 #endif /* FSVIEW_H_ */