mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-21 20:27:45 +00:00
Giant commit overhauling the interface to use KDE's Kirigami framework, which is based on Qt Quick. The logic is all but rewritten, allowing accounts to be separate from profiles.
24 lines
No EOL
466 B
C++
24 lines
No EOL
466 B
C++
#pragma once
|
|
|
|
#include "patcher.h"
|
|
|
|
class SquareLauncher;
|
|
class LauncherCore;
|
|
class LoginInformation;
|
|
|
|
class SquareBoot : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SquareBoot(LauncherCore &window, SquareLauncher &launcher, QObject *parent = nullptr);
|
|
|
|
Q_INVOKABLE void checkGateStatus(LoginInformation *info);
|
|
|
|
void bootCheck(const LoginInformation &info);
|
|
|
|
private:
|
|
Patcher *patcher = nullptr;
|
|
|
|
LauncherCore &window;
|
|
SquareLauncher &launcher;
|
|
}; |