File indexing completed on 2024-12-08 06:36:24
0001 /* 0002 general options for parley 0003 SPDX-FileCopyrightText: 2005, 2007 Peter Hedlund <peter.hedlund@kdemail.net> 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #ifndef GENERALOPTIONS_H 0008 #define GENERALOPTIONS_H 0009 0010 #include "ui_generaloptionsbase.h" 0011 0012 class GeneralOptions : public QWidget, public Ui::GeneralOptionsBase 0013 { 0014 Q_OBJECT 0015 public: 0016 explicit GeneralOptions(QWidget *parent = nullptr); 0017 0018 void updateWidgets(); 0019 bool hasChanged(); 0020 bool isDefault(); 0021 void updateSettings(); 0022 0023 private Q_SLOTS: 0024 void fillWidgets(); 0025 }; 0026 0027 #endif