Change Project Name to GPGFrontend.
Give up Local Key Database and Use user default one. Signed-off-by: Saturneric <eric.bktu@gmail.com>
This commit is contained in:
parent
8f14175636
commit
f3845889ac
2
.idea/.name
generated
2
.idea/.name
generated
@ -1 +1 @@
|
|||||||
gpg4usb
|
GPGFrontend
|
@ -1,6 +1,6 @@
|
|||||||
cmake_minimum_required(VERSION 3.19)
|
cmake_minimum_required(VERSION 3.19)
|
||||||
|
|
||||||
project(gpg4usb VERSION 1.0.0 LANGUAGES CXX)
|
project(GPGFrontend VERSION 1.0.0 LANGUAGES CXX)
|
||||||
|
|
||||||
set(CMAKE_CXX_STANDARD 17)
|
set(CMAKE_CXX_STANDARD 17)
|
||||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||||
|
@ -3,9 +3,9 @@
|
|||||||
<file alias="keymgmt.png">release/icons/keymgmt.png</file>
|
<file alias="keymgmt.png">release/icons/keymgmt.png</file>
|
||||||
<file alias="help.png">release/icons/help.png</file>
|
<file alias="help.png">release/icons/help.png</file>
|
||||||
<file alias="button_copy.png">release/icons/button_copy.png</file>
|
<file alias="button_copy.png">release/icons/button_copy.png</file>
|
||||||
<file alias="gpg4usb-logo.png">release/icons/gpg4usb-logo.png</file>
|
<file alias="gpgfrontend-logo.png">release/icons/gpgfrontend-logo.png</file>
|
||||||
<file alias="banner.png">release/icons/wizard_banner.png</file>
|
<file alias="banner.png">release/icons/wizard_banner.png</file>
|
||||||
<file alias="logo_small.png">release/icons/gpg4usb-logo_small.png</file>
|
<file alias="logo_small.png">release/icons/gpgfrontend-logo_small.png</file>
|
||||||
<file alias="keys2.jpg">release/icons/keys12.jpg</file>
|
<file alias="keys2.jpg">release/icons/keys12.jpg</file>
|
||||||
<file alias="keys3.jpg">release/icons/keys13.jpg</file>
|
<file alias="keys3.jpg">release/icons/keys13.jpg</file>
|
||||||
<file alias="error.png">release/icons/error.png</file>
|
<file alias="error.png">release/icons/error.png</file>
|
||||||
|
@ -1,22 +0,0 @@
|
|||||||
//
|
|
||||||
// Created by eric on 2021/5/12.
|
|
||||||
//
|
|
||||||
|
|
||||||
#ifndef GPG4USB_GPG4USB_H
|
|
||||||
#define GPG4USB_GPG4USB_H
|
|
||||||
|
|
||||||
#include <iostream>
|
|
||||||
#include <string>
|
|
||||||
#include <cmath>
|
|
||||||
#include <clocale>
|
|
||||||
#include <cerrno>
|
|
||||||
#include <utility>
|
|
||||||
|
|
||||||
#include <QtCore>
|
|
||||||
#include <QtWidgets>
|
|
||||||
#include <QtNetwork/QtNetwork>
|
|
||||||
#include <QtPrintSupport/QtPrintSupport>
|
|
||||||
|
|
||||||
#include <gpgme.h>
|
|
||||||
|
|
||||||
#endif //GPG4USB_GPG4USB_H
|
|
42
include/GpgFrontend.h
Normal file
42
include/GpgFrontend.h
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
/**
|
||||||
|
* This file is part of GPGFrontend.
|
||||||
|
*
|
||||||
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
|
* Their source code version also complies with GNU General Public License.
|
||||||
|
*
|
||||||
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef GPG4USB_GPG4USB_H
|
||||||
|
#define GPG4USB_GPG4USB_H
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
#include <string>
|
||||||
|
#include <cmath>
|
||||||
|
#include <clocale>
|
||||||
|
#include <cerrno>
|
||||||
|
#include <utility>
|
||||||
|
|
||||||
|
#include <QtCore>
|
||||||
|
#include <QtWidgets>
|
||||||
|
#include <QtNetwork/QtNetwork>
|
||||||
|
#include <QtPrintSupport/QtPrintSupport>
|
||||||
|
|
||||||
|
#include <gpgme.h>
|
||||||
|
|
||||||
|
#endif //GPG4USB_GPG4USB_H
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* mainwindow.h
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __GPGWIN_H__
|
#ifndef __GPGWIN_H__
|
||||||
|
@ -1,28 +1,31 @@
|
|||||||
/*
|
/**
|
||||||
* mime.h
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __MIME_H__
|
#ifndef __MIME_H__
|
||||||
#define __MIME_H__
|
#define __MIME_H__
|
||||||
|
|
||||||
#include <GPG4USB.h>
|
#include <GpgFrontend.h>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
|
|
||||||
class HeadElem {
|
class HeadElem {
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* gpgconstants.h
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef GPGCONSTANTS_H
|
#ifndef GPGCONSTANTS_H
|
||||||
|
@ -1,28 +1,31 @@
|
|||||||
/*
|
/**
|
||||||
* gpgcontext.h
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __SGPGMEPP_CONTEXT_H__
|
#ifndef __SGPGMEPP_CONTEXT_H__
|
||||||
#define __SGPGMEPP_CONTEXT_H__
|
#define __SGPGMEPP_CONTEXT_H__
|
||||||
|
|
||||||
#include <GPG4USB.h>
|
#include <GpgFrontend.h>
|
||||||
|
|
||||||
#include "GpgConstants.h"
|
#include "GpgConstants.h"
|
||||||
#include "GpgGenKeyInfo.h"
|
#include "GpgGenKeyInfo.h"
|
||||||
|
@ -1,6 +1,26 @@
|
|||||||
//
|
/**
|
||||||
// Created by eric on 2021/5/13.
|
* This file is part of GPGFrontend.
|
||||||
//
|
*
|
||||||
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
|
* Their source code version also complies with GNU General Public License.
|
||||||
|
*
|
||||||
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef GPG4USB_GPGGENKEYINFO_H
|
#ifndef GPG4USB_GPGGENKEYINFO_H
|
||||||
#define GPG4USB_GPGGENKEYINFO_H
|
#define GPG4USB_GPGGENKEYINFO_H
|
||||||
|
@ -1,28 +1,31 @@
|
|||||||
/*
|
/**
|
||||||
* aboutdialog.h
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __ABOUTDIALOG_H__
|
#ifndef __ABOUTDIALOG_H__
|
||||||
#define __ABOUTDIALOG_H__
|
#define __ABOUTDIALOG_H__
|
||||||
|
|
||||||
#include <GPG4USB.h>
|
#include <GpgFrontend.h>
|
||||||
|
|
||||||
#include "gpg/GpgContext.h"
|
#include "gpg/GpgContext.h"
|
||||||
|
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* attachmenttablemodel.h
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __ATTACHMENTTABLEMODEL_H__
|
#ifndef __ATTACHMENTTABLEMODEL_H__
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* attachments.h
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __ATTACHMENTS_H__
|
#ifndef __ATTACHMENTS_H__
|
||||||
|
@ -1,28 +1,31 @@
|
|||||||
/*
|
/**
|
||||||
* textpage.h
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __EDITORPAGE_H__
|
#ifndef __EDITORPAGE_H__
|
||||||
#define __EDITORPAGE_H__
|
#define __EDITORPAGE_H__
|
||||||
|
|
||||||
#include <GPG4USB.h>
|
#include <GpgFrontend.h>
|
||||||
|
|
||||||
#include "gpg/GpgConstants.h"
|
#include "gpg/GpgConstants.h"
|
||||||
|
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* fileencryptiondialog.h
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __FILEENCRYPTIONDIALOG_H__
|
#ifndef __FILEENCRYPTIONDIALOG_H__
|
||||||
|
@ -1,3 +1,26 @@
|
|||||||
|
/**
|
||||||
|
* This file is part of GPGFrontend.
|
||||||
|
*
|
||||||
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
|
* Their source code version also complies with GNU General Public License.
|
||||||
|
*
|
||||||
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef FINDWIDGET_H
|
#ifndef FINDWIDGET_H
|
||||||
#define FINDWIDGET_H
|
#define FINDWIDGET_H
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#ifndef HELPPAGE_H
|
#ifndef HELPPAGE_H
|
||||||
#define HELPPAGE_H
|
#define HELPPAGE_H
|
||||||
|
|
||||||
#include <GPG4USB.h>
|
#include <GpgFrontend.h>
|
||||||
|
|
||||||
class HelpPage : public QWidget {
|
class HelpPage : public QWidget {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* keydetailsdialog.h
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __KEYDETAILSDIALOG_H__
|
#ifndef __KEYDETAILSDIALOG_H__
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* keyimportdetailsdialog.h
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __KEYIMPORTDETAILSDIALOG_H__
|
#ifndef __KEYIMPORTDETAILSDIALOG_H__
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* keylist.h
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __KEYLIST_H__
|
#ifndef __KEYLIST_H__
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* keymgmt.h
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __KEYMGMT_H__
|
#ifndef __KEYMGMT_H__
|
||||||
|
@ -1,23 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* keyserverimportdialog.h
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* it under the terms of the GNU General Public License as published by
|
* Their source code version also complies with GNU General Public License.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The source code version of this software was modified and released
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __KEYSERVERIMPORTDIALOG_H__
|
#ifndef __KEYSERVERIMPORTDIALOG_H__
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* keygendialog.h
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com><eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __KEYGENDIALOG_H__
|
#ifndef __KEYGENDIALOG_H__
|
||||||
|
@ -1,24 +1,26 @@
|
|||||||
/*
|
/**
|
||||||
* keygenthread.h
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __KEYGENTHREAD_H__
|
#ifndef __KEYGENTHREAD_H__
|
||||||
#define __KEYGENTHREAD_H__
|
#define __KEYGENTHREAD_H__
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#ifndef __QUITDIALOG_H__
|
#ifndef __QUITDIALOG_H__
|
||||||
#define __QUITDIALOG_H__
|
#define __QUITDIALOG_H__
|
||||||
|
|
||||||
#include <GPG4USB.h>
|
#include <GpgFrontend.h>
|
||||||
|
|
||||||
class QuitDialog : public QDialog {
|
class QuitDialog : public QDialog {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* settingsdialog.h
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __SETTINGSDIALOG_H__
|
#ifndef __SETTINGSDIALOG_H__
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* textedit.h
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __TEXTEDIT_H__
|
#ifndef __TEXTEDIT_H__
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* verifydetailsdialog.h
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __VERIFYDETAILSDIALOG_H__
|
#ifndef __VERIFYDETAILSDIALOG_H__
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* verifydetailbox.h
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __VERIFYKEYDETAILBOX_H__
|
#ifndef __VERIFYKEYDETAILBOX_H__
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* verifynotification.h
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __VERIFYNOTIFICATION_H__
|
#ifndef __VERIFYNOTIFICATION_H__
|
||||||
|
@ -1,25 +1,27 @@
|
|||||||
/*
|
/**
|
||||||
* wizard.h
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#ifndef WIZARD_H
|
#ifndef WIZARD_H
|
||||||
#define WIZARD_H
|
#define WIZARD_H
|
||||||
|
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 7.7 KiB |
Binary file not shown.
Before Width: | Height: | Size: 6.8 KiB |
BIN
release/icons/gpgfrontend-logo.png
Normal file
BIN
release/icons/gpgfrontend-logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.5 KiB |
BIN
release/icons/gpgfrontend-logo_small.png
Normal file
BIN
release/icons/gpgfrontend-logo_small.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.9 KiB |
@ -1,4 +0,0 @@
|
|||||||
lock-never
|
|
||||||
personal-digest-preferences SHA512
|
|
||||||
cert-digest-algo SHA512
|
|
||||||
default-preference-list SHA512 SHA384 SHA256 SHA224 AES256 AES192 AES CAST5 ZLIB ZIP Uncompressed
|
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* mainwindow.cpp
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "MainWindow.h"
|
#include "MainWindow.h"
|
||||||
|
39
src/Mime.cpp
39
src/Mime.cpp
@ -1,30 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* mime.cpp
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
|
||||||
|
|
||||||
/***
|
|
||||||
* quotedPrintableDecode copied from KCodecs, where it is stated:
|
|
||||||
|
|
||||||
The quoted-printable codec as described in RFC 2045, section 6.7. is by
|
|
||||||
Rik Hemsley (C) 2001.
|
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* TODO: proper import / copyright statement
|
/* TODO: proper import / copyright statement
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* gpgconstants.cpp
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "gpg/GpgConstants.h"
|
#include "gpg/GpgConstants.h"
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* gpgcontext.cpp
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "gpg/GpgContext.h"
|
#include "gpg/GpgContext.h"
|
||||||
@ -67,16 +70,6 @@ namespace GpgME {
|
|||||||
err = gpgme_new(&mCtx);
|
err = gpgme_new(&mCtx);
|
||||||
checkErr(err);
|
checkErr(err);
|
||||||
|
|
||||||
/** here come the qSettings, instead of /usr/bin/gpg
|
|
||||||
* a executable in the same path as app is used.
|
|
||||||
* also lin/win must be checked, for calling gpg.exe if needed
|
|
||||||
*/
|
|
||||||
#ifdef _WIN32
|
|
||||||
gpgBin = appPath + "/bin/gpg.exe";
|
|
||||||
#else
|
|
||||||
gpgBin = "/usr/bin/gpg";
|
|
||||||
#endif
|
|
||||||
|
|
||||||
QSettings qSettings;
|
QSettings qSettings;
|
||||||
QString accKeydbPath = qSettings.value("gpgpaths/keydbpath").toString();
|
QString accKeydbPath = qSettings.value("gpgpaths/keydbpath").toString();
|
||||||
QString qGpgKeys = appPath + "/keydb/" + accKeydbPath;
|
QString qGpgKeys = appPath + "/keydb/" + accKeydbPath;
|
||||||
@ -89,20 +82,9 @@ namespace GpgME {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* err = gpgme_ctx_set_engine_info(mCtx, GPGME_PROTOCOL_OpenPGP,
|
|
||||||
gpgBin.toUtf8().constData(),
|
|
||||||
qGpgKeys.toUtf8().constData());*/
|
|
||||||
#ifndef GPG4USB_NON_PORTABLE
|
|
||||||
err = gpgme_ctx_set_engine_info(mCtx, GPGME_PROTOCOL_OpenPGP,
|
|
||||||
gpgBin.toLocal8Bit().constData(),
|
|
||||||
qGpgKeys.toLocal8Bit().constData());
|
|
||||||
checkErr(err);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
gpgme_engine_info_t engineInfo;
|
gpgme_engine_info_t engineInfo;
|
||||||
engineInfo = gpgme_ctx_get_engine_info(mCtx);
|
engineInfo = gpgme_ctx_get_engine_info(mCtx);
|
||||||
|
|
||||||
|
|
||||||
while (engineInfo != nullptr) {
|
while (engineInfo != nullptr) {
|
||||||
qDebug() << gpgme_get_protocol_name(engineInfo->protocol);
|
qDebug() << gpgme_get_protocol_name(engineInfo->protocol);
|
||||||
engineInfo = engineInfo->next;
|
engineInfo = engineInfo->next;
|
||||||
|
33
src/main.cpp
33
src/main.cpp
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* main.cpp
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "MainWindow.h"
|
#include "MainWindow.h"
|
||||||
@ -31,7 +34,7 @@ int main(int argc, char *argv[]) {
|
|||||||
QString appPath = qApp->applicationDirPath();
|
QString appPath = qApp->applicationDirPath();
|
||||||
|
|
||||||
QApplication::setApplicationVersion("1.0.0");
|
QApplication::setApplicationVersion("1.0.0");
|
||||||
QApplication::setApplicationName("gpg4usb");
|
QApplication::setApplicationName("GPGFrontend");
|
||||||
|
|
||||||
// dont show icons in menus
|
// dont show icons in menus
|
||||||
QApplication::setAttribute(Qt::AA_DontShowIconsInMenus);
|
QApplication::setAttribute(Qt::AA_DontShowIconsInMenus);
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* aboutdialog.cpp
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ui/AboutDialog.h"
|
#include "ui/AboutDialog.h"
|
||||||
@ -45,18 +48,18 @@ AboutDialog::AboutDialog(QWidget *parent)
|
|||||||
|
|
||||||
InfoTab::InfoTab(QWidget *parent)
|
InfoTab::InfoTab(QWidget *parent)
|
||||||
: QWidget(parent) {
|
: QWidget(parent) {
|
||||||
auto *pixmap = new QPixmap(":gpg4usb-logo.png");
|
auto *pixmap = new QPixmap(":gpgfrontend-logo.png");
|
||||||
auto *text = new QString("<center><h2>" + qApp->applicationName() + " "
|
auto *text = new QString("<center><h2>" + qApp->applicationName() + " "
|
||||||
+ qApp->applicationVersion() + "</h2></center>"
|
+ qApp->applicationVersion() + "</h2></center>"
|
||||||
+ tr("<center>This application allows simple encryption <br>"
|
+ tr("<center>This application allows simple encryption <br>"
|
||||||
"and decryption of text messages or files.<br>"
|
"and decryption of text messages or files.<br>"
|
||||||
"It's licensed under the GPL v3<br><br>"
|
"It's licensed under the GPL v3<br><br>"
|
||||||
"<b>Developer:</b><br>"
|
"<b>Developer:</b><br>"
|
||||||
"Bene, Heimer, Juergen, Nils, Ubbo<br><br>"
|
"Saturneric<br><br>"
|
||||||
"If you have any questions or suggestions have a look<br/>"
|
"If you have any questions or suggestions have a look<br/>"
|
||||||
"at our <a href=\"http://gpg4usb.cpunk.de/contact.php\">"
|
"at my <a href=\"https://bktus.com/%e8%81%94%e7%b3%bb%e4%b8%8e%e9%aa%8c%e8%af%81\">"
|
||||||
"contact page</a> or send a mail to our<br/> mailing list at"
|
"contact page</a> or send a mail to our<br/> mailing list at"
|
||||||
" <a href=\"mailto:gpg4usb@gzehn.de\">gpg4usb@gzehn.de</a>.") +
|
" <a href=\"mailto:eric@bktus.com\">eric@bktus.com</a>.") +
|
||||||
tr("<br><br> Built with Qt ") + qVersion()
|
tr("<br><br> Built with Qt ") + qVersion()
|
||||||
+ tr(" and GPGME ") + GpgME::GpgContext::getGpgmeVersion() + "</center>");
|
+ tr(" and GPGME ") + GpgME::GpgContext::getGpgmeVersion() + "</center>");
|
||||||
|
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* attachmenttablemodel.cpp
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ui/AttachmentTableModel.h"
|
#include "ui/AttachmentTableModel.h"
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* attachments.cpp
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* TODO:
|
/* TODO:
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* textpage.cpp
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com><eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ui/EditorPage.h"
|
#include "ui/EditorPage.h"
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* fileencryptiondialog.cpp
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ui/FileEncryptionDialog.h"
|
#include "ui/FileEncryptionDialog.h"
|
||||||
|
@ -1,3 +1,26 @@
|
|||||||
|
/**
|
||||||
|
* This file is part of GPGFrontend.
|
||||||
|
*
|
||||||
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
|
* Their source code version also complies with GNU General Public License.
|
||||||
|
*
|
||||||
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
#include "ui/FindWidget.h"
|
#include "ui/FindWidget.h"
|
||||||
|
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* helppage.cpp
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ui/HelpPage.h"
|
#include "ui/HelpPage.h"
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* keydetailsdialog.cpp
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ui/KeyDetailsDialog.h"
|
#include "ui/KeyDetailsDialog.h"
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* keyimportdetailsdialog.cpp
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <ui/KeyImportDetailDialog.h>
|
#include <ui/KeyImportDetailDialog.h>
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* keylist.cpp
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ui/KeyList.h"
|
#include "ui/KeyList.h"
|
||||||
|
@ -1,23 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* keymgmt.cpp
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* it under the terms of the GNU General Public License as published by
|
* Their source code version also complies with GNU General Public License.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The source code version of this software was modified and released
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ui/KeyMgmt.h"
|
#include "ui/KeyMgmt.h"
|
||||||
|
@ -1,23 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* keyserverimportdialog.cpp
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* it under the terms of the GNU General Public License as published by
|
* Their source code version also complies with GNU General Public License.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The source code version of this software was modified and released
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ui/KeyServerImportDialog.h"
|
#include "ui/KeyServerImportDialog.h"
|
||||||
|
@ -1,23 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* keygendialog.cpp
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* it under the terms of the GNU General Public License as published by
|
* Their source code version also complies with GNU General Public License.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The source code version of this software was modified and released
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ui/KeygenDialog.h"
|
#include "ui/KeygenDialog.h"
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* keygenthread.cpp
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ui/KeygenThread.h"
|
#include "ui/KeygenThread.h"
|
||||||
|
@ -1,23 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* keymgmt.cpp
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* it under the terms of the GNU General Public License as published by
|
* Their source code version also complies with GNU General Public License.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The source code version of this software was modified and released
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ui/QuitDialog.h"
|
#include "ui/QuitDialog.h"
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* settingsdialog.cpp
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ui/SettingsDialog.h"
|
#include "ui/SettingsDialog.h"
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* textedit.cpp
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ui/TextEdit.h"
|
#include "ui/TextEdit.h"
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* verifydetailsdialog.cpp
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ui/VerifyDetailsDialog.h"
|
#include "ui/VerifyDetailsDialog.h"
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* verifydetailbox.cpp
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ui/VerifyKeyDetailBox.h"
|
#include "ui/VerifyKeyDetailBox.h"
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
/*
|
/**
|
||||||
* verifynotification.cpp
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ui/VerifyNotification.h"
|
#include "ui/VerifyNotification.h"
|
||||||
|
@ -1,21 +1,25 @@
|
|||||||
/* * wizard.cpp
|
/**
|
||||||
|
* This file is part of GPGFrontend.
|
||||||
*
|
*
|
||||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
* GPGFrontend 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 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This file is part of gpg4usb.
|
* Foobar is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
* You should have received a copy of the GNU General Public License
|
||||||
* it under the terms of the GNU General Public License as published by
|
* along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
*
|
||||||
* Gpg4usb is distributed in the hope that it will be useful,
|
* The initial version of the source code is inherited from gpg4usb-team.
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Their source code version also complies with GNU General Public License.
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
*
|
||||||
* GNU General Public License for more details.
|
* The source code version of this software was modified and released
|
||||||
|
* by Saturneric<eric@bktus.com> starting on May 12, 2021.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ui/Wizard.h"
|
#include "ui/Wizard.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user