Zachary Hall
8fdf30878b
Some checks failed
Build / build-gentoo (push) Successful in 1m22s
Build / download-system-deps (push) Successful in 1m37s
Build / get-source-code (push) Successful in 4m30s
Build / build-appimage (push) Successful in 1m15s
Build / build-android (push) Failing after 4m34s
Build / build-windows (push) Failing after 4m33s
24 lines
530 B
C++
24 lines
530 B
C++
#pragma once
|
|
#include <Window.h>
|
|
#include <Message.h>
|
|
#include <TextView.h>
|
|
#include <Handler.h>
|
|
#include <string>
|
|
#include <StringItem.h>
|
|
#include <ListView.h>
|
|
#include <license.hpp>
|
|
class LicenseItem : public BStringItem {
|
|
public:
|
|
std::string license_text;
|
|
LicenseItem(const LicenseData license);
|
|
};
|
|
class AboutWindow : public BWindow
|
|
{
|
|
BListView *license_list;
|
|
BTextView *license_text;
|
|
public:
|
|
bool QuitRequested() override;
|
|
void Show() override;
|
|
void MessageReceived(BMessage *msg) override;
|
|
AboutWindow();
|
|
};
|