本文整理汇总了C++中kcontacts::Addressee::setName方法的典型用法代码示例。如果您正苦于以下问题:C++ Addressee::setName方法的具体用法?C++ Addressee::setName怎么用?C++ Addressee::setName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类kcontacts::Addressee
的用法示例。
在下文中一共展示了Addressee::setName方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: getErrorItem
Akonadi::Item getErrorItem(Kolab::FolderType folderType, const QString &remoteId)
{
//TODO set title, text and icon
Akonadi::Item item;
item.setRemoteId(remoteId);
switch (folderType) {
case Kolab::EventType: {
KCalCore::Event::Ptr event(new KCalCore::Event);
//FIXME Use message creation date time
event->setDtStart(KDateTime::currentUtcDateTime());
event->setSummary(i18n("Corrupt Event"));
event->setDescription(i18n("Event could not be read. Delete this event to remove it from the server."));
item.setMimeType(KCalCore::Event::eventMimeType());
item.setPayload(event);
}
break;
case Kolab::TaskType: {
KCalCore::Todo::Ptr task(new KCalCore::Todo);
//FIXME Use message creation date time
task->setDtStart(KDateTime::currentUtcDateTime());
task->setSummary(i18n("Corrupt Task"));
task->setDescription(i18n("Task could not be read. Delete this task to remove it from the server."));
item.setMimeType(KCalCore::Todo::todoMimeType());
item.setPayload(task);
}
break;
case Kolab::JournalType: {
KCalCore::Journal::Ptr journal(new KCalCore::Journal);
//FIXME Use message creation date time
journal->setDtStart(KDateTime::currentUtcDateTime());
journal->setSummary(i18n("Corrupt journal"));
journal->setDescription(i18n("Journal could not be read. Delete this journal to remove it from the server."));
item.setMimeType(KCalCore::Journal::journalMimeType());
item.setPayload(journal);
}
break;
case Kolab::ContactType: {
KContacts::Addressee addressee;
addressee.setName(i18n("Corrupt Contact"));
addressee.setNote(i18n("Contact could not be read. Delete this contact to remove it from the server."));
item.setMimeType(KContacts::Addressee::mimeType());
item.setPayload(addressee);
}
break;
case Kolab::NoteType: {
Akonadi::NoteUtils::NoteMessageWrapper note;
note.setTitle(i18n("Corrupt Note"));
note.setText(i18n("Note could not be read. Delete this note to remove it from the server."));
item.setPayload(Akonadi::NoteUtils::noteMimeType());
item.setPayload(note.message());
}
break;
case Kolab::MailType:
//We don't convert mails, so that should never fail.
default:
qCWarning(KOLABRESOURCE_LOG) << "unhandled folder type: " << folderType;
}
return item;
}
示例2: storeTest
void AddresseeTest::storeTest()
{
KContacts::Addressee addressee;
KContacts::Picture logo(QStringLiteral("http://scottlandyard.info/pics/logo.png"));
KContacts::Picture photo(QStringLiteral("http://scottlandyard.info/~sinclair/photo.png"));
KContacts::Sound sound(QStringLiteral("http://scottlandyard.info/~sinclair/sound.wav"));
QStringList emails;
emails << QStringLiteral("[email protected]") << QStringLiteral("[email protected]");
KContacts::Key::List keys;
keys << KContacts::Key(QStringLiteral("SecretKey"));
QStringList categories;
categories << QStringLiteral("Helper") << QStringLiteral("Friend");
QStringList customs;
customs << QStringLiteral("X-Danger: high");
KContacts::Gender gender(QStringLiteral("H"));
addressee.setGender(gender);
KContacts::Lang lang(QLatin1String("lang"));
addressee.setLangs(KContacts::Lang::List() << lang);
addressee.setUid(QStringLiteral("My uid"));
addressee.setName(QStringLiteral("John Sinclair"));
addressee.setFormattedName(QStringLiteral("Sinclair, John"));
addressee.setFamilyName(QStringLiteral("Sinclair"));
addressee.setGivenName(QStringLiteral("John"));
addressee.setAdditionalName(QStringLiteral("Bob"));
addressee.setPrefix(QStringLiteral("Sir"));
addressee.setSuffix(QStringLiteral("II"));
addressee.setNickName(QStringLiteral("ghosthunter"));
addressee.setBirthday(QDate(1982, 7, 19));
addressee.setMailer(QStringLiteral("mutt"));
addressee.setTimeZone(KContacts::TimeZone(2));
addressee.setGeo(KContacts::Geo(42, 23));
addressee.setTitle(QStringLiteral("Ghost Hunter"));
addressee.setRole(QStringLiteral("Leader"));
addressee.setOrganization(QStringLiteral("Scottland Yard"));
addressee.setNote(QStringLiteral("Don't cross black deads way..."));
addressee.setProductId(QStringLiteral("ProductId45"));
addressee.setRevision(QDateTime(QDate(1982, 9, 15)));
addressee.setSortString(QStringLiteral("Name"));
KContacts::ResourceLocatorUrl url;
url.setUrl(QUrl(QStringLiteral("www.scottlandyard.info")));
addressee.setUrl(url);
addressee.setSecrecy(KContacts::Secrecy(KContacts::Secrecy::Public));
addressee.setLogo(logo);
addressee.setPhoto(photo);
addressee.setSound(sound);
addressee.setEmails(emails);
addressee.setKeys(keys);
addressee.setCategories(categories);
addressee.setCustoms(customs);
addressee.setKind(QStringLiteral("foo"));
addressee.setChanged(false);
KContacts::Impp imp;
imp.setType(KContacts::Impp::GaduGadu);
imp.setAddress(QStringLiteral("[email protected]"));
KContacts::Impp::List listImp;
listImp << imp;
addressee.setImppList(listImp);
QVERIFY(addressee.imppList() == listImp);
QVERIFY(addressee.langs() == (KContacts::Lang::List() << lang));
QVERIFY(addressee.gender() == gender);
QVERIFY(addressee.uid() == QStringLiteral("My uid"));
QVERIFY(addressee.name() == QStringLiteral("John Sinclair"));
QVERIFY(addressee.formattedName() == QStringLiteral("Sinclair, John"));
QVERIFY(addressee.familyName() == QStringLiteral("Sinclair"));
QVERIFY(addressee.givenName() == QStringLiteral("John"));
QVERIFY(addressee.additionalName() == QStringLiteral("Bob"));
QVERIFY(addressee.prefix() == QStringLiteral("Sir"));
QVERIFY(addressee.suffix() == QStringLiteral("II"));
QVERIFY(addressee.nickName() == QStringLiteral("ghosthunter"));
QVERIFY(addressee.birthday().date() == QDate(1982, 7, 19));
QVERIFY(addressee.birthday().time() == QTime(0, 0));
QVERIFY(!addressee.birthdayHasTime());
QVERIFY(addressee.mailer() == QStringLiteral("mutt"));
QVERIFY(addressee.timeZone() == KContacts::TimeZone(2));
QVERIFY(addressee.geo() == KContacts::Geo(42, 23));
QVERIFY(addressee.title() == QStringLiteral("Ghost Hunter"));
QVERIFY(addressee.role() == QStringLiteral("Leader"));
QVERIFY(addressee.organization() == QStringLiteral("Scottland Yard"));
QVERIFY(addressee.note() == QStringLiteral("Don't cross black deads way..."));
QVERIFY(addressee.productId() == QStringLiteral("ProductId45"));
QVERIFY(addressee.revision() == QDateTime(QDate(1982, 9, 15)));
QVERIFY(addressee.sortString() == QStringLiteral("Name"));
QVERIFY(addressee.url() == url);
QVERIFY(addressee.secrecy() == KContacts::Secrecy(KContacts::Secrecy::Public));
QVERIFY(addressee.logo() == logo);
QVERIFY(addressee.photo() == photo);
QVERIFY(addressee.sound() == sound);
QVERIFY(addressee.emails() == emails);
QVERIFY(addressee.keys() == keys);
QVERIFY(addressee.categories() == categories);
QVERIFY(addressee.customs() == customs);
QVERIFY(addressee.changed() == false);
//.........这里部分代码省略.........