You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
679 B
24 lines
679 B
/* |
|
SPDX-FileCopyrightText: 2018 Chinmoy Ranjan Pradhan <chinmoyrp65@gmail.com> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#ifndef OKULAR_SIGNATUREPARTUTILS_H |
|
#define OKULAR_SIGNATUREPARTUTILS_H |
|
|
|
#include <memory> |
|
|
|
#include "gui/signatureguiutils.h" |
|
|
|
class PageView; |
|
|
|
namespace SignaturePartUtils |
|
{ |
|
std::unique_ptr<Okular::CertificateInfo> getCertificateAndPasswordForSigning(PageView *pageView, Okular::Document *doc, QString *password, QString *documentPassword); |
|
QString getFileNameForNewSignedFile(PageView *pageView, Okular::Document *doc); |
|
void signUnsignedSignature(const Okular::FormFieldSignature *form, PageView *pageView, Okular::Document *doc); |
|
|
|
} |
|
|
|
#endif
|
|
|