Ejemplo n.º 1
0
void CTstAppUi::ConstructL()
	{
	BaseConstructL(ENoAppResourceFile|ENoScreenFurniture);
	iControl=CTstControl::NewL();
	}
Ejemplo n.º 2
0
void CaCodecsTestAppUi::ConstructL(void)
    {
    BaseConstructL();

    }
Ejemplo n.º 3
0
// ---------------------------------------------------------
// CS60DbViewView2::ConstructL(const TRect& aRect)
// EPOC two-phased constructor
// ---------------------------------------------------------
//
void CS60DbViewView2::ConstructL()
	{
	BaseConstructL( R_S60DBVIEW_VIEW2 );
	}
// ---------------------------------------------------------------------------
// CAknMemorySelectionDialogMultiDrive::ConstructFromResourceL
// ---------------------------------------------------------------------------
//
void CAknMemorySelectionDialogMultiDrive::ConstructFromResourceL(
    TInt aResourceId,
    TBool aShowUnavailableDrives,
    TInt aIncludedMedias )
    {
    BaseConstructL();

    iIncludedMedias = aIncludedMedias;
    if( iIncludedMedias & AknCommonDialogsDynMem::EMemoryTypeMMC )
        {
        iIncludedMedias = iIncludedMedias |
            AknCommonDialogsDynMem::EMemoryTypeInternalMassStorage
            | AknCommonDialogsDynMem::EMemoryTypeMMCExternal;
        iIncludedMedias &= ( ~AknCommonDialogsDynMem::EMemoryTypeMMC );
        }
    TInt userDefinedId( 0 );
    if( aResourceId )
        {
        // If a resource id is given, read settings from it.
        userDefinedId = aResourceId;
        ReadFromResourceL( aResourceId );
        }

    // After user resource is read, "patch" the missing values with defaults
    // by reading all missing settings from default resource.
    SetResourceId( aResourceId, iDialogType );
    ReadFromResourceL( aResourceId );

    MAknMemorySelectionModel::TListBoxLayout layout(
        MAknMemorySelectionModel::ELayoutPopupMenu );
    if( iDialogType == ECFDDialogTypeDefaultSetting )
        {
        layout = MAknMemorySelectionModel::ELayoutSettingPage;
        }
    else if( AknCFDUtility::DirectoriesOnly( iDialogType ) )
        {
        layout = MAknMemorySelectionModel::ELayoutDoublePopup;
        }

    iModel = CAknMemorySelectionModelMultiDrive::NewL(
        iCoeEnv, &iRootPathArray, &iDefaultFolderArray,
        iIncludedMedias, aShowUnavailableDrives, layout );

    // Create model of listbox listing the drives in iRootPathArray:
    GetSystemDrivesL( userDefinedId );

    iEventHandler = CAknMemorySelectionEventHandler::NewL(
            iCoeEnv, iModel, NULL );


#ifdef _DEBUG
    _LOG( "[CAknMemorySelectionDialogMultiDrive] iRootPathArray: " );
    for( TInt irp = 0; irp < iRootPathArray.MdcaCount(); irp++ )
        {
        TPtrC text = iRootPathArray.MdcaPoint( irp );
        _LOG1( "%S", &text );
        }
    _LOG( "[CAknMemorySelectionDialogMultiDrive] iDefaultFolderArray: " );
    for( TInt rpa = 0; rpa < iDefaultFolderArray.MdcaCount(); rpa++ )
        {
        TPtrC text = iDefaultFolderArray.MdcaPoint( rpa );
        _LOG1( "%S", &text );
        }
#endif //_DEBUG
    }
Ejemplo n.º 5
0
// ----------------------------------------------------------
// CSimpleFilter::ConstructL
// ----------------------------------------------------------
//
void CSimpleFilter::ConstructL(
    const TDesC8& aNsUri,
  const TDesC8& aLocalName )
    {
    BaseConstructL(aNsUri, aLocalName);
    }
Ejemplo n.º 6
0
// member functions
void CSplashView::ConstructL()
{
  BaseConstructL(R_MAURU_SPLASH);
}
// ================= MEMBER FUNCTIONS =========================================
// ----------------------------------------------------------------------------
// CSetupWizardListView::CSetupWizardListView()
// Default constructor.
// ----------------------------------------------------------------------------
//
CSetupWizardListView::CSetupWizardListView()
    {
		BaseConstructL( R_SETUP_VIEW ); 
    }
Ejemplo n.º 8
0
void CSqlCmdDetach::ConstructL()
	{
	BaseConstructL();
	}
Ejemplo n.º 9
0
void CSqlCmdCompact::ConstructL()
	{
	BaseConstructL();
	}
