コード例 #1
0
ファイル: SliderDialog.cpp プロジェクト: kolayuk/TweakS
void CSliderControl::ConstructL(CCoeControl* aParent,TInt aResId)
	{
	TResourceReader reader;
	CEikonEnv::Static()->CreateResourceReaderLC(reader,aResId);
	CleanupStack::Pop(1); //reader
	ConstructFromResourceL(reader);
	}
コード例 #2
0
ファイル: Tanctl.cpp プロジェクト: cdaffara/symbiandump-mw1
// Creates a resource reader from the animation aResourceId
void CAnimateFramesCtl::StaticConstructL(TInt aResourceId)
    {
    TResourceReader reader;
    iCoeEnv->CreateResourceReaderLC(reader,aResourceId);
    ConstructFromResourceL(reader);
	CleanupStack::PopAndDestroy();
    }
コード例 #3
0
void CSymTorrentTrackerSettingsContainer::ConstructL(const TRect& aRect)
{
    CreateWindowL();
	ConstructFromResourceL(R_SYMTORRENT_TRACKER_SETTING_ITEM_LIST);

	SetRect(aRect);
	ActivateL();
}
コード例 #4
0
// ---------------------------------------------------------------------------
// CAknMemorySelectionDialogMultiDrive::ConstructFromResourceL
// ---------------------------------------------------------------------------
//
void CAknMemorySelectionDialogMultiDrive::ConstructFromResourceL(
    TInt aResourceId,
    TBool aShowUnavailableDrives )
    {
    ConstructFromResourceL( aResourceId, aShowUnavailableDrives,
        AknCommonDialogsDynMem::EMemoryTypePhone
        | AknCommonDialogsDynMem::EMemoryTypeInternalMassStorage
        | AknCommonDialogsDynMem::EMemoryTypeMMCExternal
        | AknCommonDialogsDynMem::EMemoryTypeRemote );
    }
コード例 #5
0
// Second-phase constructor
void CProfileEditSshSettingList::ConstructL() {
    iConfig = iPutty.GetConfig();
    ConstructFromResourceL(R_PUTTY_PROFILEEDIT_SSH_SETTINGLIST);
    ActivateL();
}
コード例 #6
0
// -----------------------------------------------------------------------------
// CTestSettingPage::TestConstructFromResourceL
// -----------------------------------------------------------------------------
//
void CTestSettingPage::TestConstructFromResourceL(TResourceReader& aRes)
    {
    ConstructFromResourceL( aRes );
    }
コード例 #7
0
// -----------------------------------------------------------------------------
// CTestSettingPage::TestConstructFromResourceL
// -----------------------------------------------------------------------------
//
void CTestSettingPage::TestConstructFromResourceL( TInt aResourceId)
    {
    ConstructFromResourceL( aResourceId );
    }
コード例 #8
0
// Second-phase constructor
void CProfileEditDisplaySettingList::ConstructL() {
    iConfig = iPutty.GetConfig();
    iPalettes = CPalettes::NewL(R_PUTTY_PALETTE_NAMES, R_PUTTY_PALETTES);
    ConstructFromResourceL(R_PUTTY_PROFILEEDIT_DISPLAY_SETTINGLIST);
    ActivateL();
}