view src/aci2/bmi/mmiMmsMenu.c @ 600:8f50b202e81f

board preprocessor conditionals: prep for more FC hw in the future This change eliminates the CONFIG_TARGET_FCDEV3B preprocessor symbol and all preprocessor conditionals throughout the code base that tested for it, replacing them with CONFIG_TARGET_FCFAM or CONFIG_TARGET_FCMODEM. These new symbols are specified as follows: CONFIG_TARGET_FCFAM is intended to cover all hardware designs created by Mother Mychaela under the FreeCalypso trademark. This family will include modem products (repackagings of the FCDEV3B, possibly with RFFE or even RF transceiver changes), and also my desired FreeCalypso handset product. CONFIG_TARGET_FCMODEM is intended to cover all FreeCalypso modem products (which will be firmware-compatible with the FCDEV3B if they use TI Rita transceiver, or will require a different fw build if we switch to one of Silabs Aero transceivers), but not the handset product. Right now this CONFIG_TARGET_FCMODEM preprocessor symbol is used to conditionalize everything dealing with MCSI. At the present moment the future of FC hardware evolution is still unknown: it is not known whether we will ever have any beyond-FCDEV3B hardware at all (contingent on uncertain funding), and if we do produce further FC hardware designs, it is not known whether they will retain the same FIC modem core (triband), if we are going to have a quadband design that still retains the classic Rita transceiver, or if we are going to switch to Silabs Aero II or some other transceiver. If we produce a quadband modem that still uses Rita, it will run exactly the same fw as the FCDEV3B thanks to the way we define TSPACT signals for the RF_FAM=12 && CONFIG_TARGET_FCFAM combination, and the current fcdev3b build target will be renamed to fcmodem. OTOH, if that putative quadband modem will be Aero-based, then it will require a different fw build target, the fcdev3b target will stay as it is, and the two targets will both define CONFIG_TARGET_FCFAM and CONFIG_TARGET_FCMODEM, but will have different RF_FAM numbers. But no matter which way we are going to evolve, it is not right to have conditionals on CONFIG_TARGET_FCDEV3B in places like ACI, and the present change clears the way for future evolution.
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 01 Apr 2019 01:05:24 +0000
parents 3c2acfa1a72f
children
line wrap: on
line source

/*******************************************************************************

					TI (Shanghai)

********************************************************************************                                                                              

 This software product is the property of TI (Shanghai) Ltd and may not be
 disclosed to any third party without the express permission of the owner.                                 
                                                                              
********************************************************************************

 $Project name:	TISHMMS Project                                                     
 $Project code:	BMI (6349)                                                           
 $Module:		MMS
 $File:		    mmimmsmenu.h
 $Revision:		1.0                                                       
                                                                              
 $Author:		Yan Bin(bin-yan@ti.com)                                                          
 $Date:		    26/08/03                                                     
                                                                               
********************************************************************************
                                                                              
 Description:
 
    This module provides definitions of the types and
    constants which are shared across the MMS
    application modules.
   
********************************************************************************
 $History: MmiMMSMenu.c

    May 11 2005  REF:  MMI-SPR-29887  x0012849
    To Implement the deferred MMS retrieval.
    CRR: 25291 - xrashmic 14 Oct 2004
    Description: The sent EMS is stored in unsent folder.
    Solution: The Outbox has been removed, instead we now have Sent folder for the sent EMS 

    CRR 25277: 06 Oct 2004 - xpradipg
    Description: Recieving an ems when inbox is open
    Solution: A refresh event is sent to the Inbox list which inturn updates 
    the list

    xrashmic 19 Aug, 2004 Bug: 2, 3, 36 and 42
    All the status screen, .i.e sending, receiving etc. are displayed separatly for the MMS module.
    Previously the WAP screens were being used. 

	26/08/03			Original TI(Shanghai) BMI version.	
	   
 $End

*******************************************************************************/

#define MMI_MMSMENU_C

#define ENTITY_MFW

