File indexing completed on 2025-01-05 04:54:20
0001 /******************************************************************* 0002 KNotes -- Notes for the KDE project 0003 0004 SPDX-FileCopyrightText: 1997-2005 The KNotes Developers 0005 0006 SPDX-License-Identifier: GPL-2.0-or-later 0007 *******************************************************************/ 0008 0009 #pragma once 0010 0011 #include "knotes_export.h" 0012 0013 #include <KCMultiDialog> 0014 0015 class KNOTES_EXPORT KNoteConfigDialog : public KCMultiDialog 0016 { 0017 Q_OBJECT 0018 public: 0019 explicit KNoteConfigDialog(const QString &title, QWidget *parent); 0020 ~KNoteConfigDialog() override; 0021 0022 public Q_SLOTS: 0023 void slotOk(); 0024 };