remotes/origin/work/aacid/dont_show_non_valid_certs
parent
2845db76fb
commit
69ddb957f1
6 changed files with 134 additions and 0 deletions
@ -0,0 +1,25 @@ |
||||
/***************************************************************************
|
||||
* Copyright (C) 2019 by Bubli * |
||||
* * |
||||
* This program is free software; you can redistribute it and/or modify * |
||||
* it under the terms of the GNU General Public License as published by * |
||||
* the Free Software Foundation; either version 2 of the License, or * |
||||
* (at your option) any later version. * |
||||
***************************************************************************/ |
||||
|
||||
#include "dlgsignatures.h" |
||||
|
||||
#include "ui_dlgsignaturesbase.h" |
||||
|
||||
DlgSignatures::DlgSignatures(QWidget *parent) |
||||
: QWidget(parent) |
||||
{ |
||||
m_dlg = new Ui_DlgSignaturesBase(); |
||||
m_dlg->setupUi(this); |
||||
} |
||||
|
||||
DlgSignatures::~DlgSignatures() |
||||
{ |
||||
delete m_dlg; |
||||
} |
||||
#include "moc_dlgsignatures.cpp" |
||||
@ -0,0 +1,29 @@ |
||||
/***************************************************************************
|
||||
* Copyright (C) 2019 by Bubli * |
||||
* * |
||||
* This program is free software; you can redistribute it and/or modify * |
||||
* it under the terms of the GNU General Public License as published by * |
||||
* the Free Software Foundation; either version 2 of the License, or * |
||||
* (at your option) any later version. * |
||||
***************************************************************************/ |
||||
|
||||
#ifndef DLGSIGNATURES_H |
||||
#define DLGSIGNATURES_H |
||||
|
||||
#include <qwidget.h> |
||||
|
||||
class Ui_DlgSignaturesBase; |
||||
|
||||
class DlgSignatures : public QWidget |
||||
{ |
||||
Q_OBJECT |
||||
|
||||
public: |
||||
explicit DlgSignatures(QWidget *parent = nullptr); |
||||
virtual ~DlgSignatures(); |
||||
|
||||
private: |
||||
Ui_DlgSignaturesBase *m_dlg; |
||||
}; |
||||
|
||||
#endif |
||||
@ -0,0 +1,72 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<ui version="4.0"> |
||||
<class>DlgSignaturesBase</class> |
||||
<widget class="QWidget" name="DlgSignaturesBase"> |
||||
<property name="geometry"> |
||||
<rect> |
||||
<x>0</x> |
||||
<y>0</y> |
||||
<width>375</width> |
||||
<height>118</height> |
||||
</rect> |
||||
</property> |
||||
<layout class="QVBoxLayout" name="verticalLayout_3"> |
||||
<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> |
||||
<widget class="QGroupBox" name="groupBox_2"> |
||||
<property name="title"> |
||||
<string>Digital Signatures</string> |
||||
</property> |
||||
<layout class="QGridLayout" name="gridLayout"> |
||||
<item row="0" column="1"> |
||||
<widget class="QPushButton" name="pushButton"> |
||||
<property name="text"> |
||||
<string>Add</string> |
||||
</property> |
||||
</widget> |
||||
</item> |
||||
<item row="1" column="1"> |
||||
<widget class="QPushButton" name="pushButton_2"> |
||||
<property name="text"> |
||||
<string>Remove</string> |
||||
</property> |
||||
</widget> |
||||
</item> |
||||
<item row="0" column="0" rowspan="2"> |
||||
<widget class="QListWidget" name="listWidget"/> |
||||
</item> |
||||
</layout> |
||||
</widget> |
||||
</item> |
||||
<item> |
||||
<spacer> |
||||
<property name="orientation"> |
||||
<enum>Qt::Vertical</enum> |
||||
</property> |
||||
<property name="sizeType"> |
||||
<enum>QSizePolicy::Expanding</enum> |
||||
</property> |
||||
<property name="sizeHint" stdset="0"> |
||||
<size> |
||||
<width>20</width> |
||||
<height>4</height> |
||||
</size> |
||||
</property> |
||||
</spacer> |
||||
</item> |
||||
</layout> |
||||
</widget> |
||||
<resources/> |
||||
<connections/> |
||||
</ui> |
||||
Loading…
Reference in new issue