1 /*************************************************************************** 2 * Copyright (C) 2004-2021 by Pere Constans 3 * constans@molspaces.com 4 * cb2Bib version 2.0.1. Licensed under the GNU GPL version 3. 5 * See the LICENSE file that comes with this distribution. 6 ***************************************************************************/ 7 #ifndef PREPROCESS_H 8 #define PREPROCESS_H 9 10 #include <QObject> 11 #include <QStringList> 12 13 14 /** 15 @author Pere Constans 16 */ 17 class preprocess : public QObject 18 { 19 20 Q_OBJECT 21 22 public: 23 explicit preprocess(QObject* parento = 0); 24 inline ~preprocess() {} 25 26 27 public: 28 void preprocessText(QString* text); 29 30 31 public slots: 32 void loadSettings(); 33 34 35 private: 36 bool FindReplaceInput; 37 QStringList FindReplaceInputList; 38 }; 39 40 #endif