~ubuntu-branches/ubuntu/trusty/openmsx-debugger/trusty

« back to all changes in this revision

Viewing changes to src/DebuggableViewer.h

  • Committer: Bazaar Package Importer
  • Author(s): Joost Yervante Damad
  • Date: 2007-08-10 18:32:50 UTC
  • Revision ID: james.westby@ubuntu.com-20070810183250-hepyzcrl39slr4x1
Tags: upstream-0.0.0.svn20070518
ImportĀ upstreamĀ versionĀ 0.0.0.svn20070518

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// $Id: DebuggableViewer.h 6087 2007-02-14 23:59:55Z edwinv $
 
2
 
 
3
#ifndef DEBUGGABLEVIEWER_H
 
4
#define DEBUGGABLEVIEWER_H
 
5
 
 
6
#include <QWidget>
 
7
 
 
8
class HexViewer;
 
9
class QComboBox;
 
10
 
 
11
class DebuggableViewer : public QWidget
 
12
{
 
13
        Q_OBJECT
 
14
public:
 
15
        DebuggableViewer(QWidget* parent = 0);
 
16
 
 
17
public slots:
 
18
        void settingsChanged();
 
19
        void setDebuggables( const QMap<QString,int>& list );
 
20
        void refresh();
 
21
 
 
22
private:
 
23
        HexViewer *hexView;
 
24
        QComboBox *debuggableList;
 
25
        
 
26
private slots:
 
27
        void debuggableSelected( int index );
 
28
};
 
29
 
 
30
#endif // DEBUGGABLEVIEWER_H