##// END OF EJS Templates
Étiquette Win32 build Ok ajoutée à la révision d9c54528bd30
Étiquette Win32 build Ok ajoutée à la révision d9c54528bd30

File last commit:

r47:f8c5117dac7c default
r50:4d30eb803748 default
Show More
binaryfilewidget.h
32 lines | 590 B | text/x-c | CLexer
#ifndef BINARYFILEWIDGET_H
#define BINARYFILEWIDGET_H
#include <QWidget>
#include "binaryfile.h"
namespace Ui {
class binaryFileWidget;
}
class binaryFileWidget : public QWidget
{
Q_OBJECT
public:
explicit binaryFileWidget(QWidget *parent = 0);
~binaryFileWidget();
public slots:
void updateBinaryFile(binaryFile* file);
void updateFragments();
private slots:
void fragmentCellActivated(int row, int column);
void fragmentCellChanged(int row, int column);
private:
Ui::binaryFileWidget *ui;
binaryFile* p_binfile;
};
#endif // BINARYFILEWIDGET_H