X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/e256daa5693ba271a62959372f3e89cc93da9487..e9a39700:/src/settings/general/confirmationssettingspage.h diff --git a/src/settings/general/confirmationssettingspage.h b/src/settings/general/confirmationssettingspage.h index 4d0a652d3..20473c838 100644 --- a/src/settings/general/confirmationssettingspage.h +++ b/src/settings/general/confirmationssettingspage.h @@ -1,27 +1,16 @@ -/*************************************************************************** - * Copyright (C) 2012 by Peter Penz * - * * - * This program 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 2 of the License, or * - * (at your option) any later version. * - * * - * This program 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 this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * - ***************************************************************************/ +/* + * SPDX-FileCopyrightText: 2012 Peter Penz + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ #ifndef CONFIRMATIONSSETTINGSPAGE_H #define CONFIRMATIONSSETTINGSPAGE_H -#include +#include "config-terminal.h" +#include "settings/settingspagebase.h" class QCheckBox; +class QComboBox; /** * @brief Page for the enabling or disabling confirmation dialogs. @@ -31,23 +20,29 @@ class ConfirmationsSettingsPage : public SettingsPageBase Q_OBJECT public: - ConfirmationsSettingsPage(QWidget* parent); - virtual ~ConfirmationsSettingsPage(); + explicit ConfirmationsSettingsPage(QWidget* parent); + ~ConfirmationsSettingsPage() override; /** @see SettingsPageBase::applySettings() */ - virtual void applySettings(); + void applySettings() override; /** @see SettingsPageBase::restoreDefaults() */ - virtual void restoreDefaults(); + void restoreDefaults() override; private: void loadSettings(); private: QCheckBox* m_confirmMoveToTrash; + QCheckBox* m_confirmEmptyTrash; QCheckBox* m_confirmDelete; + +#ifdef HAVE_TERMINAL + QCheckBox* m_confirmClosingTerminalRunningProgram; +#endif + QCheckBox* m_confirmClosingMultipleTabs; - QCheckBox* m_confirmScriptExecution; + QComboBox* m_confirmScriptExecution; }; #endif