File indexing completed on 2024-04-28 17:06:06

0001 /*
0002     SPDX-FileCopyrightText: 2004 Csaba Karai <krusader@users.sourceforge.net>
0003     SPDX-FileCopyrightText: 2004-2022 Krusader Krew <https://krusader.org>
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 
0008 #ifndef KGARCHIVES_H
0009 #define KGARCHIVES_H
0010 
0011 #include "konfiguratorpage.h"
0012 
0013 class KgArchives : public KonfiguratorPage
0014 {
0015     Q_OBJECT
0016 
0017 public:
0018     explicit KgArchives(bool first, QWidget *parent = nullptr);
0019 
0020 public slots:
0021     void slotAutoConfigure();
0022 
0023 protected:
0024     void disableNonExistingPackers();
0025 };
0026 
0027 #endif /* __KGARCHIVES_H__ */