summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/sdl/debugqtview.h
blob: 1e926949114a9071cab2719879abbf7b2478bece (plain) (blame)
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
#ifndef __DEBUG_QT_VIEW_H__
#define __DEBUG_QT_VIEW_H__

#include <QtGui/QtGui>

#include "debug/debugvw.h"


class DebuggerView : public QAbstractScrollArea
{
    Q_OBJECT
    
public:
    DebuggerView(const debug_view_type& type, 
                 running_machine* machine,
                 QWidget* parent=NULL);
    virtual ~DebuggerView() {}

    void paintEvent(QPaintEvent* event);

    // Callback to allow MAME to refresh the view
    static void debuggerViewUpdate(debug_view& debugView, void* osdPrivate);

    // Setters and accessors
    void setPreferBottom(bool pb) { m_preferBottom = pb; }
    debug_view* view() { return m_view; }


protected:
    void keyPressEvent(QKeyEvent* event);
    void mousePressEvent(QMouseEvent* event);

private slots:
    void verticalScrollSlot(int value);
    void horizontalScrollSlot(int value);


private:
    bool m_preferBottom;

    debug_view* m_view;
    running_machine* m_machine;
};


#endif