1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
#ifndef FPU_VALUE_FIELD_H_20191119_
#define FPU_VALUE_FIELD_H_20191119_
#include "ValueField.h"
namespace ODbgRegisterView {
#if defined(EDB_X86) || defined(EDB_X86_64)
class FpuValueField final : public ValueField {
Q_OBJECT
private:
int showAsRawActionIndex;
int showAsFloatActionIndex;
FieldWidget *commentWidget;
int row;
int column;
QPersistentModelIndex tagValueIndex;
bool groupDigits = false;
public:
// Will add itself and commentWidget to the group and renew their positions as needed
FpuValueField(int fieldWidth, const QModelIndex ®ValueIndex, const QModelIndex &tagValueIndex, RegisterGroup *group, FieldWidget *commentWidget, int row, int column);
public Q_SLOTS:
void showFPUAsRaw();
void showFPUAsFloat();
void displayFormatChanged();
void updatePalette() override;
};
#endif
}
#endif
|