Rename sources and put them to src dir
This commit is contained in:
parent
12cb3bf4ab
commit
d198c88625
@ -26,49 +26,52 @@ LIBS += -ltesseract -llept
|
||||
|
||||
include(3rd-party/qtsingleapplication/qtsingleapplication.pri)
|
||||
|
||||
SOURCES += main.cpp\
|
||||
Manager.cpp \
|
||||
SettingsEditor.cpp \
|
||||
SelectionDialog.cpp \
|
||||
GlobalActionHelper.cpp \
|
||||
Recognizer.cpp \
|
||||
ResultDialog.cpp \
|
||||
ProcessingItem.cpp \
|
||||
ImageProcessing.cpp \
|
||||
LanguageHelper.cpp \
|
||||
WebTranslator.cpp \
|
||||
WebTranslatorProxy.cpp \
|
||||
TranslatorHelper.cpp \
|
||||
RecognizerHelper.cpp \
|
||||
Utils.cpp \
|
||||
Updater.cpp
|
||||
INCLUDEPATH += src
|
||||
|
||||
SOURCES += \
|
||||
src/main.cpp \
|
||||
src/manager.cpp \
|
||||
src/settingseditor.cpp \
|
||||
src/selectiondialog.cpp \
|
||||
src/globalactionhelper.cpp \
|
||||
src/recognizer.cpp \
|
||||
src/resultdialog.cpp \
|
||||
src/processingitem.cpp \
|
||||
src/imageprocessing.cpp \
|
||||
src/languagehelper.cpp \
|
||||
src/webtranslator.cpp \
|
||||
src/webtranslatorproxy.cpp \
|
||||
src/translatorhelper.cpp \
|
||||
src/recognizerhelper.cpp \
|
||||
src/utils.cpp \
|
||||
src/updater.cpp
|
||||
|
||||
HEADERS += \
|
||||
Manager.h \
|
||||
SettingsEditor.h \
|
||||
SelectionDialog.h \
|
||||
GlobalActionHelper.h \
|
||||
Recognizer.h \
|
||||
Settings.h \
|
||||
ProcessingItem.h \
|
||||
ResultDialog.h \
|
||||
ImageProcessing.h \
|
||||
LanguageHelper.h \
|
||||
WebTranslator.h \
|
||||
WebTranslatorProxy.h \
|
||||
StAssert.h \
|
||||
TranslatorHelper.h \
|
||||
RecognizerHelper.h \
|
||||
Utils.h \
|
||||
Updater.h
|
||||
src/manager.h \
|
||||
src/settingseditor.h \
|
||||
src/selectiondialog.h \
|
||||
src/globalactionhelper.h \
|
||||
src/recognizer.h \
|
||||
src/settings.h \
|
||||
src/processingitem.h \
|
||||
src/resultdialog.h \
|
||||
src/imageprocessing.h \
|
||||
src/languagehelper.h \
|
||||
src/webtranslator.h \
|
||||
src/webtranslatorproxy.h \
|
||||
src/stassert.h \
|
||||
src/translatorhelper.h \
|
||||
src/recognizerhelper.h \
|
||||
src/utils.h \
|
||||
src/updater.h
|
||||
|
||||
FORMS += \
|
||||
SettingsEditor.ui \
|
||||
SelectionDialog.ui \
|
||||
ResultDialog.ui
|
||||
src/settingseditor.ui \
|
||||
src/selectiondialog.ui \
|
||||
src/resultdialog.ui
|
||||
|
||||
RESOURCES += \
|
||||
Recources.qrc
|
||||
recources.qrc
|
||||
|
||||
TRANSLATIONS += \
|
||||
translations/translation_en.ts \
|
@ -1,4 +1,4 @@
|
||||
#include "GlobalActionHelper.h"
|
||||
#include "globalactionhelper.h"
|
||||
|
||||
#include <QDebug>
|
||||
#include <QApplication>
|
@ -2,8 +2,8 @@
|
||||
|
||||
#include <leptonica/allheaders.h>
|
||||
|
||||
#include "ImageProcessing.h"
|
||||
#include "StAssert.h"
|
||||
#include "imageprocessing.h"
|
||||
#include "stassert.h"
|
||||
|
||||
#if defined(Q_OS_LINUX)
|
||||
# include <fstream>
|
@ -1,9 +1,9 @@
|
||||
#include <QDir>
|
||||
#include <QSettings>
|
||||
|
||||
#include "LanguageHelper.h"
|
||||
#include "Settings.h"
|
||||
#include "StAssert.h"
|
||||
#include "languagehelper.h"
|
||||
#include "settings.h"
|
||||
#include "stassert.h"
|
||||
|
||||
LanguageHelper::LanguageHelper () {
|
||||
init ();
|
@ -7,8 +7,8 @@
|
||||
|
||||
#include <qtsingleapplication.h>
|
||||
|
||||
#include <Manager.h>
|
||||
#include <Settings.h>
|
||||
#include <manager.h>
|
||||
#include <settings.h>
|
||||
|
||||
int main (int argc, char *argv[]) {
|
||||
QtSingleApplication a (argc, argv);
|
@ -1,4 +1,4 @@
|
||||
#include "Manager.h"
|
||||
#include "manager.h"
|
||||
|
||||
#include <QDebug>
|
||||
#include <QMenu>
|
||||
@ -13,17 +13,17 @@
|
||||
#include <QInputDialog>
|
||||
#include <QNetworkProxy>
|
||||
|
||||
#include "Settings.h"
|
||||
#include "SettingsEditor.h"
|
||||
#include "SelectionDialog.h"
|
||||
#include "GlobalActionHelper.h"
|
||||
#include "Recognizer.h"
|
||||
#include "WebTranslator.h"
|
||||
#include "ResultDialog.h"
|
||||
#include "LanguageHelper.h"
|
||||
#include "StAssert.h"
|
||||
#include "Utils.h"
|
||||
#include "Updater.h"
|
||||
#include "settings.h"
|
||||
#include "settingseditor.h"
|
||||
#include "selectiondialog.h"
|
||||
#include "globalactionhelper.h"
|
||||
#include "recognizer.h"
|
||||
#include "webtranslator.h"
|
||||
#include "resultdialog.h"
|
||||
#include "languagehelper.h"
|
||||
#include "stassert.h"
|
||||
#include "utils.h"
|
||||
#include "updater.h"
|
||||
|
||||
Manager::Manager (QObject *parent) :
|
||||
QObject (parent),
|
@ -5,7 +5,7 @@
|
||||
#include <QSystemTrayIcon>
|
||||
#include <QMap>
|
||||
|
||||
#include "ProcessingItem.h"
|
||||
#include "processingitem.h"
|
||||
|
||||
class QAction;
|
||||
class QMenu;
|
@ -1,4 +1,4 @@
|
||||
#include "ProcessingItem.h"
|
||||
#include "processingitem.h"
|
||||
|
||||
ProcessingItem::ProcessingItem ()
|
||||
: swapLanguages_ (false) {
|
@ -1,14 +1,14 @@
|
||||
#include "Recognizer.h"
|
||||
#include "recognizer.h"
|
||||
|
||||
#include <tesseract/baseapi.h>
|
||||
|
||||
#include <QDebug>
|
||||
#include <QSettings>
|
||||
|
||||
#include "Settings.h"
|
||||
#include "ImageProcessing.h"
|
||||
#include "StAssert.h"
|
||||
#include "RecognizerHelper.h"
|
||||
#include "settings.h"
|
||||
#include "imageprocessing.h"
|
||||
#include "stassert.h"
|
||||
#include "recognizerhelper.h"
|
||||
|
||||
Recognizer::Recognizer (QObject *parent) :
|
||||
QObject (parent),
|
@ -4,7 +4,7 @@
|
||||
#include <QObject>
|
||||
#include "QPixmap"
|
||||
|
||||
#include "ProcessingItem.h"
|
||||
#include "processingitem.h"
|
||||
|
||||
namespace tesseract {
|
||||
class TessBaseAPI;
|
@ -4,7 +4,7 @@
|
||||
#include <QSettings>
|
||||
#include <QApplication>
|
||||
|
||||
#include "RecognizerHelper.h"
|
||||
#include "recognizerhelper.h"
|
||||
|
||||
RecognizerHelper::RecognizerHelper ()
|
||||
: fileName_ ("st_subs.csv") {
|
@ -1,7 +1,7 @@
|
||||
#include "ResultDialog.h"
|
||||
#include "ui_ResultDialog.h"
|
||||
#include "StAssert.h"
|
||||
#include "LanguageHelper.h"
|
||||
#include "resultdialog.h"
|
||||
#include "ui_resultdialog.h"
|
||||
#include "stassert.h"
|
||||
#include "languagehelper.h"
|
||||
|
||||
#include <QDesktopWidget>
|
||||
#include <QMouseEvent>
|
@ -4,7 +4,7 @@
|
||||
#include <QDialog>
|
||||
#include <QMenu>
|
||||
|
||||
#include "ProcessingItem.h"
|
||||
#include "processingitem.h"
|
||||
|
||||
namespace Ui {
|
||||
class ResultDialog;
|
@ -1,7 +1,7 @@
|
||||
#include "SelectionDialog.h"
|
||||
#include "ui_SelectionDialog.h"
|
||||
#include "LanguageHelper.h"
|
||||
#include "StAssert.h"
|
||||
#include "selectiondialog.h"
|
||||
#include "ui_selectiondialog.h"
|
||||
#include "languagehelper.h"
|
||||
#include "stassert.h"
|
||||
|
||||
#include <QMouseEvent>
|
||||
#include <QPainter>
|
@ -5,7 +5,7 @@
|
||||
#include <QPixmap>
|
||||
#include <QMenu>
|
||||
|
||||
#include "ProcessingItem.h"
|
||||
#include "processingitem.h"
|
||||
|
||||
namespace Ui {
|
||||
class SelectionDialog;
|
@ -1,10 +1,10 @@
|
||||
#include "SettingsEditor.h"
|
||||
#include "ui_SettingsEditor.h"
|
||||
#include "LanguageHelper.h"
|
||||
#include "TranslatorHelper.h"
|
||||
#include "RecognizerHelper.h"
|
||||
#include "StAssert.h"
|
||||
#include "Utils.h"
|
||||
#include "settingseditor.h"
|
||||
#include "ui_settingseditor.h"
|
||||
#include "languagehelper.h"
|
||||
#include "translatorhelper.h"
|
||||
#include "recognizerhelper.h"
|
||||
#include "stassert.h"
|
||||
#include "utils.h"
|
||||
|
||||
#include <QSettings>
|
||||
#include <QFileDialog>
|
||||
@ -12,7 +12,7 @@
|
||||
#include <QRegExpValidator>
|
||||
#include <QNetworkProxy>
|
||||
|
||||
#include "Settings.h"
|
||||
#include "settings.h"
|
||||
|
||||
SettingsEditor::SettingsEditor (const LanguageHelper &dictionary, QWidget *parent) :
|
||||
QDialog (parent),
|
@ -3,8 +3,8 @@
|
||||
#include <QFile>
|
||||
#include <QApplication>
|
||||
|
||||
#include "TranslatorHelper.h"
|
||||
#include "Settings.h"
|
||||
#include "translatorhelper.h"
|
||||
#include "settings.h"
|
||||
|
||||
TranslatorHelper::TranslatorHelper ()
|
||||
: translatorsDir_ ("translators"), currentIndex_ (0), triesLeft_ (0) {
|
@ -7,8 +7,8 @@
|
||||
#include <QMessageBox>
|
||||
#include <QApplication>
|
||||
|
||||
#include "Updater.h"
|
||||
#include "StAssert.h"
|
||||
#include "updater.h"
|
||||
#include "stassert.h"
|
||||
|
||||
namespace {
|
||||
#define FIELD(NAME) const QString _ ## NAME = #NAME
|
@ -1,6 +1,6 @@
|
||||
#include <QNetworkProxy>
|
||||
|
||||
#include "Utils.h"
|
||||
#include "utils.h"
|
||||
|
||||
QString encode (const QString &source) {
|
||||
if (source.isEmpty ()) {
|
@ -4,12 +4,12 @@
|
||||
#include <QNetworkReply>
|
||||
#include <QFile>
|
||||
|
||||
#include "WebTranslator.h"
|
||||
#include "ProcessingItem.h"
|
||||
#include "Settings.h"
|
||||
#include "StAssert.h"
|
||||
#include "WebTranslatorProxy.h"
|
||||
#include "TranslatorHelper.h"
|
||||
#include "webtranslator.h"
|
||||
#include "processingitem.h"
|
||||
#include "settings.h"
|
||||
#include "stassert.h"
|
||||
#include "webtranslatorproxy.h"
|
||||
#include "translatorhelper.h"
|
||||
|
||||
WebTranslator::WebTranslator ()
|
||||
: QObject (),
|
@ -5,7 +5,7 @@
|
||||
#include <QMap>
|
||||
#include <QTimer>
|
||||
|
||||
#include "ProcessingItem.h"
|
||||
#include "processingitem.h"
|
||||
|
||||
class QWebView;
|
||||
class QNetworkReply;
|
@ -1,5 +1,5 @@
|
||||
#include "WebTranslatorProxy.h"
|
||||
#include "ProcessingItem.h"
|
||||
#include "webtranslatorproxy.h"
|
||||
#include "processingitem.h"
|
||||
|
||||
WebTranslatorProxy::WebTranslatorProxy (QObject *parent)
|
||||
: QObject (parent) {
|
Loading…
Reference in New Issue
Block a user