Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
Kleopatra
Commits
4cdcf5de
Commit
4cdcf5de
authored
May 12, 2021
by
Ingo Klöcker
Browse files
Remove separate certificatedetailswidget.ui
GnuPG-bug-id: 5245
parent
80a9c0d0
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/CMakeLists.txt
View file @
4cdcf5de
...
...
@@ -318,7 +318,6 @@ ki18n_wrap_ui(_kleopatra_SRCS
dialogs/selftestdialog.ui
dialogs/adduseriddialog.ui
dialogs/setinitialpindialog.ui
dialogs/certificatedetailswidget.ui
dialogs/trustchainwidget.ui
dialogs/subkeyswidget.ui
newcertificatewizard/listwidget.ui
...
...
src/dialogs/certificatedetailswidget.cpp
View file @
4cdcf5de
...
...
@@ -5,7 +5,7 @@
*/
#include "certificatedetailswidget.h"
#include "ui_certificatedetailswidget.h"
#include "kleopatra_debug.h"
#include "exportdialog.h"
#include "trustchainwidget.h"
...
...
@@ -27,6 +27,8 @@
#include <Libkleo/Dn>
#include <Libkleo/KeyCache>
#include <KLocalizedString>
#include <gpgme++/context.h>
#include <gpgme++/key.h>
#include <gpgme++/keylistresult.h>
...
...
@@ -36,8 +38,16 @@
#include <QGpgME/KeyListJob>
#include <QDateTime>
#include <QMenu>
#include <QGridLayout>
#include <QGroupBox>
#include <QHBoxLayout>
#include <QLabel>
#include <QLocale>
#include <QMenu>
#include <QPushButton>
#include <QSpacerItem>
#include <QToolButton>
#include <QTreeWidget>
#include <gpgme++/gpgmepp_version.h>
#if GPGMEPP_VERSION >= 0x10E00 // 1.14.0
...
...
@@ -59,9 +69,7 @@ using namespace Kleo;
class
CertificateDetailsWidget
::
Private
{
public:
Private
(
CertificateDetailsWidget
*
parent
)
:
updateInProgress
(
false
),
q
(
parent
)
{}
Private
(
CertificateDetailsWidget
*
qq
);
void
setupCommonProperties
();
void
setupPGPProperties
();
...
...
@@ -90,13 +98,264 @@ public:
const
std
::
vector
<
GpgME
::
Key
>
&
,
const
QString
&
,
const
GpgME
::
Error
&
);
Ui
::
CertificateDetailsWidget
ui
;
GpgME
::
Key
key
;
bool
updateInProgress
;
private:
CertificateDetailsWidget
*
const
q
;
public:
GpgME
::
Key
key
;
bool
updateInProgress
=
false
;
private:
struct
UI
{
QGridLayout
*
gridLayout_2
;
QHBoxLayout
*
hboxLayout_1
;
QPushButton
*
addUserIDBtn
;
QPushButton
*
changePassphraseBtn
;
QPushButton
*
trustChainDetailsBtn
;
QPushButton
*
genRevokeBtn
;
QPushButton
*
certifyBtn
;
QGroupBox
*
groupBox
;
QGridLayout
*
gridLayout
;
QLabel
*
validFromLbl
;
QLabel
*
validFrom
;
QSpacerItem
*
horizontalSpacer_3
;
QLabel
*
expiresLbl
;
QHBoxLayout
*
horizontalLayout_3
;
QLabel
*
expires
;
QToolButton
*
changeExpirationBtn
;
QLabel
*
typeLbl
;
QLabel
*
type
;
QLabel
*
fingerprintLbl
;
QLabel
*
fingerprint
;
QLabel
*
publishingLbl
;
QPushButton
*
publishing
;
QLabel
*
smimeIssuerLbl
;
QLabel
*
smimeIssuer
;
QLabel
*
compliance
;
QLabel
*
complianceLbl
;
QHBoxLayout
*
horizontalLayout
;
QPushButton
*
moreDetailsBtn
;
QPushButton
*
exportBtn
;
QPushButton
*
webOfTrustBtn
;
QSpacerItem
*
horizontalSpacer
;
QTreeWidget
*
userIDTable
;
QLabel
*
label
;
QLabel
*
smimeOwnerLbl
;
QLabel
*
smimeRelatedAddresses
;
QLabel
*
smimeOwner
;
void
setupUi
(
QWidget
*
parent
)
{
gridLayout_2
=
new
QGridLayout
(
parent
);
gridLayout_2
->
setContentsMargins
(
0
,
0
,
0
,
0
);
hboxLayout_1
=
new
QHBoxLayout
();
addUserIDBtn
=
new
QPushButton
(
i18n
(
"Add email address"
),
parent
);
hboxLayout_1
->
addWidget
(
addUserIDBtn
);
changePassphraseBtn
=
new
QPushButton
(
i18n
(
"Change passphrase"
),
parent
);
hboxLayout_1
->
addWidget
(
changePassphraseBtn
);
trustChainDetailsBtn
=
new
QPushButton
(
i18n
(
"Trust chain details..."
),
parent
);
hboxLayout_1
->
addWidget
(
trustChainDetailsBtn
);
genRevokeBtn
=
new
QPushButton
(
i18n
(
"Generate revocation certificate"
),
parent
);
genRevokeBtn
->
setToolTip
(
u"<html>"
+
i18n
(
"A revocation certificate is a file that serves as a
\"
kill switch
\"
to publicly "
"declare that a key shall not anymore be used. It is not possible "
"to retract such a revocation certificate once it has been published."
)
+
u"</html>"
);
hboxLayout_1
->
addWidget
(
genRevokeBtn
);
certifyBtn
=
new
QPushButton
(
i18n
(
"Certify"
),
parent
);
hboxLayout_1
->
addWidget
(
certifyBtn
);
gridLayout_2
->
addLayout
(
hboxLayout_1
,
4
,
0
,
1
,
3
);
groupBox
=
new
QGroupBox
(
i18n
(
"Certificate Details"
),
parent
);
groupBox
->
setFlat
(
false
);
gridLayout
=
new
QGridLayout
(
groupBox
);
validFromLbl
=
new
QLabel
(
i18n
(
"Valid from:"
),
groupBox
);
gridLayout
->
addWidget
(
validFromLbl
,
0
,
0
,
1
,
1
);
validFrom
=
new
QLabel
(
groupBox
);
validFrom
->
setTextInteractionFlags
(
Qt
::
LinksAccessibleByMouse
|
Qt
::
TextSelectableByMouse
);
gridLayout
->
addWidget
(
validFrom
,
0
,
1
,
1
,
1
);
horizontalSpacer_3
=
new
QSpacerItem
(
40
,
20
,
QSizePolicy
::
Expanding
,
QSizePolicy
::
Minimum
);
gridLayout
->
addItem
(
horizontalSpacer_3
,
0
,
2
,
1
,
1
);
expiresLbl
=
new
QLabel
(
i18n
(
"Expires:"
),
groupBox
);
gridLayout
->
addWidget
(
expiresLbl
,
1
,
0
,
1
,
1
);
horizontalLayout_3
=
new
QHBoxLayout
();
expires
=
new
QLabel
(
groupBox
);
expires
->
setTextInteractionFlags
(
Qt
::
LinksAccessibleByMouse
|
Qt
::
TextSelectableByMouse
);
horizontalLayout_3
->
addWidget
(
expires
);
changeExpirationBtn
=
new
QToolButton
(
groupBox
);
changeExpirationBtn
->
setToolTip
(
i18n
(
"Change"
));
changeExpirationBtn
->
setIcon
(
QIcon
::
fromTheme
(
QStringLiteral
(
"editor"
)));
changeExpirationBtn
->
setIconSize
(
QSize
(
16
,
16
));
changeExpirationBtn
->
setToolButtonStyle
(
Qt
::
ToolButtonTextBesideIcon
);
horizontalLayout_3
->
addWidget
(
changeExpirationBtn
);
gridLayout
->
addLayout
(
horizontalLayout_3
,
1
,
1
,
1
,
1
);
typeLbl
=
new
QLabel
(
i18n
(
"Type:"
),
groupBox
);
gridLayout
->
addWidget
(
typeLbl
,
2
,
0
,
1
,
1
);
type
=
new
QLabel
(
groupBox
);
type
->
setTextInteractionFlags
(
Qt
::
LinksAccessibleByMouse
|
Qt
::
TextSelectableByMouse
);
gridLayout
->
addWidget
(
type
,
2
,
1
,
1
,
1
);
fingerprintLbl
=
new
QLabel
(
i18n
(
"Fingerprint:"
),
groupBox
);
gridLayout
->
addWidget
(
fingerprintLbl
,
3
,
0
,
1
,
1
);
fingerprint
=
new
QLabel
(
groupBox
);
fingerprint
->
setTextInteractionFlags
(
Qt
::
LinksAccessibleByMouse
|
Qt
::
TextSelectableByMouse
);
gridLayout
->
addWidget
(
fingerprint
,
3
,
1
,
1
,
2
);
publishingLbl
=
new
QLabel
(
i18n
(
"Publishing:"
),
groupBox
);
gridLayout
->
addWidget
(
publishingLbl
,
4
,
0
,
1
,
1
);
publishing
=
new
QPushButton
(
i18n
(
"Publish Certificate"
),
groupBox
);
gridLayout
->
addWidget
(
publishing
,
4
,
1
,
1
,
1
);
smimeIssuerLbl
=
new
QLabel
(
i18n
(
"Issuer:"
),
groupBox
);
gridLayout
->
addWidget
(
smimeIssuerLbl
,
5
,
0
,
1
,
1
);
smimeIssuer
=
new
QLabel
(
groupBox
);
smimeIssuer
->
setWordWrap
(
true
);
smimeIssuer
->
setTextInteractionFlags
(
Qt
::
TextBrowserInteraction
);
gridLayout
->
addWidget
(
smimeIssuer
,
5
,
1
,
1
,
2
);
compliance
=
new
QLabel
(
i18n
(
"Compliance:"
),
groupBox
);
compliance
->
setWordWrap
(
true
);
compliance
->
setTextInteractionFlags
(
Qt
::
TextBrowserInteraction
);
gridLayout
->
addWidget
(
compliance
,
6
,
0
,
1
,
1
);
complianceLbl
=
new
QLabel
(
groupBox
);
complianceLbl
->
setWordWrap
(
true
);
complianceLbl
->
setTextInteractionFlags
(
Qt
::
TextBrowserInteraction
);
gridLayout
->
addWidget
(
complianceLbl
,
6
,
1
,
1
,
2
);
horizontalLayout
=
new
QHBoxLayout
();
moreDetailsBtn
=
new
QPushButton
(
i18n
(
"More details..."
),
groupBox
);
horizontalLayout
->
addWidget
(
moreDetailsBtn
);
exportBtn
=
new
QPushButton
(
i18n
(
"Export..."
),
groupBox
);
horizontalLayout
->
addWidget
(
exportBtn
);
webOfTrustBtn
=
new
QPushButton
(
i18n
(
"Certifications..."
),
groupBox
);
horizontalLayout
->
addWidget
(
webOfTrustBtn
);
horizontalSpacer
=
new
QSpacerItem
(
40
,
20
,
QSizePolicy
::
Expanding
,
QSizePolicy
::
Minimum
);
horizontalLayout
->
addItem
(
horizontalSpacer
);
gridLayout
->
addLayout
(
horizontalLayout
,
7
,
0
,
1
,
3
);
gridLayout_2
->
addWidget
(
groupBox
,
6
,
0
,
1
,
3
);
userIDTable
=
new
QTreeWidget
(
parent
);
QTreeWidgetItem
*
__qtreewidgetitem
=
new
QTreeWidgetItem
();
__qtreewidgetitem
->
setText
(
0
,
QString
::
fromUtf8
(
"1"
));
userIDTable
->
setHeaderItem
(
__qtreewidgetitem
);
userIDTable
->
setEditTriggers
(
QAbstractItemView
::
NoEditTriggers
);
userIDTable
->
setSelectionMode
(
QAbstractItemView
::
SingleSelection
);
userIDTable
->
setRootIsDecorated
(
false
);
userIDTable
->
setUniformRowHeights
(
true
);
userIDTable
->
setAllColumnsShowFocus
(
true
);
gridLayout_2
->
addWidget
(
userIDTable
,
3
,
0
,
1
,
3
);
label
=
new
QLabel
(
i18n
(
"You can use this certificate to secure communication with the following email addresses:"
),
parent
);
label
->
setWordWrap
(
true
);
gridLayout_2
->
addWidget
(
label
,
0
,
0
,
1
,
3
);
smimeOwnerLbl
=
new
QLabel
(
i18n
(
"Owner:"
),
parent
);
gridLayout_2
->
addWidget
(
smimeOwnerLbl
,
1
,
0
,
1
,
1
);
smimeRelatedAddresses
=
new
QLabel
(
i18n
(
"Related addresses:"
),
parent
);
QFont
font
;
font
.
setBold
(
true
);
font
.
setWeight
(
75
);
smimeRelatedAddresses
->
setFont
(
font
);
gridLayout_2
->
addWidget
(
smimeRelatedAddresses
,
2
,
0
,
1
,
1
);
smimeOwner
=
new
QLabel
(
parent
);
smimeOwner
->
setWordWrap
(
true
);
smimeOwner
->
setTextInteractionFlags
(
Qt
::
TextBrowserInteraction
);
gridLayout_2
->
addWidget
(
smimeOwner
,
1
,
1
,
1
,
2
);
}
}
ui
;
};
CertificateDetailsWidget
::
Private
::
Private
(
CertificateDetailsWidget
*
qq
)
:
q
{
qq
}
{
ui
.
setupUi
(
q
);
connect
(
ui
.
addUserIDBtn
,
&
QPushButton
::
clicked
,
q
,
[
this
]()
{
addUserID
();
});
connect
(
ui
.
changePassphraseBtn
,
&
QPushButton
::
clicked
,
q
,
[
this
]()
{
changePassphrase
();
});
connect
(
ui
.
genRevokeBtn
,
&
QPushButton
::
clicked
,
q
,
[
this
]()
{
genRevokeCert
();
});
connect
(
ui
.
changeExpirationBtn
,
&
QPushButton
::
clicked
,
q
,
[
this
]()
{
changeExpiration
();
});
connect
(
ui
.
smimeOwner
,
&
QLabel
::
linkActivated
,
q
,
[
this
](
const
QString
&
link
)
{
smimeLinkActivated
(
link
);
});
connect
(
ui
.
smimeIssuer
,
&
QLabel
::
linkActivated
,
q
,
[
this
](
const
QString
&
link
)
{
smimeLinkActivated
(
link
);
});
connect
(
ui
.
trustChainDetailsBtn
,
&
QPushButton
::
pressed
,
q
,
[
this
]()
{
showTrustChainDialog
();
});
connect
(
ui
.
moreDetailsBtn
,
&
QPushButton
::
pressed
,
q
,
[
this
]()
{
showMoreDetails
();
});
connect
(
ui
.
publishing
,
&
QPushButton
::
pressed
,
q
,
[
this
]()
{
publishCertificate
();
});
connect
(
ui
.
certifyBtn
,
&
QPushButton
::
clicked
,
q
,
[
this
]()
{
certifyClicked
();
});
connect
(
ui
.
webOfTrustBtn
,
&
QPushButton
::
clicked
,
q
,
[
this
]()
{
webOfTrustClicked
();
});
connect
(
ui
.
exportBtn
,
&
QPushButton
::
clicked
,
q
,
[
this
]()
{
exportClicked
();
});
connect
(
Kleo
::
KeyCache
::
instance
().
get
(),
&
Kleo
::
KeyCache
::
keysMayHaveChanged
,
q
,
[
this
]()
{
keysMayHaveChanged
();
});
}
void
CertificateDetailsWidget
::
Private
::
setupCommonProperties
()
{
// TODO: Enable once implemented
...
...
@@ -524,35 +783,6 @@ CertificateDetailsWidget::CertificateDetailsWidget(QWidget *parent)
:
QWidget
{
parent
}
,
d
{
std
::
make_unique
<
Private
>
(
this
)}
{
d
->
ui
.
setupUi
(
this
);
connect
(
d
->
ui
.
addUserIDBtn
,
&
QPushButton
::
clicked
,
this
,
[
this
]()
{
d
->
addUserID
();
});
connect
(
d
->
ui
.
changePassphraseBtn
,
&
QPushButton
::
clicked
,
this
,
[
this
]()
{
d
->
changePassphrase
();
});
connect
(
d
->
ui
.
genRevokeBtn
,
&
QPushButton
::
clicked
,
this
,
[
this
]()
{
d
->
genRevokeCert
();
});
connect
(
d
->
ui
.
changeExpirationBtn
,
&
QPushButton
::
clicked
,
this
,
[
this
]()
{
d
->
changeExpiration
();
});
connect
(
d
->
ui
.
smimeOwner
,
&
QLabel
::
linkActivated
,
this
,
[
this
](
const
QString
&
link
)
{
d
->
smimeLinkActivated
(
link
);
});
connect
(
d
->
ui
.
smimeIssuer
,
&
QLabel
::
linkActivated
,
this
,
[
this
](
const
QString
&
link
)
{
d
->
smimeLinkActivated
(
link
);
});
connect
(
d
->
ui
.
trustChainDetailsBtn
,
&
QPushButton
::
pressed
,
this
,
[
this
]()
{
d
->
showTrustChainDialog
();
});
connect
(
d
->
ui
.
moreDetailsBtn
,
&
QPushButton
::
pressed
,
this
,
[
this
]()
{
d
->
showMoreDetails
();
});
connect
(
d
->
ui
.
publishing
,
&
QPushButton
::
pressed
,
this
,
[
this
]()
{
d
->
publishCertificate
();
});
connect
(
d
->
ui
.
certifyBtn
,
&
QPushButton
::
clicked
,
this
,
[
this
]()
{
d
->
certifyClicked
();
});
connect
(
d
->
ui
.
webOfTrustBtn
,
&
QPushButton
::
clicked
,
this
,
[
this
]()
{
d
->
webOfTrustClicked
();
});
connect
(
d
->
ui
.
exportBtn
,
&
QPushButton
::
clicked
,
this
,
[
this
]()
{
d
->
exportClicked
();
});
connect
(
Kleo
::
KeyCache
::
instance
().
get
(),
&
Kleo
::
KeyCache
::
keysMayHaveChanged
,
this
,
[
this
]()
{
d
->
keysMayHaveChanged
();
});
}
CertificateDetailsWidget
::~
CertificateDetailsWidget
()
=
default
;
...
...
src/dialogs/certificatedetailswidget.ui
deleted
100644 → 0
View file @
80a9c0d0
<?xml version="1.0" encoding="UTF-8"?>
<ui
version=
"4.0"
>
<class>
CertificateDetailsWidget
</class>
<widget
class=
"QWidget"
name=
"CertificateDetailsWidget"
>
<property
name=
"geometry"
>
<rect>
<x>
0
</x>
<y>
0
</y>
<width>
701
</width>
<height>
571
</height>
</rect>
</property>
<property
name=
"windowTitle"
>
<string>
Certificate Details
</string>
</property>
<layout
class=
"QGridLayout"
name=
"gridLayout_2"
>
<property
name=
"leftMargin"
>
<number>
0
</number>
</property>
<property
name=
"topMargin"
>
<number>
0
</number>
</property>
<property
name=
"rightMargin"
>
<number>
0
</number>
</property>
<property
name=
"bottomMargin"
>
<number>
0
</number>
</property>
<item
row=
"4"
column=
"0"
colspan=
"3"
>
<layout
class=
"QHBoxLayout"
name=
"hboxLayout_1"
>
<item>
<widget
class=
"QPushButton"
name=
"addUserIDBtn"
>
<property
name=
"text"
>
<string>
&
Add email address
</string>
</property>
</widget>
</item>
<item>
<widget
class=
"QPushButton"
name=
"changePassphraseBtn"
>
<property
name=
"text"
>
<string>
Change
&
passphrase
</string>
</property>
</widget>
</item>
<item>
<widget
class=
"QPushButton"
name=
"trustChainDetailsBtn"
>
<property
name=
"text"
>
<string>
Trust chain
&
details...
</string>
</property>
</widget>
</item>
<item>
<widget
class=
"QPushButton"
name=
"genRevokeBtn"
>
<property
name=
"toolTip"
>
<string>
A revocation certificate is a file that serves as a
"
kill switch
"
to publicly
declare that a key shall not anymore be used. It is not possible
"
to retract such a revocation certificate once it has been published.
</string>
</property>
<property
name=
"text"
>
<string>
Generate
&
revocation certificate
</string>
</property>
</widget>
</item>
<item>
<widget
class=
"QPushButton"
name=
"certifyBtn"
>
<property
name=
"text"
>
<string>
Certify
</string>
</property>
</widget>
</item>
</layout>
</item>
<item
row=
"6"
column=
"0"
colspan=
"3"
>
<widget
class=
"QGroupBox"
name=
"groupBox"
>
<property
name=
"title"
>
<string>
Certificate Details
</string>
</property>
<property
name=
"flat"
>
<bool>
false
</bool>
</property>
<layout
class=
"QGridLayout"
name=
"gridLayout"
>
<item
row=
"0"
column=
"0"
>
<widget
class=
"QLabel"
name=
"validFromLbl"
>
<property
name=
"text"
>
<string>
Valid from:
</string>
</property>
</widget>
</item>
<item
row=
"0"
column=
"1"
>
<widget
class=
"QLabel"
name=
"validFrom"
>
<property
name=
"text"
>
<string>
00/00/00
</string>
</property>
<property
name=
"textInteractionFlags"
>
<set>
Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse
</set>
</property>
</widget>
</item>
<item
row=
"0"
column=
"2"
>
<spacer
name=
"horizontalSpacer_3"
>
<property
name=
"orientation"
>
<enum>
Qt::Horizontal
</enum>
</property>
<property
name=
"sizeHint"
stdset=
"0"
>
<size>
<width>
40
</width>
<height>
20
</height>
</size>
</property>
</spacer>
</item>
<item
row=
"1"
column=
"0"
>
<widget
class=
"QLabel"
name=
"expiresLbl"
>
<property
name=
"text"
>
<string>
Expires:
</string>
</property>
</widget>
</item>
<item
row=
"1"
column=
"1"
>
<layout
class=
"QHBoxLayout"
name=
"horizontalLayout_3"
>
<item>
<widget
class=
"QLabel"
name=
"expires"
>
<property
name=
"text"
>
<string>
00/00/00
</string>
</property>
<property
name=
"textInteractionFlags"
>
<set>
Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse
</set>
</property>
</widget>
</item>
<item>
<widget
class=
"QToolButton"
name=
"changeExpirationBtn"
>
<property
name=
"toolTip"
>
<string>
Change
</string>
</property>
<property
name=
"text"
>
<string/>
</property>
<property
name=
"icon"
>
<iconset
theme=
"editor"
>
<normaloff>
.
</normaloff>
.
</iconset>
</property>
<property
name=
"iconSize"
>
<size>
<width>
16
</width>
<height>
16
</height>
</size>
</property>
<property
name=
"toolButtonStyle"
>
<enum>
Qt::ToolButtonTextBesideIcon
</enum>
</property>
</widget>
</item>
</layout>
</item>
<item
row=
"2"
column=
"0"
>
<widget
class=
"QLabel"
name=
"typeLbl"
>
<property
name=
"text"
>
<string>
Type:
</string>
</property>
</widget>
</item>
<item
row=
"2"
column=
"1"
>
<widget
class=
"QLabel"
name=
"type"
>
<property
name=
"text"
>
<string>
unknown
</string>
</property>
<property
name=
"textInteractionFlags"
>
<set>
Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse
</set>
</property>
</widget>
</item>
<item
row=
"3"
column=
"0"
>
<widget
class=
"QLabel"
name=
"fingerprintLbl"
>
<property
name=
"text"
>
<string>
Fingerprint:
</string>
</property>
</widget>
</item>
<item
row=
"3"
column=
"1"
colspan=
"2"
>
<widget
class=
"QLabel"
name=
"fingerprint"
>
<property
name=
"text"
>
<string>
unknown
</string>
</property>
<property
name=
"textInteractionFlags"
>
<set>
Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse
</set>
</property>
</widget>
</item>
<item
row=
"4"
column=
"0"
>
<widget
class=
"QLabel"
name=
"publishingLbl"
>
<property
name=
"text"
>
<string>
Publishing:
</string>
</property>
</widget>
</item>
<item
row=
"4"
column=
"1"
>
<widget
class=
"QPushButton"
name=
"publishing"
>
<property
name=
"text"
>
<string>
Publish Certificate
</string>
</property>
</widget>
</item>
<item
row=
"5"
column=
"0"
>
<widget
class=
"QLabel"
name=
"smimeIssuerLbl"
>
<property
name=
"text"
>
<string>
Issuer:
</string>
</property>
</widget>
</item>
<item
row=
"5"
column=
"1"
colspan=
"2"
>
<widget
class=
"QLabel"
name=
"smimeIssuer"
>
<property
name=
"text"
>
<string>
unknown
</string>
</property>
<property
name=
"wordWrap"
>
<bool>
true
</bool>
</property>
<property
name=
"textInteractionFlags"
>
<set>
Qt::TextBrowserInteraction
</set>
</property>
</widget>
</item>
<item
row=
"6"
column=
"0"
>
<widget
class=
"QLabel"
name=
"compliance"
>
<property
name=
"text"
>
<string>
Compliance:
</string>
</property>
<property
name=
"wordWrap"
>
<bool>
true
</bool>
</property>
<property
name=
"textInteractionFlags"
>
<set>
Qt::TextBrowserInteraction
</set>
</property>
</widget>
</item>
<item
row=
"6"
column=
"1"
colspan=
"2"
>
<widget
class=
"QLabel"
name=
"complianceLbl"
>
<property
name=
"text"
>
<string>
unknown
</string>
</property>
<property
name=
"wordWrap"
>
<bool>
true
</bool>
</property>
<property
name=
"textInteractionFlags"
>