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

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