Files
amnezia-client/client/ui/controllers/qml/pageController.cpp
T

251 lines
6.2 KiB
C++
Raw Normal View History

2023-05-15 13:38:17 +08:00
#include "pageController.h"
#include "ui/utils/converter.h"
#include "core/utils/errorStrings.h"
#if defined(MACOS_NE)
#include "platforms/ios/ios_controller.h"
#endif
2023-05-15 13:38:17 +08:00
#if defined(Q_OS_ANDROID) || defined(Q_OS_IOS) || defined(MACOS_NE)
2023-08-31 16:00:41 +05:00
#include <QGuiApplication>
#else
#include <QApplication>
#endif
2023-07-25 16:56:10 +09:00
#ifdef Q_OS_ANDROID
#include "platforms/android/android_controller.h"
2023-07-25 16:56:10 +09:00
#endif
2023-08-24 14:53:52 +05:00
#if defined Q_OS_MAC
#include "ui/utils/macosUtil.h"
2023-08-24 14:53:52 +05:00
#endif
PageController::PageController(ServersController* serversController, SettingsController* settingsController,
QObject *parent)
: QObject(parent), m_serversController(serversController), m_settingsController(settingsController)
2023-05-15 13:38:17 +08:00
{
2023-07-25 16:56:10 +09:00
#ifdef Q_OS_ANDROID
auto initialPageNavigationBarColor = getInitialPageNavigationBarColor();
2024-09-09 14:36:33 +03:00
AndroidController::instance()->setNavigationBarColor(initialPageNavigationBarColor);
connect(AndroidController::instance(), &AndroidController::imeInsetsChanged, this, [this](int heightDp) {
m_imeHeight = heightDp;
emit imeHeightChanged(heightDp);
emit safeAreaBottomMarginChanged();
});
connect(AndroidController::instance(), &AndroidController::systemBarsInsetsChanged, this, [this](int navBarHeightDp, int statusBarHeightDp) {
m_cachedNavigationBarHeight = navBarHeightDp;
m_cachedStatusBarHeight = statusBarHeightDp;
emit safeAreaBottomMarginChanged();
emit safeAreaTopMarginChanged();
});
2023-07-25 16:56:10 +09:00
#endif
2023-08-24 14:53:52 +05:00
#if defined Q_OS_MACX
connect(this, &PageController::raiseMainWindow, []() {
setDockIconVisible(true);
});
connect(this, &PageController::hideMainWindow, []() {
setDockIconVisible(false);
});
#endif
2024-05-25 13:00:51 +03:00
connect(this, qOverload<ErrorCode>(&PageController::showErrorMessage), this, &PageController::onShowErrorMessage);
2023-10-03 22:38:17 +05:00
m_isTriggeredByConnectButton = false;
2023-05-15 13:38:17 +08:00
}
bool PageController::isStartPageVisible()
2023-05-15 13:38:17 +08:00
{
return m_serversController->getServersCount() == 0;
2023-05-15 13:38:17 +08:00
}
QString PageController::getPagePath(PageLoader::PageEnum page)
{
QMetaEnum metaEnum = QMetaEnum::fromType<PageLoader::PageEnum>();
QString pageName = metaEnum.valueToKey(static_cast<int>(page));
return "qrc:/ui/qml/Pages2/" + pageName + ".qml";
2023-05-15 13:38:17 +08:00
}
void PageController::closeWindow()
{
#if defined(Q_OS_ANDROID) || defined(Q_OS_IOS)
qApp->quit();
#else
emit hideMainWindow();
#endif
}
void PageController::hideWindow()
{
#ifdef Q_OS_ANDROID
AndroidController::instance()->minimizeApp();
#endif
}
void PageController::keyPressEvent(Qt::Key key)
{
switch (key) {
2024-02-28 19:39:28 +07:00
case Qt::Key_Back:
case Qt::Key_Escape: {
if (m_drawerDepth) {
emit closeTopDrawer();
2024-12-31 04:16:52 +01:00
decrementDrawerDepth();
2024-02-28 19:39:28 +07:00
} else {
emit escapePressed();
}
break;
}
default: return;
}
}
2023-07-25 16:56:10 +09:00
unsigned int PageController::getInitialPageNavigationBarColor()
{
if (m_serversController->getServersCount()) {
2023-07-25 16:56:10 +09:00
return 0xFF1C1D21;
} else {
return 0xFF0E0E11;
}
}
void PageController::updateNavigationBarColor(const int color)
{
#ifdef Q_OS_ANDROID
2024-09-09 14:36:33 +03:00
AndroidController::instance()->setNavigationBarColor(color);
2023-07-25 16:56:10 +09:00
#endif
}
2023-08-24 14:53:52 +05:00
void PageController::showOnStartup()
{
if (!m_settingsController->isStartMinimizedEnabled()) {
2023-08-24 14:53:52 +05:00
emit raiseMainWindow();
} else {
2024-09-13 18:14:25 +03:00
#if defined(Q_OS_WIN) || (defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID))
2023-08-24 14:53:52 +05:00
emit hideMainWindow();
#elif defined(Q_OS_MACX)
2023-08-24 14:53:52 +05:00
setDockIconVisible(false);
#endif
}
}
2023-10-03 22:38:17 +05:00
bool PageController::isTriggeredByConnectButton()
{
2023-10-03 22:38:17 +05:00
return m_isTriggeredByConnectButton;
}
void PageController::setTriggeredByConnectButton(bool trigger)
{
2023-10-03 22:38:17 +05:00
m_isTriggeredByConnectButton = trigger;
}
void PageController::closeApplication()
{
qApp->quit();
}
2024-02-28 19:39:28 +07:00
void PageController::setDrawerDepth(const int depth)
{
if (depth >= 0) {
m_drawerDepth = depth;
}
}
2024-12-31 04:16:52 +01:00
int PageController::getDrawerDepth() const
2024-02-28 19:39:28 +07:00
{
return m_drawerDepth;
}
2024-05-25 13:00:51 +03:00
2024-12-31 04:16:52 +01:00
int PageController::incrementDrawerDepth()
{
return ++m_drawerDepth;
}
int PageController::decrementDrawerDepth()
{
if (m_drawerDepth == 0) {
return m_drawerDepth;
} else {
return --m_drawerDepth;
}
}
bool PageController::isEdgeToEdgeEnabled()
{
#ifdef Q_OS_ANDROID
if (!m_edgeToEdgeCached) {
m_cachedEdgeToEdgeEnabled = AndroidController::instance()->isEdgeToEdgeEnabled();
m_edgeToEdgeCached = true;
}
return m_cachedEdgeToEdgeEnabled;
#else
return false;
#endif
}
int PageController::getStatusBarHeight()
{
#ifdef Q_OS_ANDROID
if (m_cachedStatusBarHeight < 0) {
m_cachedStatusBarHeight = AndroidController::instance()->getStatusBarHeight();
}
return m_cachedStatusBarHeight;
#else
return 0;
#endif
}
int PageController::getNavigationBarHeight()
{
#ifdef Q_OS_ANDROID
if (m_cachedNavigationBarHeight < 0) {
m_cachedNavigationBarHeight = AndroidController::instance()->getNavigationBarHeight();
}
return m_cachedNavigationBarHeight;
#else
return 0;
#endif
}
int PageController::getSafeAreaTopMargin()
{
#ifdef Q_OS_ANDROID
if (isEdgeToEdgeEnabled()) {
int height = getStatusBarHeight();
int result = height > 0 ? height : 40;
return result;
}
#endif
return 0;
}
int PageController::getSafeAreaBottomMargin()
{
#ifdef Q_OS_ANDROID
if (isEdgeToEdgeEnabled()) {
if (m_imeHeight > 0) {
return 0;
}
int height = getNavigationBarHeight();
int result = height > 0 ? height : 56;
return result;
}
#endif
return 0;
}
int PageController::getImeHeight()
{
return m_imeHeight;
}
2024-05-25 13:00:51 +03:00
void PageController::onShowErrorMessage(ErrorCode errorCode)
{
const auto fullErrorMessage = errorString(errorCode);
const auto errorMessage = fullErrorMessage.mid(fullErrorMessage.indexOf(". ") + 1); // remove ErrorCode %1.
2025-09-29 05:48:36 +03:00
const auto errorUrl = QStringLiteral("troubleshooting/error-codes/#error-%1-%2").arg(static_cast<int>(errorCode)).arg(utils::enumToString(errorCode).toLower());
2024-05-25 13:00:51 +03:00
const auto fullMessage = QStringLiteral("<a href=\"%1\" style=\"color: #FBB26A;\">ErrorCode: %2</a>. %3").arg(errorUrl).arg(static_cast<int>(errorCode)).arg(errorMessage);
emit showErrorMessage(fullMessage);
}