Atlas Game Manager
A game manager for f95 and dlsite written in c++
Loading...
Searching...
No Matches
DevNotification.hpp
Go to the documentation of this file.
1//
2// Created by kj16609 on 7/21/23.
3//
4
5#pragma once
6#ifndef ATLASGAMEMANAGER_DEVNOTIFICATION_HPP
7#define ATLASGAMEMANAGER_DEVNOTIFICATION_HPP
8
10#include "Notification.hpp"
11
12QT_BEGIN_NAMESPACE
13
14namespace Ui
15{
16 class DevNotification;
17}
18
19QT_END_NAMESPACE
20
21class DevNotification final : public Notification
22{
23 Q_OBJECT
24 Q_DISABLE_COPY_MOVE( DevNotification )
25
27
28 public:
29
30 explicit DevNotification( const MessageLevel level, QString msg, QString full_message, QWidget* parent = nullptr );
31 ~DevNotification() override;
32
33 private:
34
36
37 private slots:
39};
40
41#endif //ATLASGAMEMANAGER_DEVNOTIFICATION_HPP
MessageLevel
Definition MessageNotification.hpp:21
Definition DevNotification.hpp:22
void on_copyError_pressed()
Definition DevNotification.cpp:58
QString m_full_message
Definition DevNotification.hpp:26
Ui::DevNotification * ui
Definition DevNotification.hpp:35
DevNotification(const MessageLevel level, QString msg, QString full_message, QWidget *parent=nullptr)
Definition DevNotification.cpp:16
Notification(QWidget *parent=nullptr)
Definition Notification.cpp:22
Definition AboutAtlas.hpp:9