2025-02-14 16:06:27 -05:00
|
|
|
#ifndef STRINGTABLEVIEWER_H
|
|
|
|
|
#define STRINGTABLEVIEWER_H
|
|
|
|
|
|
2025-07-10 00:04:52 -04:00
|
|
|
#include "stringtable.h"
|
|
|
|
|
|
2025-02-14 16:06:27 -05:00
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
class StringTableViewer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class StringTableViewer : public QWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit StringTableViewer(QWidget *parent = nullptr);
|
|
|
|
|
~StringTableViewer();
|
|
|
|
|
|
|
|
|
|
void SetStringTable(std::shared_ptr<StringTable> aStringTable);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Ui::StringTableViewer *ui;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // STRINGTABLEVIEWER_H
|