104 lines
2.3 KiB
C++
104 lines
2.3 KiB
C++
// GamePadConf.h
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <QWidget>
|
|
#include <QDialog>
|
|
#include <QVBoxLayout>
|
|
#include <QHBoxLayout>
|
|
#include <QComboBox>
|
|
#include <QCheckBox>
|
|
#include <QPushButton>
|
|
#include <QLabel>
|
|
#include <QFrame>
|
|
#include <QLineEdit>
|
|
#include <QGroupBox>
|
|
#include <QTreeView>
|
|
#include <QTreeWidget>
|
|
#include <QTextEdit>
|
|
|
|
#include "Qt/main.h"
|
|
|
|
class GuiCheatsDialog_t : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GuiCheatsDialog_t(QWidget *parent = 0);
|
|
~GuiCheatsDialog_t(void);
|
|
|
|
int addSearchResult(uint32_t a, uint8_t last, uint8_t current);
|
|
|
|
int activeCheatListCB(const char *name, uint32 a, uint8 v, int c, int s, int type, void *data);
|
|
|
|
void showActiveCheatList(bool redraw);
|
|
|
|
protected:
|
|
void closeEvent(QCloseEvent *event);
|
|
|
|
QGroupBox *actCheatFrame;
|
|
QGroupBox *cheatSearchFrame;
|
|
QGroupBox *cheatResultFrame;
|
|
QPushButton *addCheatBtn;
|
|
QPushButton *delCheatBtn;
|
|
QPushButton *modCheatBtn;
|
|
QPushButton *importCheatFileBtn;
|
|
QPushButton *exportCheatFileBtn;
|
|
QPushButton *srchResetBtn;
|
|
QPushButton *knownValBtn;
|
|
QPushButton *eqValBtn;
|
|
QPushButton *neValBtn;
|
|
QPushButton *grValBtn;
|
|
QPushButton *ltValBtn;
|
|
QCheckBox *useNeVal;
|
|
QCheckBox *useGrVal;
|
|
QCheckBox *useLtVal;
|
|
QCheckBox *enaCheats;
|
|
QCheckBox *autoSave;
|
|
QCheckBox *pauseBox;
|
|
QTreeWidget *actvCheatList;
|
|
QTreeWidget *srchResults;
|
|
QLineEdit *cheatNameEntry;
|
|
QLineEdit *cheatAddrEntry;
|
|
QLineEdit *cheatValEntry;
|
|
QLineEdit *cheatCmpEntry;
|
|
QLineEdit *knownValEntry;
|
|
QLineEdit *neValEntry;
|
|
QLineEdit *grValEntry;
|
|
QLineEdit *ltValEntry;
|
|
QComboBox *typeEntry;
|
|
QFont font;
|
|
|
|
int fontCharWidth;
|
|
int actvCheatIdx;
|
|
bool pauseWhileActive;
|
|
bool wasPausedByCheats;
|
|
|
|
private:
|
|
void showCheatSearchResults(void);
|
|
|
|
public slots:
|
|
void closeWindow(void);
|
|
private slots:
|
|
void resetSearchCallback(void);
|
|
void knownValueCallback(void);
|
|
void equalValueCallback(void);
|
|
void notEqualValueCallback(void);
|
|
void lessThanValueCallback(void);
|
|
void greaterThanValueCallback(void);
|
|
void openCheatFile(void);
|
|
void saveCheatFile(void);
|
|
void addActvCheat(void);
|
|
void deleteActvCheat(void);
|
|
void updateCheatParameters(void);
|
|
void autoLoadSaveCheats(int state);
|
|
void globalEnableCheats(int state);
|
|
void pauseWindowState(int state);
|
|
void actvCheatItemClicked(QTreeWidgetItem *item, int column);
|
|
};
|
|
|
|
void openCheatDialog(QWidget *parent);
|
|
|
|
void updateCheatDialog(void);
|