Changeset View
Changeset View
Standalone View
Standalone View
messageviewer/src/viewer/urlhandlermanager.cpp
| Show First 20 Lines • Show All 669 Lines • ▼ Show 20 Line(s) | 647 | if (url.scheme() == QLatin1String("kmail")) { | |||
|---|---|---|---|---|---|
| 670 | } else if (urlPath == QLatin1String("showSignatureDetails")) { | 670 | } else if (urlPath == QLatin1String("showSignatureDetails")) { | ||
| 671 | w->setShowSignatureDetails(true); | 671 | w->setShowSignatureDetails(true); | ||
| 672 | w->update(MimeTreeParser::Force); | 672 | w->update(MimeTreeParser::Force); | ||
| 673 | return true; | 673 | return true; | ||
| 674 | } else if (urlPath == QLatin1String("hideSignatureDetails")) { | 674 | } else if (urlPath == QLatin1String("hideSignatureDetails")) { | ||
| 675 | w->setShowSignatureDetails(false); | 675 | w->setShowSignatureDetails(false); | ||
| 676 | w->update(MimeTreeParser::Force); | 676 | w->update(MimeTreeParser::Force); | ||
| 677 | return true; | 677 | return true; | ||
| 678 | } else if (urlPath == QLatin1String("showEncryptionDetails")) { | ||||
| 679 | w->setHideEncryptionDetails(false); | ||||
| 680 | return true; | ||||
| 681 | } else if (urlPath == QLatin1String("hideEncryptionDetails")) { | ||||
| 682 | w->setHideEncryptionDetails(true); | ||||
| 683 | return true; | ||||
| 678 | } else if (urlPath == QLatin1String("showAttachmentQuicklist")) { | 684 | } else if (urlPath == QLatin1String("showAttachmentQuicklist")) { | ||
| 679 | w->setShowAttachmentQuicklist(false); | 685 | w->setShowAttachmentQuicklist(false); | ||
| 680 | return true; | 686 | return true; | ||
| 681 | } else if (urlPath == QLatin1String("hideAttachmentQuicklist")) { | 687 | } else if (urlPath == QLatin1String("hideAttachmentQuicklist")) { | ||
| 682 | w->setShowAttachmentQuicklist(true); | 688 | w->setShowAttachmentQuicklist(true); | ||
| 683 | return true; | 689 | return true; | ||
| 684 | } else if (urlPath == QLatin1String("showFullToAddressList")) { | 690 | } else if (urlPath == QLatin1String("showFullToAddressList")) { | ||
| 685 | w->setFullToAddressList(false); | 691 | w->setFullToAddressList(false); | ||
| Show All 25 Lines | 709 | if (url.scheme() == QLatin1String("kmail")) { | |||
| 711 | } else if (urlPath == QLatin1String("goResourceOnline")) { | 717 | } else if (urlPath == QLatin1String("goResourceOnline")) { | ||
| 712 | return i18n("Make account online."); | 718 | return i18n("Make account online."); | ||
| 713 | } else if (urlPath == QLatin1String("decryptMessage")) { | 719 | } else if (urlPath == QLatin1String("decryptMessage")) { | ||
| 714 | return i18n("Decrypt message."); | 720 | return i18n("Decrypt message."); | ||
| 715 | } else if (urlPath == QLatin1String("showSignatureDetails")) { | 721 | } else if (urlPath == QLatin1String("showSignatureDetails")) { | ||
| 716 | return i18n("Show signature details."); | 722 | return i18n("Show signature details."); | ||
| 717 | } else if (urlPath == QLatin1String("hideSignatureDetails")) { | 723 | } else if (urlPath == QLatin1String("hideSignatureDetails")) { | ||
| 718 | return i18n("Hide signature details."); | 724 | return i18n("Hide signature details."); | ||
| 725 | } else if (urlPath == QLatin1String("showEncryptionDetails")) { | ||||
| 726 | return i18n("Show encryption details."); | ||||
| 727 | } else if (urlPath == QLatin1String("hideEncryptionDetails")) { | ||||
| 728 | return i18n("Hide encryption details."); | ||||
| 719 | } else if (urlPath == QLatin1String("showAttachmentQuicklist")) { | 729 | } else if (urlPath == QLatin1String("showAttachmentQuicklist")) { | ||
| 720 | return i18n("Hide attachment list."); | 730 | return i18n("Hide attachment list."); | ||
| 721 | } else if (urlPath == QLatin1String("hideAttachmentQuicklist")) { | 731 | } else if (urlPath == QLatin1String("hideAttachmentQuicklist")) { | ||
| 722 | return i18n("Show attachment list."); | 732 | return i18n("Show attachment list."); | ||
| 723 | } else if (urlPath == QLatin1String("showFullToAddressList")) { | 733 | } else if (urlPath == QLatin1String("showFullToAddressList")) { | ||
| 724 | return i18n("Hide full \"To\" list"); | 734 | return i18n("Hide full \"To\" list"); | ||
| 725 | } else if (urlPath == QLatin1String("hideFullToAddressList")) { | 735 | } else if (urlPath == QLatin1String("hideFullToAddressList")) { | ||
| 726 | return i18n("Show full \"To\" list"); | 736 | return i18n("Show full \"To\" list"); | ||
| ▲ Show 20 Lines • Show All 478 Lines • Show Last 20 Lines | |||||