Warning, file /education/parley/src/settings/translationshelloptions.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 /* 0002 SPDX-FileCopyrightText: 2021 Andreas Cord-Landwehr <cordlandwehr@kde.org> 0003 SPDX-License-Identifier: GPL-2.0-or-later 0004 */ 0005 0006 #ifndef TRANSLATIONSHELLOPTIONS_H 0007 #define TRANSLATIONSHELLOPTIONS_H 0008 0009 #include "translateshelladapter.h" 0010 #include "ui_translationshellpage.h" 0011 0012 class TranslationShellOptions : public QWidget, public Ui::TranslationShellPage 0013 { 0014 Q_OBJECT 0015 public: 0016 explicit TranslationShellOptions(QWidget *parent = nullptr); 0017 0018 private Q_SLOTS: 0019 void runTranslateShellTest(); 0020 0021 private: 0022 TranslateShellAdapter mTranslationShellAdapter; 0023 }; 0024 0025 #endif