File indexing completed on 2023-12-03 09:19:05
0001 /* 0002 SPDX-FileCopyrightText: 2007 Lukas Kropatschek <lukas.krop@gmail.com> 0003 SPDX-License-Identifier: GPL-2.0-or-later 0004 */ 0005 0006 #ifndef SOURCESELECT_H 0007 #define SOURCESELECT_H 0008 0009 #include "ui_sourceselect.h" 0010 0011 class SrcSelect : public QWidget, public Ui::SrcSelect 0012 { 0013 Q_OBJECT 0014 0015 public: 0016 explicit SrcSelect(QWidget *parent = nullptr); 0017 0018 private Q_SLOTS: 0019 void checkFile_toggled(bool isOn); 0020 void checkServer_toggled(bool isOn); 0021 }; 0022 0023 #endif // SOURCESELECT_H