33 lines
710 B
C++
33 lines
710 B
C++
#ifndef DIALOGELFPROGRAM_H
|
|
#define DIALOGELFPROGRAM_H
|
|
|
|
#include <QDialog>
|
|
#include <QVBoxLayout>
|
|
#include <QHBoxLayout>
|
|
#include <QPushButton>
|
|
#include <QGridLayout>
|
|
#include <QLabel>
|
|
#include "../elfdata.h"
|
|
#include "../data.h"
|
|
#include "../functions.h"
|
|
|
|
|
|
class DialogElfProgram: public QDialog {
|
|
public:
|
|
DialogElfProgram();
|
|
~DialogElfProgram();
|
|
void setData(struct elfProgram *);
|
|
|
|
private:
|
|
QLabel *m_labelProgramType;
|
|
QLabel *m_labelProgFlags;
|
|
QLabel *m_labelOffset;
|
|
QLabel *m_labelVA;
|
|
QLabel *m_labelPA;
|
|
QLabel *m_labelProgramSize;
|
|
QLabel *m_labelMemSize;
|
|
QLabel *m_labelAlign;
|
|
};
|
|
|
|
#endif // DIALOGELFPROGRAM_H
|