summaryrefslogtreecommitdiffstats
path: root/kdbg/memwindow.h
blob: 807b28b7d8baf81f672a316b5a1259933d38af78 (plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
 * Copyright Johannes Sixt
 * This file is licensed under the GNU General Public License Version 2.
 * See the file COPYING in the toplevel directory of the source directory.
 */

#ifndef MEMWINDOW_H
#define MEMWINDOW_H

#include <ntqpopupmenu.h>
#include <ntqlistview.h>
#include <ntqcombobox.h>
#include <ntqlayout.h>
#include <ntqmap.h>
#include "dbgdriver.h"

class KDebugger;
class TDEConfigBase;

class MemoryWindow : public TQWidget
{
    Q_OBJECT
public:
    MemoryWindow(TQWidget* parent, const char* name);
    ~MemoryWindow();

    void setDebugger(KDebugger* deb) { m_debugger = deb; }

protected:
    KDebugger* m_debugger;
    TQComboBox m_expression;

    TQListView m_memory;
    TQMap<TQString,TQString> m_old_memory;

    TQVBoxLayout m_layout;

    unsigned m_format;
    TQMap<TQString,unsigned> m_formatCache;

    TQPopupMenu m_popup;

    virtual bool eventFilter(TQObject* o, TQEvent* ev);
    void handlePopup(TQMouseEvent* ev);
    void displayNewExpression(const TQString& expr);

public slots:
    void slotNewExpression(const TQString&);
    void slotTypeChange(int id);
    void slotNewMemoryDump(const TQString&, const std::list<MemoryDump>&);
    void saveProgramSpecific(TDEConfigBase* config);
    void restoreProgramSpecific(TDEConfigBase* config);
};

#endif // MEMWINDOW_H