1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-25 13:17:46 +00:00
novus/apps/armoury/include/penumbraapi.h
Joshua Goins a4347e6f8b Armoury: Add Penumbra actions menu
It's now possible to "redraw" manually, and also open the main window.
2024-05-25 22:43:49 -04:00

19 lines
No EOL
376 B
C++

// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include <QNetworkAccessManager>
class PenumbraApi : public QObject
{
public:
explicit PenumbraApi(QObject *parent = nullptr);
public Q_SLOTS:
void redrawAll();
void openWindow();
private:
QNetworkAccessManager *m_mgr = nullptr;
};