File indexing completed on 2024-05-05 04:51:37

0001 /* 
0002     SPDX-FileCopyrightText: 1998-2008 Sebastian Trueg <trueg@k3b.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef K3B_CDDB_OPTIONTAB_H
0008 #define K3B_CDDB_OPTIONTAB_H
0009 
0010 #include <QWidget>
0011 
0012 class KCModule;
0013 
0014 namespace K3b {
0015 class CddbOptionTab : public QWidget
0016 {
0017     Q_OBJECT
0018 
0019 public:
0020     explicit CddbOptionTab( QWidget* parent = 0 );
0021     ~CddbOptionTab() override;
0022 
0023 public Q_SLOTS:
0024     void readSettings();
0025     void apply();
0026 
0027 private:
0028     KCModule* m_cddbKcm;
0029 };
0030 }
0031 
0032 #endif