Fixed nabi issues 36791 36868 36881 36879 36280 36808 36332
[apps/osp/Call.git] / inc / CallPresentationModel.h
index 58b7aec..19f8461 100644 (file)
@@ -24,6 +24,7 @@
 #define _PHN_CALL_PRESENTATION_MODEL_H_
 
 #include <FApp.h>
+#include "CallAppControlRequestMgr.h"
 #include "CallTypes.h"
 #include "CallITelephonyEventListener.h"
 #include "CalllogManager.h"
@@ -51,10 +52,11 @@ private:
        virtual ~CallPresentationModel(void);
        CallPresentationModel& operator =(const CallPresentationModel& presentor);
 
-
        result Construct(void);
        static void CreateInstance(void);
        static void DestroyInstance(void);
+       //gets the sim info
+       result GetSimInfo(void);
 
 public:
        //set the telephony event listener
@@ -100,7 +102,7 @@ public:
        //Function to get the conference call info
        AppCallInfo* GetConferenceCallInfoN(void);
        //Split this call from the conference call
-       void SplitFromConference(SplitConfCallerCmdIds splitCallerCmdId, Tizen::Base::Collection::IListT<AppCallInfo>* pConfCallList);
+       bool SplitFromConference(SplitConfCallerCmdIds splitCallerCmdId, Tizen::Base::Collection::IListT<AppCallInfo>* pConfCallList);
        //End this single call from the conference call
        void EndCallFromConference(EndConfCallerCmdIds endCallerCmdId, Tizen::Base::Collection::IListT<AppCallInfo>* pConfCallList);
        //returns true, if split operation is allowed. Else, returns false.
@@ -130,7 +132,23 @@ public:
        //Function is used to auto reject the call based on call settings and return true, if rejected.
        bool CheckIncomingCallToBeRejected(AppCallInfo* pIncomingCallInfo);
        //Launch dial appcontrol for add call senario
-       result LaunchDialAppControl();
+       void LaunchDialAppControl();
+       //Used to check if Join button should be enabled or not
+       bool IsEnableJoinCallButton(void);
+       //Used to check if incomig call is present
+       bool IsIncomingorDialingCallPresent(void);
+       //Used to launch Messaging AppControl to compose message.
+       bool LaunchComposeMessageAppControl(Tizen::Base::String& contactNumber, Tizen::App::IAppControlResponseListener* pListener);
+       //Used to make "ViewContact" AppControl request.
+       bool LaunchViewContactAppControl(Tizen::Base::String& contactId, Tizen::App::IAppControlResponseListener* pListener);
+       //Used to make "AddContact" AppControl request.
+       bool LaunchAddContactAppControl(Tizen::Base::String& contactNumber, Tizen::App::IAppControlResponseListener* pListener);
+       //Used to check if there is any AppControl request in progress.
+       bool IsAppControlRunning(void);
+       //Used to abort any running AppControl request.
+       void AbortAppControlRequest(void);
+       //Used to complete any running AppControl request.
+       void AppControlRequestCompleted(void);
 
        //Event Listener methods from ITelephonyEventListener
        virtual void HandleCallConnected(Tizen::Base::Collection::IListT<AppCallInfo>& pCallList);
@@ -154,6 +172,8 @@ private:
        // incoming call is rejected with "Reject With message" by opening Msg AppControl.
        bool __isMessageAppControlRunning;
        bool __isDialAppControlRunning;
+       //Used to manage AppControl requests.
+       CallAppControlRequestMgr* __pAppControlMgr;
 };
 
 #endif // _PHN_CALL_PRESENTATION_MODEL_H_