1 /*
2     SPDX-FileCopyrightText: 1998-2007 Sebastian Trueg <trueg@k3b.org>
3     SPDX-License-Identifier: GPL-2.0-or-later
4 */
5 
6 #ifndef _K3B_NOTIFY_OPTIONTAB_H_
7 #define _K3B_NOTIFY_OPTIONTAB_H_
8 
9 #include <QWidget>
10 
11 class KNotifyConfigWidget;
12 
13 namespace K3b {
14 class NotifyOptionTab : public QWidget
15 {
16   Q_OBJECT
17 
18  public:
19   explicit NotifyOptionTab( QWidget* parent = 0 );
20   ~NotifyOptionTab() override;
21 
22   void readSettings();
23   bool saveSettings();
24 
25  private:
26    KNotifyConfigWidget *m_notifyWidget;
27 };
28 }
29 
30 #endif
31