Mercurial > trustbridge
view ui/certificatelistwidget.cpp @ 1070:f110a3f6e387
(issue114) Fine tune ACL propagation
using mkdir_p the ACL of the parent directories would
propagate to all subdirectories and objects in the directory.
Now we only use ACL propagation in the last directory to make
sure that files we might create in that directory inherit the
correct (resitricted) ACL
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Wed, 10 Sep 2014 16:41:36 +0200 |
parents | bd33c6585cd0 |
children | 2b3526ef2d69 |
line wrap: on
line source
/* Copyright (C) 2014 by Bundesamt für Sicherheit in der Informationstechnik * Software engineering by Intevation GmbH * * This file is Free Software under the GNU GPL (v>=2) * and comes with ABSOLUTELY NO WARRANTY! * See LICENSE.txt for details. */ #include "certificatelistwidget.h" #include <QDebug> #include <QVBoxLayout> #include <QGroupBox> #include <QLabel> #include <QApplication> #include "certificateitemwidget.h" CertificateListWidget::CertificateListWidget(QWidget *parent, Qt::WindowFlags flags) : QWidget(parent, flags) { QVBoxLayout *outerLayout = new QVBoxLayout(this); outerLayout->addLayout(&mLayout); outerLayout->addStretch(); } void CertificateListWidget::addCertificate( const Certificate &certificate, bool state, bool editable, const QString &installLabel, const QString &removeLabel) { CertificateItemWidget *widget = new CertificateItemWidget(this, certificate, state, editable, installLabel, removeLabel); connect(widget, SIGNAL(stateChanged(bool, const Certificate&)), this, SLOT(certStateChanged(bool, const Certificate&))); mCertificateWidgets << widget; mLayout.addWidget(widget); emit certListChanged(-1); } void CertificateListWidget::removeCertificate(const Certificate &cert) { for (int i = 0; i < mCertificateWidgets.size(); i++) { if (mCertificateWidgets[i]->certificate() == cert) { mLayout.removeWidget(mCertificateWidgets[i]); mCertificateWidgets[i]->deleteLater(); mCertificateWidgets.removeAt(i); break; } } emit certListChanged(-1); } void CertificateListWidget::clear() { foreach (CertificateItemWidget * item, mCertificateWidgets) { mLayout.removeWidget(item); delete item; } mCertificateWidgets.clear(); } QStringList CertificateListWidget::certificates() { QStringList list; foreach (CertificateItemWidget * item, mCertificateWidgets) { list << item->certificate().base64Line(); } return list; } QStringList CertificateListWidget::selectedCertificates() { QStringList list; foreach (CertificateItemWidget * item, mCertificateWidgets) { if (item->state()) { list << item->certificate().base64Line(); } } return list; } QStringList CertificateListWidget::unselectedCertificates() { QStringList list; foreach (CertificateItemWidget * item, mCertificateWidgets) { if (!item->state()) { list << item->certificate().base64Line(); } } return list; } QList<Certificate> CertificateListWidget::certificateList() { QList<Certificate> list; foreach (CertificateItemWidget * item, mCertificateWidgets) { list << item->certificate(); } return list; } void CertificateListWidget::setCertState(bool state, const Certificate &cert) { foreach (CertificateItemWidget * item, mCertificateWidgets) { if (item->certificate() == cert && item->state() != state) { item->setState(state); } } } void CertificateListWidget::certStateChanged(bool state, const Certificate &cert) { emit certListChanged(-1); emit certChanged(state, cert); } int CertificateListWidget::selectedCertCount() { int selected = 0; foreach (CertificateItemWidget * item, mCertificateWidgets) { if (item->state()) { selected++; } } return selected; } bool CertificateListWidget::contains(const Certificate &cert) { foreach (CertificateItemWidget * item, mCertificateWidgets) { if (item->certificate() == cert) { return true; } } return false; }