mirror of
https://github.com/markdavidlong/AppleSAWS.git
synced 2024-10-13 16:23:46 +00:00
35 lines
621 B
C++
35 lines
621 B
C++
#ifndef CHARACTERSETEXPLORER_H
|
|
#define CHARACTERSETEXPLORER_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include "charset.h"
|
|
|
|
namespace Ui {
|
|
class CharacterSetExplorer;
|
|
}
|
|
|
|
class CharacterSetExplorer : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CharacterSetExplorer(QWidget *parent = 0);
|
|
~CharacterSetExplorer();
|
|
|
|
void setCharSet(CharacterSet &charset);
|
|
|
|
public slots:
|
|
void handleInsertCharButton();
|
|
void handleTextChanged(QString string);
|
|
|
|
private:
|
|
Ui::CharacterSetExplorer *ui;
|
|
|
|
QByteArray m_unpackedScreen;
|
|
|
|
CharacterSet m_charset;
|
|
};
|
|
|
|
#endif // CHARACTERSETEXPLORER_H
|