00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
void CertificateHandlingDialog::init()
00011 {
00012 requestPopup =
new QPopupMenu(
this);
00013 requestPopup->insertItem(i18n(
"New"), 0);
00014 requestPopup->insertItem(i18n(
"Extension"), 1);
00015 requestPopup->insertItem(i18n(
"Change"), 2);
00016
00017 requestPB->setPopup(requestPopup);
00018 }
00019
00020
void CertificateHandlingDialog::slotDeleteCertificate()
00021 {
00022
00023 }
00024
00025
void CertificateHandlingDialog::slotCertificateSelectionChanged(
QListViewItem * )
00026 {
00027
00028 }
00029
00030
void CertificateHandlingDialog::slotRequestChangedCertificate()
00031 {
00032
00033 }
00034
00035
void CertificateHandlingDialog::slotRequestExtendedCertificate()
00036 {
00037
00038 }
00039
00040
void CertificateHandlingDialog::slotRequestNewCertificate()
00041 {
00042
00043 }
00044
00045
void CertificateHandlingDialog::slotUseForEncrypting()
00046 {
00047
00048 }
00049
00050
void CertificateHandlingDialog::slotUseForSigning()
00051 {
00052
00053 }
00054
00055
00056
void CertificateHandlingDialog::slotRequestMenu(
int id )
00057 {
00058
switch (
id)
00059 {
00060
case 0:
00061 slotRequestNewCertificate();
00062
break;
00063
case 1:
00064 slotRequestExtendedCertificate();
00065
break;
00066
case 2:
00067 slotRequestChangedCertificate();
00068
break;
00069 };
00070 }