File indexing completed on 2024-05-12 05:11:20

0001 /*
0002  * SPDX-FileCopyrightText: 2015 Daniel Vrátil <dvratil@redhat.com>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.1-or-later
0005  *
0006  */
0007 
0008 #pragma once
0009 #include <KCModule>
0010 
0011 class QCheckBox;
0012 
0013 class PIMContactsRunnerConfig : public KCModule
0014 {
0015     Q_OBJECT
0016 public:
0017     explicit PIMContactsRunnerConfig(QObject *parent, const KPluginMetaData &data);
0018 
0019 public Q_SLOTS:
0020     void save() override;
0021     void load() override;
0022     void defaults() override;
0023 
0024 private:
0025     void configChanged();
0026     QCheckBox *const mQueryCompletionCheckBox;
0027 };