mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-04 00:36:36 +00:00
Rename http folder to backend to better align with the classes inside
This commit is contained in:
parent
1b36071e02
commit
6fa4faa285
20
app/app.pro
20
app/app.pro
@ -56,24 +56,24 @@ SOURCES += \
|
|||||||
streaming/input.c \
|
streaming/input.c \
|
||||||
gui/mainwindow.cpp \
|
gui/mainwindow.cpp \
|
||||||
gui/popupmanager.cpp \
|
gui/popupmanager.cpp \
|
||||||
http/identitymanager.cpp \
|
backend/identitymanager.cpp \
|
||||||
http/nvhttp.cpp \
|
backend/nvhttp.cpp \
|
||||||
http/nvpairingmanager.cpp \
|
backend/nvpairingmanager.cpp \
|
||||||
streaming/video.c \
|
streaming/video.c \
|
||||||
streaming/connection.cpp \
|
streaming/connection.cpp \
|
||||||
http/computermanager.cpp \
|
backend/computermanager.cpp \
|
||||||
http/boxartmanager.cpp
|
backend/boxartmanager.cpp
|
||||||
|
|
||||||
HEADERS += \
|
HEADERS += \
|
||||||
utils.h \
|
utils.h \
|
||||||
gui/mainwindow.h \
|
gui/mainwindow.h \
|
||||||
gui/popupmanager.h \
|
gui/popupmanager.h \
|
||||||
http/identitymanager.h \
|
backend/identitymanager.h \
|
||||||
http/nvhttp.h \
|
backend/nvhttp.h \
|
||||||
http/nvpairingmanager.h \
|
backend/nvpairingmanager.h \
|
||||||
streaming/streaming.h \
|
streaming/streaming.h \
|
||||||
http/computermanager.h \
|
backend/computermanager.h \
|
||||||
http/boxartmanager.h
|
backend/boxartmanager.h
|
||||||
|
|
||||||
FORMS += \
|
FORMS += \
|
||||||
gui/mainwindow.ui
|
gui/mainwindow.ui
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "http/identitymanager.h"
|
#include "identitymanager.h"
|
||||||
#include "http/nvhttp.h"
|
#include "nvhttp.h"
|
||||||
|
|
||||||
#include <openssl/aes.h>
|
#include <openssl/aes.h>
|
||||||
#include <openssl/x509.h>
|
#include <openssl/x509.h>
|
@ -1,12 +1,11 @@
|
|||||||
#include "gui/mainwindow.h"
|
#include "gui/mainwindow.h"
|
||||||
#include "ui_mainwindow.h"
|
#include "ui_mainwindow.h"
|
||||||
#include "gui/popupmanager.h"
|
#include "gui/popupmanager.h"
|
||||||
#include "http/identitymanager.h"
|
#include "backend/identitymanager.h"
|
||||||
#include "http/nvpairingmanager.h"
|
#include "backend/nvpairingmanager.h"
|
||||||
#include "http/nvhttp.h"
|
|
||||||
#include "streaming/streaming.h"
|
#include "streaming/streaming.h"
|
||||||
#include "http/computermanager.h"
|
#include "backend/computermanager.h"
|
||||||
#include "http/boxartmanager.h"
|
#include "backend/boxartmanager.h"
|
||||||
|
|
||||||
MainWindow::MainWindow(QWidget *parent) :
|
MainWindow::MainWindow(QWidget *parent) :
|
||||||
QMainWindow(parent),
|
QMainWindow(parent),
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#ifndef MAINWINDOW_H
|
#ifndef MAINWINDOW_H
|
||||||
#define MAINWINDOW_H
|
#define MAINWINDOW_H
|
||||||
|
|
||||||
#include "http/computermanager.h"
|
#include "backend/computermanager.h"
|
||||||
#include "http/boxartmanager.h"
|
#include "backend/boxartmanager.h"
|
||||||
|
|
||||||
#include <QMainWindow>
|
#include <QMainWindow>
|
||||||
#include <QtWidgets>
|
#include <QtWidgets>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "gui/mainwindow.h"
|
#include "gui/mainwindow.h"
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
|
|
||||||
#include "http/nvhttp.h"
|
#include "backend/nvhttp.h"
|
||||||
|
|
||||||
// Don't let SDL hook our main function, since Qt is already
|
// Don't let SDL hook our main function, since Qt is already
|
||||||
// doing the same thing
|
// doing the same thing
|
||||||
|
Loading…
x
Reference in New Issue
Block a user