File indexing completed on 2024-04-14 03:49:08

0001 /*
0002     threshold options for Parley
0003     SPDX-FileCopyrightText: 2005-2007 Peter Hedlund <peter.hedlund@kdemail.net>
0004     SPDX-FileCopyrightText: 2007 Frederik Gladhorn <frederik.gladhorn@kdemail.net>
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 
0008 #include "thresholdoptions.h"
0009 
0010 #include <KEduVocDocument>
0011 #include <KEduVocWordtype>
0012 
0013 ThresholdOptions::ThresholdOptions(KEduVocDocument *doc, QWidget *parent)
0014     : QWidget(parent)
0015     , m_doc{doc}
0016 {
0017     setupUi(this);
0018 }
0019 
0020 void ThresholdOptions::updateWidgets()
0021 {
0022 }
0023 
0024 bool ThresholdOptions::isDefault()
0025 {
0026     return true;
0027     ///@todo
0028 }
0029 
0030 void ThresholdOptions::updateSettings()
0031 {
0032 }
0033 
0034 bool ThresholdOptions::hasChanged()
0035 {
0036     return false;
0037 }
0038 
0039 #include "moc_thresholdoptions.cpp"