2025-09-05 20:47:03 +00:00
|
|
|
#ifndef STRINGTABLEVIEWER_H
|
|
|
|
|
#define STRINGTABLEVIEWER_H
|
|
|
|
|
|
|
|
|
|
#include "xstringtable.h"
|
|
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
class StringTableViewer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class StringTableViewer : public QWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit StringTableViewer(QWidget *parent = nullptr);
|
|
|
|
|
~StringTableViewer();
|
|
|
|
|
|
|
|
|
|
void SetStringTable(const XStringTable *aStringTable);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Ui::StringTableViewer *ui;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // STRINGTABLEVIEWER_H
|