languages/java/debugger/memviewdlg.h
Go to the documentation of this file.00001 /*************************************************************************** 00002 memview.h - description 00003 ------------------- 00004 begin : Tue Oct 5 1999 00005 copyright : (C) 1999 by John Birch 00006 email : jbb@kdevelop.org 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 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