~ppsspp/ppsspp/ppsspp-1.2.2

« back to all changes in this revision

Viewing changes to Qt/Debugger/debugger_memory.h

  • Committer: Sérgio Benjamim
  • Date: 2016-04-25 02:30:18 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20160425023018-wk3rd7nu30fejjzz
1.2.2 source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef DEBUGGER_MEMORY_H
 
2
#define DEBUGGER_MEMORY_H
 
3
 
 
4
#include "Core/Debugger/DebugInterface.h"
 
5
#include <QDialog>
 
6
#include <QListWidgetItem>
 
7
 
 
8
class MainWindow;
 
9
namespace Ui {
 
10
class Debugger_Memory;
 
11
}
 
12
 
 
13
class Debugger_Memory : public QDialog
 
14
{
 
15
        Q_OBJECT
 
16
        
 
17
public:
 
18
        explicit Debugger_Memory(DebugInterface *_cpu, MainWindow* mainWindow_, QWidget *parent = 0);
 
19
        ~Debugger_Memory();
 
20
        
 
21
        void Update();
 
22
        void Goto(u32 addr);
 
23
 
 
24
        void NotifyMapLoaded();
 
25
private slots:
 
26
        void on_editAddress_textChanged(const QString &arg1);
 
27
 
 
28
        void on_normalBtn_clicked();
 
29
 
 
30
        void on_symbolsBtn_clicked();
 
31
 
 
32
        void on_memView_customContextMenuRequested(const QPoint &pos);
 
33
 
 
34
        void on_regions_currentIndexChanged(int index);
 
35
 
 
36
        void on_symbols_itemClicked(QListWidgetItem *item);
 
37
 
 
38
private:
 
39
        Ui::Debugger_Memory *ui;
 
40
        DebugInterface* cpu;
 
41
        MainWindow* mainWindow;
 
42
 
 
43
};
 
44
 
 
45
#endif // DEBUGGER_MEMORY_H