Ejemplo n.º 10
0
void CSqlCmdState::ConstructL()
	{
	BaseConstructL();
	}
Ejemplo n.º 11
0
void CSqlCmdOpen::ConstructL()
	{
	BaseConstructL();
	}
Ejemplo n.º 12
0
void CSqlCmdCreate::ConstructL()
	{
	BaseConstructL();
	}
Ejemplo n.º 13
0
void CSqlCmdClose::ConstructL()
	{
	BaseConstructL();
	}
Ejemplo n.º 14
0
void CReadPropPipe::ConstructL(TUint32 aKey, TUint32 aKeyFlowCtrl, TInt32 aBufSize)
	{
	BaseConstructL(aKey, aKeyFlowCtrl);
	iBuf = HBufC8::NewMaxL(aBufSize);
	iMemoryManager = CMemoryManager::NewL();
	}
Ejemplo n.º 15
0
void CActionNone::ConstructL(const TDesC8& params)
	{
	BaseConstructL(params);
	}
Ejemplo n.º 16
0
void CSqlCmdExit::ConstructL()
	{
	BaseConstructL();
	}
Ejemplo n.º 17
0
// Second phase constructor of the application UI class.
// It creates and owns a single view.
void CExampleAppUi::ConstructL()
	{
	BaseConstructL(ENoAppResourceFile | ENoScreenFurniture);
	iAppView = CExampleAppView::NewL(ClientRect());
	}
void CDisplayRenderStageFactory::ConstructL(MWsGraphicDrawerEnvironment& aEnv, const TDesC8& /*aData*/)
	{
	BaseConstructL(aEnv);
	}
void CDirectPrintPreviewView::ConstructL()
	{
	LOG("CDirectPrintPreviewView::ConstructL BEGIN");
	BaseConstructL(R_DIRECTPRINT_PREVIEW_VIEW);
	LOG("CDirectPrintPreviewView::ConstructL END");
	}
Ejemplo n.º 20
0
void CUnRegisterView::ConstructL()
    {	
		BaseConstructL( R_UNREG_VIEW);
    }
Ejemplo n.º 21
0
void CCmdUndertaker::ConstructL()
	{
	BaseConstructL();
	}
Ejemplo n.º 22
0
void CComplexFontsAppUi::ConstructL()
    {
    BaseConstructL(ENoAppResourceFile);
    iComplexFontsControl = CComplexFontsControl::NewL();
    AddToStackL(iComplexFontsControl);
    }
Ejemplo n.º 23
0
/**
 * @brief Completes the second phase of Symbian object construction. 
 * Put initialization code that could leave here. 
 */ 
void CSetupGisWeatherAppUi::ConstructL()
	{
	BaseConstructL( EAknEnableSkin ); 
	InitializeContainersL();
	}
void CIdWsfSiuHeader::ConstructL()
    {
    BaseConstructL(KSiuXmlns, KSiuName);
    iNotOnOrAfter = Time::NullTTime();
    }
Ejemplo n.º 25
0
// ----------------------------------------------------------
// CSimpleFilter::ConstructL
// ----------------------------------------------------------
//
void CSimpleFilter::ConstructL(
  const TDesC8& aXml )
    {       
    BaseConstructL( aXml );
    }
// EPOC default constructor can leave.
void CT_LbsTestPsySimulateIsa::ConstructL(TAny* aConstructionParameters)
    {
	BaseConstructL(aConstructionParameters);
    }
Ejemplo n.º 27
0
// ----------------------------------------------------------------------------
// Second phase constructor.
// ----------------------------------------------------------------------------
//
void CMPXDbComposer::ConstructL()
    {
    MPX_FUNC("CMPXDbComposer::ConstructL");

    BaseConstructL();
    }
// -----------------------------------------------------------------------------
// CSIPSettListSIPRegSetView::ConstructL
// Symbian 2nd phase constructor can leave.
// -----------------------------------------------------------------------------
//
void CSIPSettListSIPRegSetView::ConstructL()
    {
    __GSLOGSTRING("CSIPSettListSIPRegSetView::ConstructL" )
    BaseConstructL( R_GS_SIP_SERVER_SETTING_VIEW );    
    }
// -----------------------------------------------------------------------------
// CTestSettingPage::TestBaseConstructL
// -----------------------------------------------------------------------------
//
void CTestSettingPage::TestBaseConstructL()
    {
    BaseConstructL();
    }
// EPOC default constructor can leave.
void CT_LbsStubPositioner::ConstructL(TAny* aConstructionParameters)
    {
    BaseConstructL(aConstructionParameters);
    }