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)
|
||||
|
||||
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_REQUIRED ON)
|
||||
|
@ -3,9 +3,9 @@
|
||||
<file alias="keymgmt.png">release/icons/keymgmt.png</file>
|
||||
<file alias="help.png">release/icons/help.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="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="keys3.jpg">release/icons/keys13.jpg</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>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 __GPGWIN_H__
|
||||
|
@ -1,28 +1,31 @@
|
||||
/*
|
||||
* mime.h
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 __MIME_H__
|
||||
#define __MIME_H__
|
||||
|
||||
#include <GPG4USB.h>
|
||||
#include <GpgFrontend.h>
|
||||
#include <utility>
|
||||
|
||||
class HeadElem {
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* gpgconstants.h
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 GPGCONSTANTS_H
|
||||
|
@ -1,28 +1,31 @@
|
||||
/*
|
||||
* gpgcontext.h
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 __SGPGMEPP_CONTEXT_H__
|
||||
#define __SGPGMEPP_CONTEXT_H__
|
||||
|
||||
#include <GPG4USB.h>
|
||||
#include <GpgFrontend.h>
|
||||
|
||||
#include "GpgConstants.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
|
||||
#define GPG4USB_GPGGENKEYINFO_H
|
||||
|
@ -1,28 +1,31 @@
|
||||
/*
|
||||
* aboutdialog.h
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 __ABOUTDIALOG_H__
|
||||
#define __ABOUTDIALOG_H__
|
||||
|
||||
#include <GPG4USB.h>
|
||||
#include <GpgFrontend.h>
|
||||
|
||||
#include "gpg/GpgContext.h"
|
||||
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* attachmenttablemodel.h
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 __ATTACHMENTTABLEMODEL_H__
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* attachments.h
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 __ATTACHMENTS_H__
|
||||
|
@ -1,28 +1,31 @@
|
||||
/*
|
||||
* textpage.h
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 __EDITORPAGE_H__
|
||||
#define __EDITORPAGE_H__
|
||||
|
||||
#include <GPG4USB.h>
|
||||
#include <GpgFrontend.h>
|
||||
|
||||
#include "gpg/GpgConstants.h"
|
||||
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* fileencryptiondialog.h
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 __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
|
||||
#define FINDWIDGET_H
|
||||
|
@ -22,7 +22,7 @@
|
||||
#ifndef HELPPAGE_H
|
||||
#define HELPPAGE_H
|
||||
|
||||
#include <GPG4USB.h>
|
||||
#include <GpgFrontend.h>
|
||||
|
||||
class HelpPage : public QWidget {
|
||||
Q_OBJECT
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* keydetailsdialog.h
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 __KEYDETAILSDIALOG_H__
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* keyimportdetailsdialog.h
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 __KEYIMPORTDETAILSDIALOG_H__
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* keylist.h
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 __KEYLIST_H__
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* keymgmt.h
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 __KEYMGMT_H__
|
||||
|
@ -1,23 +1,25 @@
|
||||
/*
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* keyserverimportdialog.h
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 __KEYSERVERIMPORTDIALOG_H__
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* keygendialog.h
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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><eric@bktus.com> starting on May 12, 2021.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef __KEYGENDIALOG_H__
|
||||
|
@ -1,24 +1,26 @@
|
||||
/*
|
||||
* keygenthread.h
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 __KEYGENTHREAD_H__
|
||||
#define __KEYGENTHREAD_H__
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#ifndef __QUITDIALOG_H__
|
||||
#define __QUITDIALOG_H__
|
||||
|
||||
#include <GPG4USB.h>
|
||||
#include <GpgFrontend.h>
|
||||
|
||||
class QuitDialog : public QDialog {
|
||||
Q_OBJECT
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* settingsdialog.h
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 __SETTINGSDIALOG_H__
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* textedit.h
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 __TEXTEDIT_H__
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* verifydetailsdialog.h
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 __VERIFYDETAILSDIALOG_H__
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* verifydetailbox.h
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 __VERIFYKEYDETAILBOX_H__
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* verifynotification.h
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 __VERIFYNOTIFICATION_H__
|
||||
|
@ -1,25 +1,27 @@
|
||||
/*
|
||||
* wizard.h
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 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>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 "MainWindow.h"
|
||||
|
29
src/Mime.cpp
29
src/Mime.cpp
@ -1,30 +1,25 @@
|
||||
/*
|
||||
* mime.cpp
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 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.
|
||||
|
||||
* 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.
|
||||
*
|
||||
*/
|
||||
|
||||
/* TODO: proper import / copyright statement
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* gpgconstants.cpp
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 "gpg/GpgConstants.h"
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* gpgcontext.cpp
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 "gpg/GpgContext.h"
|
||||
@ -67,16 +70,6 @@ namespace GpgME {
|
||||
err = gpgme_new(&mCtx);
|
||||
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;
|
||||
QString accKeydbPath = qSettings.value("gpgpaths/keydbpath").toString();
|
||||
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;
|
||||
engineInfo = gpgme_ctx_get_engine_info(mCtx);
|
||||
|
||||
|
||||
while (engineInfo != nullptr) {
|
||||
qDebug() << gpgme_get_protocol_name(engineInfo->protocol);
|
||||
engineInfo = engineInfo->next;
|
||||
|
23
src/main.cpp
23
src/main.cpp
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* main.cpp
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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 "MainWindow.h"
|
||||
@ -31,7 +34,7 @@ int main(int argc, char *argv[]) {
|
||||
QString appPath = qApp->applicationDirPath();
|
||||
|
||||
QApplication::setApplicationVersion("1.0.0");
|
||||
QApplication::setApplicationName("gpg4usb");
|
||||
QApplication::setApplicationName("GPGFrontend");
|
||||
|
||||
// dont show icons in menus
|
||||
QApplication::setAttribute(Qt::AA_DontShowIconsInMenus);
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* aboutdialog.cpp
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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/AboutDialog.h"
|
||||
@ -45,18 +48,18 @@ AboutDialog::AboutDialog(QWidget *parent)
|
||||
|
||||
InfoTab::InfoTab(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() + " "
|
||||
+ qApp->applicationVersion() + "</h2></center>"
|
||||
+ tr("<center>This application allows simple encryption <br>"
|
||||
"and decryption of text messages or files.<br>"
|
||||
"It's licensed under the GPL v3<br><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/>"
|
||||
"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"
|
||||
" <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(" 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>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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/AttachmentTableModel.h"
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* attachments.cpp
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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.
|
||||
*
|
||||
*/
|
||||
|
||||
/* TODO:
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* textpage.cpp
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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><eric@bktus.com> starting on May 12, 2021.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "ui/EditorPage.h"
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* fileencryptiondialog.cpp
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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/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"
|
||||
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* helppage.cpp
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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/HelpPage.h"
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* keydetailsdialog.cpp
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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/KeyDetailsDialog.h"
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* keyimportdetailsdialog.cpp
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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/KeyImportDetailDialog.h>
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* keylist.cpp
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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/KeyList.h"
|
||||
|
@ -1,23 +1,25 @@
|
||||
/*
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* keymgmt.cpp
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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/KeyMgmt.h"
|
||||
|
@ -1,23 +1,25 @@
|
||||
/*
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* keyserverimportdialog.cpp
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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/KeyServerImportDialog.h"
|
||||
|
@ -1,23 +1,25 @@
|
||||
/*
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* keygendialog.cpp
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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/KeygenDialog.h"
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* keygenthread.cpp
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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/KeygenThread.h"
|
||||
|
@ -1,23 +1,25 @@
|
||||
/*
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* keymgmt.cpp
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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/QuitDialog.h"
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* settingsdialog.cpp
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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/SettingsDialog.h"
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* textedit.cpp
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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/TextEdit.h"
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* verifydetailsdialog.cpp
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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/VerifyDetailsDialog.h"
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* verifydetailbox.cpp
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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/VerifyKeyDetailBox.h"
|
||||
|
@ -1,22 +1,25 @@
|
||||
/*
|
||||
* verifynotification.cpp
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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/VerifyNotification.h"
|
||||
|
@ -1,21 +1,25 @@
|
||||
/* * wizard.cpp
|
||||
/**
|
||||
* This file is part of GPGFrontend.
|
||||
*
|
||||
* Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
|
||||
*
|
||||
* This file is part of gpg4usb.
|
||||
*
|
||||
* Gpg4usb is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* Gpg4usb is distributed in the hope that it will be useful,
|
||||
* 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 gpg4usb. If not, see <http://www.gnu.org/licenses/>
|
||||
* 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/Wizard.h"
|
||||
|
Loading…
Reference in New Issue
Block a user