From 7146744ded365ef3ee735078e5a4ed435e46797b Mon Sep 17 00:00:00 2001 From: Hatz Date: Tue, 11 Apr 2023 14:33:04 +0200 Subject: [PATCH] Moved code to src directory --- GflessClient.pro | 86 ++++++++++--------- account.cpp => src/account.cpp | 0 account.h => src/account.h | 0 .../addaccountdialog.cpp | 0 addaccountdialog.h => src/addaccountdialog.h | 0 .../addaccountdialog.ui | 0 .../addprofileaccountdialog.cpp | 0 .../addprofileaccountdialog.h | 0 .../addprofileaccountdialog.ui | 0 .../addprofiledialog.cpp | 0 addprofiledialog.h => src/addprofiledialog.h | 0 .../addprofiledialog.ui | 0 blackbox.cpp => src/blackbox.cpp | 0 blackbox.h => src/blackbox.h | 0 captchadialog.cpp => src/captchadialog.cpp | 0 captchadialog.h => src/captchadialog.h | 0 captchadialog.ui => src/captchadialog.ui | 0 captchasolver.cpp => src/captchasolver.cpp | 0 captchasolver.h => src/captchasolver.h | 0 fingerprint.cpp => src/fingerprint.cpp | 0 fingerprint.h => src/fingerprint.h | 0 gflessclient.cpp => src/gflessclient.cpp | 0 gflessclient.h => src/gflessclient.h | 0 identity.cpp => src/identity.cpp | 0 identity.h => src/identity.h | 0 identitydialog.cpp => src/identitydialog.cpp | 0 identitydialog.h => src/identitydialog.h | 0 identitydialog.ui => src/identitydialog.ui | 0 injector.h => src/injector.h | 0 main.cpp => src/main.cpp | 0 mainwindow.cpp => src/mainwindow.cpp | 0 mainwindow.h => src/mainwindow.h | 0 mainwindow.ui => src/mainwindow.ui | 0 nostaleauth.cpp => src/nostaleauth.cpp | 0 nostaleauth.h => src/nostaleauth.h | 0 processchecker.h => src/processchecker.h | 0 profile.cpp => src/profile.cpp | 0 profile.h => src/profile.h | 0 settingsdialog.cpp => src/settingsdialog.cpp | 0 settingsdialog.h => src/settingsdialog.h | 0 settingsdialog.ui => src/settingsdialog.ui | 0 .../syncnetworkaccessmanager.cpp | 0 .../syncnetworkaccessmanager.h | 0 43 files changed, 44 insertions(+), 42 deletions(-) rename account.cpp => src/account.cpp (100%) rename account.h => src/account.h (100%) rename addaccountdialog.cpp => src/addaccountdialog.cpp (100%) rename addaccountdialog.h => src/addaccountdialog.h (100%) rename addaccountdialog.ui => src/addaccountdialog.ui (100%) rename addprofileaccountdialog.cpp => src/addprofileaccountdialog.cpp (100%) rename addprofileaccountdialog.h => src/addprofileaccountdialog.h (100%) rename addprofileaccountdialog.ui => src/addprofileaccountdialog.ui (100%) rename addprofiledialog.cpp => src/addprofiledialog.cpp (100%) rename addprofiledialog.h => src/addprofiledialog.h (100%) rename addprofiledialog.ui => src/addprofiledialog.ui (100%) rename blackbox.cpp => src/blackbox.cpp (100%) rename blackbox.h => src/blackbox.h (100%) rename captchadialog.cpp => src/captchadialog.cpp (100%) rename captchadialog.h => src/captchadialog.h (100%) rename captchadialog.ui => src/captchadialog.ui (100%) rename captchasolver.cpp => src/captchasolver.cpp (100%) rename captchasolver.h => src/captchasolver.h (100%) rename fingerprint.cpp => src/fingerprint.cpp (100%) rename fingerprint.h => src/fingerprint.h (100%) rename gflessclient.cpp => src/gflessclient.cpp (100%) rename gflessclient.h => src/gflessclient.h (100%) rename identity.cpp => src/identity.cpp (100%) rename identity.h => src/identity.h (100%) rename identitydialog.cpp => src/identitydialog.cpp (100%) rename identitydialog.h => src/identitydialog.h (100%) rename identitydialog.ui => src/identitydialog.ui (100%) rename injector.h => src/injector.h (100%) rename main.cpp => src/main.cpp (100%) rename mainwindow.cpp => src/mainwindow.cpp (100%) rename mainwindow.h => src/mainwindow.h (100%) rename mainwindow.ui => src/mainwindow.ui (100%) rename nostaleauth.cpp => src/nostaleauth.cpp (100%) rename nostaleauth.h => src/nostaleauth.h (100%) rename processchecker.h => src/processchecker.h (100%) rename profile.cpp => src/profile.cpp (100%) rename profile.h => src/profile.h (100%) rename settingsdialog.cpp => src/settingsdialog.cpp (100%) rename settingsdialog.h => src/settingsdialog.h (100%) rename settingsdialog.ui => src/settingsdialog.ui (100%) rename syncnetworkaccessmanager.cpp => src/syncnetworkaccessmanager.cpp (100%) rename syncnetworkaccessmanager.h => src/syncnetworkaccessmanager.h (100%) diff --git a/GflessClient.pro b/GflessClient.pro index 9b8dc3b..00bb271 100644 --- a/GflessClient.pro +++ b/GflessClient.pro @@ -10,57 +10,59 @@ QMAKE_LFLAGS_WINDOWS += "/MANIFESTUAC:\"level='requireAdministrator' uiAccess='f LIBS += -lkernel32 -luser32 -lgdi32 +INCLUDEPATH += ./src + # You can make your code fail to compile if it uses deprecated APIs. # In order to do so, uncomment the following line. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 SOURCES += \ - account.cpp \ - addaccountdialog.cpp \ - addprofileaccountDialog.cpp \ - addprofiledialog.cpp \ - blackbox.cpp \ - captchadialog.cpp \ - captchasolver.cpp \ - fingerprint.cpp \ - gflessclient.cpp \ - identity.cpp \ - identitydialog.cpp \ - nostaleauth.cpp \ - profile.cpp \ - settingsdialog.cpp \ - syncnetworkaccessmanager.cpp \ - main.cpp \ - mainwindow.cpp + src/account.cpp \ + src/addaccountdialog.cpp \ + src/addprofileaccountDialog.cpp \ + src/addprofiledialog.cpp \ + src/blackbox.cpp \ + src/captchadialog.cpp \ + src/captchasolver.cpp \ + src/fingerprint.cpp \ + src/gflessclient.cpp \ + src/identity.cpp \ + src/identitydialog.cpp \ + src/nostaleauth.cpp \ + src/profile.cpp \ + src/settingsdialog.cpp \ + src/syncnetworkaccessmanager.cpp \ + src/main.cpp \ + src/mainwindow.cpp HEADERS += \ - account.h \ - addaccountdialog.h \ - addprofileaccountdialog.h \ - addprofiledialog.h \ - blackbox.h \ - captchadialog.h \ - captchasolver.h \ - fingerprint.h \ - gflessclient.h \ - identity.h \ - identitydialog.h \ - injector.h \ - mainwindow.h \ - nostaleauth.h \ - processchecker.h \ - profile.h \ - settingsdialog.h \ - syncnetworkaccessmanager.h + src/account.h \ + src/addaccountdialog.h \ + src/addprofileaccountdialog.h \ + src/addprofiledialog.h \ + src/blackbox.h \ + src/captchadialog.h \ + src/captchasolver.h \ + src/fingerprint.h \ + src/gflessclient.h \ + src/identity.h \ + src/identitydialog.h \ + src/injector.h \ + src/mainwindow.h \ + src/nostaleauth.h \ + src/processchecker.h \ + src/profile.h \ + src/settingsdialog.h \ + src/syncnetworkaccessmanager.h FORMS += \ - addaccountdialog.ui \ - addprofileaccountdialog.ui \ - addprofiledialog.ui \ - captchadialog.ui \ - identitydialog.ui \ - mainwindow.ui \ - settingsdialog.ui + src/addaccountdialog.ui \ + src/addprofileaccountdialog.ui \ + src/addprofiledialog.ui \ + src/captchadialog.ui \ + src/identitydialog.ui \ + src/mainwindow.ui \ + src/settingsdialog.ui # Default rules for deployment. qnx: target.path = /tmp/$${TARGET}/bin diff --git a/account.cpp b/src/account.cpp similarity index 100% rename from account.cpp rename to src/account.cpp diff --git a/account.h b/src/account.h similarity index 100% rename from account.h rename to src/account.h diff --git a/addaccountdialog.cpp b/src/addaccountdialog.cpp similarity index 100% rename from addaccountdialog.cpp rename to src/addaccountdialog.cpp diff --git a/addaccountdialog.h b/src/addaccountdialog.h similarity index 100% rename from addaccountdialog.h rename to src/addaccountdialog.h diff --git a/addaccountdialog.ui b/src/addaccountdialog.ui similarity index 100% rename from addaccountdialog.ui rename to src/addaccountdialog.ui diff --git a/addprofileaccountdialog.cpp b/src/addprofileaccountdialog.cpp similarity index 100% rename from addprofileaccountdialog.cpp rename to src/addprofileaccountdialog.cpp diff --git a/addprofileaccountdialog.h b/src/addprofileaccountdialog.h similarity index 100% rename from addprofileaccountdialog.h rename to src/addprofileaccountdialog.h diff --git a/addprofileaccountdialog.ui b/src/addprofileaccountdialog.ui similarity index 100% rename from addprofileaccountdialog.ui rename to src/addprofileaccountdialog.ui diff --git a/addprofiledialog.cpp b/src/addprofiledialog.cpp similarity index 100% rename from addprofiledialog.cpp rename to src/addprofiledialog.cpp diff --git a/addprofiledialog.h b/src/addprofiledialog.h similarity index 100% rename from addprofiledialog.h rename to src/addprofiledialog.h diff --git a/addprofiledialog.ui b/src/addprofiledialog.ui similarity index 100% rename from addprofiledialog.ui rename to src/addprofiledialog.ui diff --git a/blackbox.cpp b/src/blackbox.cpp similarity index 100% rename from blackbox.cpp rename to src/blackbox.cpp diff --git a/blackbox.h b/src/blackbox.h similarity index 100% rename from blackbox.h rename to src/blackbox.h diff --git a/captchadialog.cpp b/src/captchadialog.cpp similarity index 100% rename from captchadialog.cpp rename to src/captchadialog.cpp diff --git a/captchadialog.h b/src/captchadialog.h similarity index 100% rename from captchadialog.h rename to src/captchadialog.h diff --git a/captchadialog.ui b/src/captchadialog.ui similarity index 100% rename from captchadialog.ui rename to src/captchadialog.ui diff --git a/captchasolver.cpp b/src/captchasolver.cpp similarity index 100% rename from captchasolver.cpp rename to src/captchasolver.cpp diff --git a/captchasolver.h b/src/captchasolver.h similarity index 100% rename from captchasolver.h rename to src/captchasolver.h diff --git a/fingerprint.cpp b/src/fingerprint.cpp similarity index 100% rename from fingerprint.cpp rename to src/fingerprint.cpp diff --git a/fingerprint.h b/src/fingerprint.h similarity index 100% rename from fingerprint.h rename to src/fingerprint.h diff --git a/gflessclient.cpp b/src/gflessclient.cpp similarity index 100% rename from gflessclient.cpp rename to src/gflessclient.cpp diff --git a/gflessclient.h b/src/gflessclient.h similarity index 100% rename from gflessclient.h rename to src/gflessclient.h diff --git a/identity.cpp b/src/identity.cpp similarity index 100% rename from identity.cpp rename to src/identity.cpp diff --git a/identity.h b/src/identity.h similarity index 100% rename from identity.h rename to src/identity.h diff --git a/identitydialog.cpp b/src/identitydialog.cpp similarity index 100% rename from identitydialog.cpp rename to src/identitydialog.cpp diff --git a/identitydialog.h b/src/identitydialog.h similarity index 100% rename from identitydialog.h rename to src/identitydialog.h diff --git a/identitydialog.ui b/src/identitydialog.ui similarity index 100% rename from identitydialog.ui rename to src/identitydialog.ui diff --git a/injector.h b/src/injector.h similarity index 100% rename from injector.h rename to src/injector.h diff --git a/main.cpp b/src/main.cpp similarity index 100% rename from main.cpp rename to src/main.cpp diff --git a/mainwindow.cpp b/src/mainwindow.cpp similarity index 100% rename from mainwindow.cpp rename to src/mainwindow.cpp diff --git a/mainwindow.h b/src/mainwindow.h similarity index 100% rename from mainwindow.h rename to src/mainwindow.h diff --git a/mainwindow.ui b/src/mainwindow.ui similarity index 100% rename from mainwindow.ui rename to src/mainwindow.ui diff --git a/nostaleauth.cpp b/src/nostaleauth.cpp similarity index 100% rename from nostaleauth.cpp rename to src/nostaleauth.cpp diff --git a/nostaleauth.h b/src/nostaleauth.h similarity index 100% rename from nostaleauth.h rename to src/nostaleauth.h diff --git a/processchecker.h b/src/processchecker.h similarity index 100% rename from processchecker.h rename to src/processchecker.h diff --git a/profile.cpp b/src/profile.cpp similarity index 100% rename from profile.cpp rename to src/profile.cpp diff --git a/profile.h b/src/profile.h similarity index 100% rename from profile.h rename to src/profile.h diff --git a/settingsdialog.cpp b/src/settingsdialog.cpp similarity index 100% rename from settingsdialog.cpp rename to src/settingsdialog.cpp diff --git a/settingsdialog.h b/src/settingsdialog.h similarity index 100% rename from settingsdialog.h rename to src/settingsdialog.h diff --git a/settingsdialog.ui b/src/settingsdialog.ui similarity index 100% rename from settingsdialog.ui rename to src/settingsdialog.ui diff --git a/syncnetworkaccessmanager.cpp b/src/syncnetworkaccessmanager.cpp similarity index 100% rename from syncnetworkaccessmanager.cpp rename to src/syncnetworkaccessmanager.cpp diff --git a/syncnetworkaccessmanager.h b/src/syncnetworkaccessmanager.h similarity index 100% rename from syncnetworkaccessmanager.h rename to src/syncnetworkaccessmanager.h