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

0001 /*
0002     SPDX-FileCopyrightText: 2011 Michal Malek <michalm@jabster.pl>
0003     SPDX-FileCopyrightText: 1998-2007 Sebastian Trueg <trueg@k3b.org>
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 
0008 
0009 #ifndef K3B_DEVICE_OPTIONTAB_H
0010 #define K3B_DEVICE_OPTIONTAB_H
0011 
0012 #include <QWidget>
0013 
0014 namespace K3b {
0015     class DeviceWidget;
0016 
0017     class DeviceOptionTab : public QWidget
0018     {
0019         Q_OBJECT
0020 
0021     public:
0022         explicit DeviceOptionTab( QWidget* = 0 );
0023         ~DeviceOptionTab() override;
0024 
0025         void readDevices();
0026         void saveDevices();
0027 
0028     private Q_SLOTS:
0029         void slotRefreshButtonClicked();
0030 
0031     private:
0032         DeviceWidget* m_deviceWidget;
0033     };
0034 }
0035 
0036 
0037 
0038 #endif