memviewdlg.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef _MEMVIEW_H_
00019 #define _MEMVIEW_H_
00020
00021 #include <kdialog.h>
00022
00023 class KLineEdit;
00024 class QMultiLineEdit;
00025
00026 namespace JAVADebugger
00027 {
00028
00029
00034 class MemoryViewDialog : public KDialog
00035 {
00036 Q_OBJECT
00037
00038 public:
00039 MemoryViewDialog( QWidget *parent=0, const char *name=0 );
00040 ~MemoryViewDialog();
00041
00042 signals:
00043 void disassemble(const QString &start, const QString &end);
00044 void memoryDump(const QString &start, const QString &end);
00045 void registers();
00046 void libraries();
00047
00048 public slots:
00049 void slotRawJDBMemoryView(char *buf);
00050
00051 private slots:
00052 void slotDisassemble();
00053 void slotMemoryDump();
00054
00055 private:
00056 KLineEdit *start_, *end_;
00057 QMultiLineEdit *output_;
00058 };
00059
00060 }
00061
00062 #endif
This file is part of the documentation for KDevelop Version 3.1.2.