/* includes */
#include <string.h>
#include <stdio.h>
#include <stdlib.h>

#if defined (NEW_FRAME)

#include "typedefs.h"
#include "vsi.h"
#include "pei.h"
#include "custom.h"
#include "gsm.h"

#else

#include "STDDEFS.H"
#include "custom.h"
#include "gsm.h"
#include "vsi.h"

#endif
#include "prim.h"

#include "mfw_mfw.h"
#include "mfw_win.h"
//#include "mfw_edt.h"
#include "mfw_tim.h"
#include "mfw_phb.h"
#include "ksd.h"
#include "psa.h"
#include "mfw_sms.h"
#include "mfw_smsi.h"
#include "mfw_icn.h"
#include "mfw_mnu.h"
#include "mfw_lng.h"
#include "mfw_sat.h"
#include "mfw_kbd.h"
#include "mfw_nm.h"


#include "dspl.h"

#include "MmiMain.h"
#include "MmiDummy.h"
#include "MmiMmi.h"

#include "MmiDialogs.h"
#include "MmiLists.h"
#include "MmiMenu.h"
#include "MmiSoftKeys.h"
//#include "MmiEditor.h"
#include "MmiBookShared.h"
#include "mmimmsmenu.h"
#include "mmimmsbox.h"
//#include "mmismssend.h"
//#include "mmiSmsIdle.h"

#include "cus_aci.h"

#include "mfw_ffs.h"
//#include "pcm.h"

#include "mmiColours.h"

extern T_MFW_HND MMSCreate_start(T_MFW_HND parent_window, MfwMnuAttr *menuAttr);

//xrashmic 19 Aug, 2004 Bug: 2, 3, 36 and 42
int MMSactive=FALSE;
//CRR 25277: 06 Oct 2004 - xpradipg
//stores the window handle for the MMS Inbox listing
MfwHnd mmsboxwinhnd;
/*******************************************************************************

 $Function:     M_exeMMSCreate

 $Description:  This function is called when the user press Create MMS in the
          main MMS menu

 $Returns:    Execution status

 $Arguments:  m - menu handler
        i - Menu item selected

*******************************************************************************/

int M_exeMMSCreate(MfwMnu* m, MfwMnuItem* i)
{
    T_MFW_HND       win  = mfwParent(mfw_header());
    //xrashmic 19 Aug, 2004 Bug: 2, 3, 36 and 42
    //This flag is set as soon as we enter the MMS create screen. So that all the status/error information
    // is passed to the MMS module.
    MMSactive=TRUE;
#ifdef FF_MMI_MMS
  /* Call the function that manages Create MMS */
  MMSCreate_start(win, NULL);
#endif

  return 1;
}

/*******************************************************************************

 $Function:     M_exeEMSCreate   pinghua add  for EMS test add 

 $Description:  This function is called when the user press Create MMS in the
          main MMS menu

 $Returns:    Execution status

 $Arguments:  m - menu handler
        i - Menu item selected

*******************************************************************************/

int M_exeEMSCreate(MfwMnu* m, MfwMnuItem* i)
{
    T_MFW_HND       win  = mfwParent(mfw_header());

   /* Call the function that manages Create EMS */
   EMSCreate_start(win, NULL);
   //T_MFW_HND EMSCreate_start(T_MFW_HND parent_window, MfwMnuAttr *menuAttr);

  return 1;
}

/*******************************************************************************

 $Function:     M_exeMMSInbox

 $Description:  This function is called when the user press MMS inbox in the
          main MMS menu

 $Returns:    Execution status

 $Arguments:  m - menu handler
        i - Menu item selected

*******************************************************************************/

int M_exeMMSInbox(MfwMnu* m, MfwMnuItem* i)
{
    T_MFW_HND       win  = mfwParent(mfw_header());

  /* Call the function that manages Inbox */
  //CRR 25277: 06 Oct 2004 - xpradipg
  //The Inbox window handle is being assigned
  mmsboxwinhnd = MMSBox_start(win, (MfwMnuAttr*)MMS_INBOX);

  return 1;
}

