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

0001 /*
0002     SPDX-FileCopyrightText: 1998-2009 Sebastian Trueg <trueg@k3b.org>
0003     SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 #ifndef K3B_DATA_VOLUMEDESC_DIALOG_H
0006 #define K3B_DATA_VOLUMEDESC_DIALOG_H
0007 
0008 #include "ui_base_k3bdatavolumedescdialog.h"
0009 
0010 namespace K3b {
0011     class IsoOptions;
0012 
0013     class DataVolumeDescDialog : public QDialog, public Ui::base_K3bDataVolumeDescDialog
0014     {
0015         Q_OBJECT
0016 
0017     public:
0018         explicit DataVolumeDescDialog( QWidget* parent = 0 );
0019         ~DataVolumeDescDialog() override;
0020 
0021         void load( const IsoOptions& );
0022         void save( IsoOptions& );
0023 
0024     private Q_SLOTS:
0025         void slotVolumeSetSizeChanged( int );
0026     };
0027 }
0028 
0029 #endif