本文整理汇总了C++中CCalEntry::DescriptionL方法的典型用法代码示例。如果您正苦于以下问题:C++ CCalEntry::DescriptionL方法的具体用法?C++ CCalEntry::DescriptionL怎么用?C++ CCalEntry::DescriptionL使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CCalEntry
的用法示例。
在下文中一共展示了CCalEntry::DescriptionL方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: AddNoteL
// -----------------------------------------------------------------------------
// CNSmlNotepadDatabase::AddNoteL
// -----------------------------------------------------------------------------
//
void CNSmlNotepadDatabase::AddNoteL(CNpdItem& aNote, TInt &aKey)
{
_NOTEPAD_DBG_FILE("CNSmlNotepadDatabase::AddNoteL(): begin");
TInt successCount = 0;
CCalenInterimUtils2* interimUtils = CCalenInterimUtils2::NewL();
CleanupStack::PushL(interimUtils);
HBufC8* guid = interimUtils->GlobalUidL();
CleanupStack::PopAndDestroy(interimUtils);
CleanupStack::PushL(guid);
CCalEntry* entry = CCalEntry::NewL(CCalEntry::ENote, guid,
CCalEntry::EMethodNone, 0);
CleanupStack::Pop(guid);
CleanupStack::PushL(entry);
// set the description
TDesC* noteContent(aNote.Content());
entry->SetDescriptionL(*noteContent);
// store the entry in to calendar file
RPointerArray<CCalEntry> array;
CleanupRPtrArrayPushL(array);
array.AppendL(entry);
CleanupStack::Pop(entry);
iEntryView->StoreL(array, successCount);
if(successCount)
{
HBufC* content = HBufC::NewL(entry->DescriptionL().Length());
content->Des().Copy(entry->DescriptionL());
aNote.Set(entry->LocalUidL(),entry->LastModifiedDateL().TimeUtcL(), content);
aKey = entry->LocalUidL();
CleanupStack::PopAndDestroy(&array);
_NOTEPAD_DBG_FILE("CNSmlNotepadDatabase::AddNoteL(): inside if(successCount) after array");
}
else
{
User::Leave(KErrGeneral);
}
_NOTEPAD_DBG_FILE("CNSmlNotepadDatabase::AddNoteL(): end");
User::Leave(KErrNone);
}
示例2: TestFetchEntryAlarmContentL
void CCalAlarmAttachTest::TestFetchEntryAlarmContentL()
{
test.Printf(_L("Test fetching entry twice and check it alarm conten\n"));
_LIT8(KEntryUidFetchEntry, "FetchEntryUid");
CCalAlarm* alarm = StoreEntryWithAlarmContentLC(KEntryUidFetchEntry());
RPointerArray<CCalEntry> entries;
CleanupResetAndDestroyPushL(entries);
//Fetch the entry and test the alarm content
iTestLib->SynCGetEntryViewL().FetchL(KEntryUidFetchEntry(), entries);
TInt entriesStored = 0;
iTestLib->SynCGetEntryViewL().StoreL(entries, entriesStored);
entries.ResetAndDestroy();
iTestLib->SynCGetEntryViewL().FetchL(KEntryUidFetchEntry(), entries);
CCalEntry* entry = entries[0];
test( KSummary() == entry->SummaryL() );
test( KDescription() == entry->DescriptionL());
TestAlarmL(entry, KContent(), KMimeType());
entries.ResetAndDestroy();
//Close the serve and fetch the entry again
iTestLib->CloseAgendaServer();
iTestLib->OpenFileL(KCalName());
iTestLib->SynCGetEntryViewL().FetchL(KEntryUidFetchEntry(), entries);
TestAlarmL(entries[0], KContent(), KMimeType());
CleanupStack::PopAndDestroy(&entries);
CleanupStack::PopAndDestroy(alarm);
}
示例3: ReadNoteFromAgnL
// -----------------------------------------------------------------------------
// CPIMAgnEventAdapter::ReadNoteFromAgnL
// Reads Agenda entry's notes field and converts it into PIM Item field.
// -----------------------------------------------------------------------------
//
void CPIMAgnEventAdapter::ReadNoteFromAgnL(MPIMEventItem& aItem,
CCalEntry& aEntry)
{
JELOG2(EPim);
const TDesC& note = aEntry.DescriptionL();
if (note != KNullDesC)
{
TPIMFieldData fieldData(EPIMEventNote, KPIMAttrNone, note.AllocLC());
aItem.ItemData().AddValueL(fieldData);
CleanupStack::Pop(); // notes.AllocLC( )
}
}
示例4: ReadStringFieldsL
// -----------------------------------------------------------------------------
// CPIMAgnToDoAdapter::ReadStringFieldsL
// (other items were commented in a header)
// -----------------------------------------------------------------------------
//
void CPIMAgnToDoAdapter::ReadStringFieldsL(MPIMItemData& aData,
CCalEntry& aEntry)
{
JELOG2(EPim);
// Summary is converted to PIM API ToDo summary field
const TDesC& sum = aEntry.SummaryL();
if (sum != KNullDesC)
{
TPIMFieldData fieldData(EPIMToDoSummary, KPIMAttrNone, sum.AllocLC());
aData.AddValueL(fieldData);
CleanupStack::Pop(); // agnSummary.AllocLC()
}
// Description is converted to PIM API ToDo note field
const TDesC& note = aEntry.DescriptionL();
if (note != KNullDesC)
{
TPIMFieldData fieldData(EPIMToDoNote, KPIMAttrNone, note.AllocLC());
aData.AddValueL(fieldData);
CleanupStack::Pop(); // AllocLC
}
}