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

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 KGSTARTUP_H
0009 #define KGSTARTUP_H
0010 
0011 #include "konfiguratorpage.h"
0012 
0013 class KgStartup : public KonfiguratorPage
0014 {
0015     Q_OBJECT
0016 
0017 public:
0018     explicit KgStartup(bool first, QWidget *parent = nullptr);
0019 
0020 public slots:
0021     void slotDisable();
0022 
0023 protected:
0024     KonfiguratorRadioButtons *saveRadio;
0025     KonfiguratorCheckBoxGroup *uiCbGroup;
0026     KonfiguratorComboBox *profileCombo;
0027 };
0028 
0029 #endif /* __KGSTARTUP_H__ */