mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-22 03:57:45 +00:00
25 lines
463 B
C
25 lines
463 B
C
|
// SPDX-FileCopyrightText: 2024 Joshua Goins <josh@redstrate.com>
|
||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <QListView>
|
||
|
#include <QWidget>
|
||
|
#include <physis.hpp>
|
||
|
|
||
|
class SheetListWidget : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit SheetListWidget(GameData *data, QWidget *parent = nullptr);
|
||
|
|
||
|
Q_SIGNALS:
|
||
|
void sheetSelected(const QString &name);
|
||
|
|
||
|
private:
|
||
|
QListView *listWidget = nullptr;
|
||
|
|
||
|
GameData *data = nullptr;
|
||
|
};
|