File indexing completed on 2024-12-08 08:16:24
0001 /* 0002 SPDX-FileCopyrightText: 2002 Jean-Baptiste Mardelle <bj@altern.org> 0003 SPDX-License-Identifier: GPL-2.0-or-later 0004 */ 0005 0006 #ifndef CONF_ENCRYPTION_H 0007 #define CONF_ENCRYPTION_H 0008 0009 #include "ui_conf_encryption.h" 0010 0011 class Encryption : public QWidget, public Ui_Encryption 0012 { 0013 0014 public: 0015 explicit Encryption(QWidget* parent = nullptr); 0016 0017 public: 0018 virtual void encrypt_to_always_toggled( bool ); 0019 virtual void encrypt_files_to_toggled( bool ); 0020 virtual void allow_custom_option_toggled( bool ); 0021 0022 private: 0023 0024 }; 0025 0026 #endif