File indexing completed on 2024-05-19 05:42:25

0001 // ct_lvtqtw_configurationdialog.h                               -*-C++-*-
0002 
0003 /*
0004 // Copyright 2023 Codethink Ltd <codethink@codethink.co.uk>
0005 // SPDX-License-Identifier: Apache-2.0
0006 //
0007 // Licensed under the Apache License, Version 2.0 (the "License");
0008 // you may not use this file except in compliance with the License.
0009 // You may obtain a copy of the License at
0010 //
0011 //     http://www.apache.org/licenses/LICENSE-2.0
0012 //
0013 // Unless required by applicable law or agreed to in writing, software
0014 // distributed under the License is distributed on an "AS IS" BASIS,
0015 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0016 // See the License for the specific language governing permissions and
0017 // limitations under the License.
0018 */
0019 
0020 #ifndef DEFINED_CT_LVTQTW_CONFIGURATIONDIALOG_H
0021 #define DEFINED_CT_LVTQTW_CONFIGURATIONDIALOG_H
0022 
0023 #include <lvtplg/ct_lvtplg_pluginmanager.h>
0024 #include <lvtqtw_export.h>
0025 
0026 #include <QDialog>
0027 
0028 #include <memory>
0029 
0030 #if QT_VERSION > QT_VERSION_CHECK(6, 0, 0)
0031 #include <KNSCore/Entry>
0032 #else
0033 #include <KNS3/Entry>
0034 #include <KNSCore/EntryInternal>
0035 #endif
0036 
0037 class QWidget;
0038 
0039 namespace Codethink::lvtqtw {
0040 
0041 class LVTQTW_EXPORT ConfigurationDialog : public QDialog {
0042     Q_OBJECT
0043   public:
0044     explicit ConfigurationDialog(lvtplg::PluginManager *pluginManager, QWidget *parent);
0045     ~ConfigurationDialog() override;
0046 
0047     void load();
0048     static void save();
0049     void restoreDefaults();
0050     void changeCurrentWidgetByString(QString const& text);
0051     void updatePluginInformation();
0052 
0053 #if QT_VERSION > QT_VERSION_CHECK(6, 0, 0)
0054     void getNewScriptFinished(const QList<KNSCore::Entry>& changedEntries);
0055 #else
0056     void getNewScriptFinished(const KNSCore::EntryInternal::List& changedEntries);
0057 #endif
0058 
0059   protected:
0060     void showEvent(QShowEvent *ev) override;
0061 
0062   private:
0063     void populateMouseTabOptions();
0064 
0065     struct Private;
0066     std::unique_ptr<Private> d;
0067 };
0068 
0069 } // namespace Codethink::lvtqtw
0070 
0071 #endif