/*******************************************************************************

 $Function:     M_exeMMSUnsent

 $Description:  This function is called when the user press MMS outbox in the
          main MMS menu

 $Returns:    Execution status

 $Arguments:  m - menu handler
        i - Menu item selected

*******************************************************************************/
int M_exeMMSUnsent(MfwMnu* m, MfwMnuItem* i)
{
    T_MFW_HND       win  = mfwParent(mfw_header());

  /* Call the function that manages Create MMS */
  MMSBox_start(win, (MfwMnuAttr*)MMS_UNSENT);

  return 1;
}

/*******************************************************************************

 $Function:     M_exeMMSSent

 $Description:  This function is called when the user press MMS Sent in the
          main MMS menu.
      	   CRR: 25291 - xrashmic 14 Oct 2004
	   The Outbox has been removed, instead we now have Sent folder in MMS

 $Returns:    Execution status

 $Arguments:  m - menu handler
        i - Menu item selected

*******************************************************************************/
int M_exeMMSSent(MfwMnu* m, MfwMnuItem* i)
{
    T_MFW_HND       win  = mfwParent(mfw_header());

  /* Call the function that manages Create MMS */
  MMSBox_start(win, (MfwMnuAttr*)MMS_SENT);

  return 1;
}

/*******************************************************************************

 $Function:     M_exeMMSSettings

 $Description:  This function is called when the user press MMS settings in the
          main MMS menu

 $Returns:    Execution status

 $Arguments:  m - menu handler
        i - Menu item selected

*******************************************************************************/
int M_exeMMSSettings(MfwMnu* m, MfwMnuItem* i)
{
    T_MFW_HND       win  = mfwParent(mfw_header());


#ifdef FF_MMI_MMS
  /* Call the function that manages Create MMS */
  MMSSetting_start(win, NULL);
#endif

  return 1;
}
// May 11 2005  REF:  MMI-SPR-29887  x0012849
// New Function is added.
/*******************************************************************************
 $Function:     MmsRetrievalTypeRequest

 $Description:  This function is called when the user press MMS Retrieval Type  in the
          main MMS menu
 $Returns:    1 always 
 $Arguments:  m - menu handler
        i - Menu item selected

*******************************************************************************/
int MmsRetrievalTypeRequest(MfwMnu* m, MfwMnuItem* i)
{
    int index = m->lCursor[m->level];
    T_DISPLAY_DATA DisplayInfo;   
    T_MFW_HND win  = mfwParent(mfw_header());
     int TextId2;
     int8 Result;	
    BOOL RetrievalType=FALSE;
    TRACE_FUNCTION("MmsRetrievalTypeRequest");     
    switch(index)
    	{
    	  case 0:
		  Result=flash_mms_retrieval_type_write( 0);	
		   if(0 ==  Result)
		   	TextId2 = TxtChanged ;
		   else
		   	TextId2 = TxtFailed; 
		  break;
         case 1:
	 	 Result=flash_mms_retrieval_type_write( 1);
		   if(0 ==  Result)
		   	TextId2 = TxtChanged ;
		   else
		   	TextId2 = TxtFailed; 		 
		 break; 
	  case 2:
	        flash_mms_retrieval_type_read(&RetrievalType);
	        if(0 == RetrievalType) // immediate
		      TextId2      = TxtImmediate;
		 else
		      TextId2      = TxtDeferred;	
		 break;
	  default:
	  	 break;
    	}	  
	dlg_initDisplayData_TextId( &DisplayInfo, TxtSoftOK, TxtNull,TxtRetrieveCondition, TextId2, COLOUR_POPUP);
       dlg_initDisplayData_events( &DisplayInfo, (T_VOID_FUNC)NULL, THREE_SECS, KEY_LEFT );	
      	info_dialog(win,&DisplayInfo);       
    	return 1;
}
#undef MMI_MMSMENU_C