File indexing completed on 2024-05-12 15:55:08

0001 /************************************************************************
0002  *                                  *
0003  *  This file is part of Kooka, a scanning/OCR application using    *
0004  *  Qt <http://www.qt.io> and KDE Frameworks <http://www.kde.org>.  *
0005  *                                  *
0006  *  Copyright (C) 2020      Jonathan Marten <jjm@keelhaul.me.uk>    *
0007  *                                  *
0008  *  Kooka is free software; you can redistribute it and/or modify it    *
0009  *  under the terms of the GNU Library General Public License as    *
0010  *  published by the Free Software Foundation and appearing in the  *
0011  *  file COPYING included in the packaging of this file;  either    *
0012  *  version 2 of the License, or (at your option) any later version.    *
0013  *                                  *
0014  *  As a special exception, permission is given to link this program    *
0015  *  with any version of the KADMOS OCR/ICR engine (a product of     *
0016  *  reRecognition GmbH, Kreuzlingen), and distribute the resulting  *
0017  *  executable without including the source code for KADMOS in the  *
0018  *  source distribution.                        *
0019  *                                  *
0020  *  This program is distributed in the hope that it will be useful, *
0021  *  but WITHOUT ANY WARRANTY; without even the implied warranty of  *
0022  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the   *
0023  *  GNU General Public License for more details.            *
0024  *                                  *
0025  *  You should have received a copy of the GNU General Public       *
0026  *  License along with this program;  see the file COPYING.  If     *
0027  *  not, see <http://www.gnu.org/licenses/>.                *
0028  *                                  *
0029  ************************************************************************/
0030 
0031 #ifndef OCRTESSERACTDIALOG_H
0032 #define OCRTESSERACTDIALOG_H
0033 
0034 #include "abstractocrdialogue.h"
0035 
0036 
0037 class QWidget;
0038 class QComboBox;
0039 
0040 class KUrlRequester;
0041 
0042 
0043 class OcrTesseractDialog : public AbstractOcrDialogue
0044 {
0045     Q_OBJECT
0046 
0047 public:
0048     explicit OcrTesseractDialog(AbstractOcrEngine *plugin, QWidget *pnt);
0049     ~OcrTesseractDialog() override = default;
0050 
0051     bool setupGui() override;
0052 
0053     QString getOCRCmd() const               { return (m_ocrCmd); }
0054     int getNumVersion() const               { return (m_versionNum); }
0055 
0056 protected:
0057     void enableFields(bool enable) override;
0058 
0059 protected slots:
0060     void slotWriteConfig() override;
0061 
0062 private:
0063     void getVersion(const QString &bin);
0064     QMap<QString,QString> getValidValues(const QString &opt);
0065 
0066 private:
0067     QWidget *m_setupWidget;
0068     QComboBox *m_engineMode;
0069     QComboBox *m_segmentationMode;
0070     QComboBox *m_language;
0071     KUrlRequester *m_userWords;
0072     KUrlRequester *m_userPatterns;
0073 
0074     QString m_ocrCmd;
0075     int m_versionNum;
0076     QString m_versionStr;
0077 };
0078 
0079 #endif                          // OCRTESSERACTDIALOG_H