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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
/***************************************************************************
begin : Tue Oct 5 1999
copyright : (C) 1999 by John Birch
email : jbb@kdevelop.org
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include "memviewdlg.h"
#include <kbuttonbox.h>
#include <klineedit.h>
#include <kglobalsettings.h>
#include <klocale.h>
#include <kstdguiitem.h>
#include <kdeversion.h>
#include <qlabel.h>
#include <qlayout.h>
#include <qmultilineedit.h>
#include <qpushbutton.h>
// **************************************************************************
//
// Dialog allows the user to enter
// - A starting address
// - An ending address
//
// this can be in the form
// functiom/method name
// variable address (ie &Var, str)
// Memory address 0x8040abc
//
// When disassembling and you enter a method name without an
// ending address then the whole method is disassembled.
// No data means disassemble the method we're curently in.(from the
// start of the method)
//
// click ok buton to send the request to gdb
// the output is returned (some time later) in the raw data slot
// and displayed as is, so it's rather crude, but it works!
// **************************************************************************
namespace GDBDebugger
{
MemoryViewDialog::MemoryViewDialog(QWidget *parent, const char *name)
: KDialog(parent, name, true), // modal
start_(new KLineEdit(this)),
end_(new KLineEdit(this)),
output_(new QMultiLineEdit(this))
{
setCaption(i18n("Memory/Misc Viewer"));
// Make the top-level layout; a vertical box to contain all widgets
// and sub-layouts.
QBoxLayout *topLayout = new QVBoxLayout(this, 5);
QGridLayout *grid = new QGridLayout(2, 2, 5);
topLayout->addLayout(grid);
QLabel *label = new QLabel(start_, i18n("&Start:"), this);
label->setBuddy(start_);
grid->addWidget(label, 0, 0);
grid->setRowStretch(0, 0);
grid->addWidget(start_, 1, 0);
grid->setRowStretch(1, 0);
label = new QLabel(end_, i18n("Amount/&End address (memory/disassemble):"), this);
label->setBuddy(end_);
grid->addWidget(label, 0, 1);
grid->addWidget(end_, 1, 1);
label = new QLabel(i18n("Memory&View:"), this);
label->setBuddy(output_);
topLayout->addWidget(label, 0);
topLayout->addWidget(output_, 5);
output_->setFont(KGlobalSettings::fixedFont());
KButtonBox *buttonbox = new KButtonBox(this, Horizontal, 5);
QPushButton *memoryDump = buttonbox->addButton(i18n("&Memory"));
QPushButton *disassemble = buttonbox->addButton(i18n("&Disassemble"));
QPushButton *registers = buttonbox->addButton(i18n("&Registers"));
QPushButton *libraries = buttonbox->addButton(i18n("&Libraries"));
#if KDE_IS_VERSION( 3, 2, 90 )
QPushButton *cancel = buttonbox->addButton(KStdGuiItem::cancel());
#else
QPushButton *cancel = buttonbox->addButton(KStdGuiItem::cancel().text());
#endif
memoryDump->setDefault(true);
buttonbox->layout();
topLayout->addWidget(buttonbox);
start_->setFocus();
connect(memoryDump, SIGNAL(clicked()), SLOT(slotMemoryDump()));
connect(disassemble, SIGNAL(clicked()), SLOT(slotDisassemble()));
connect(registers, SIGNAL(clicked()), SIGNAL(registers()));
connect(libraries, SIGNAL(clicked()), SIGNAL(libraries()));
connect(cancel, SIGNAL(clicked()), SLOT(reject()));
}
// **************************************************************************
MemoryViewDialog::~MemoryViewDialog()
{
}
// **************************************************************************
void MemoryViewDialog::slotRawGDBMemoryView(char *buf)
{
// just display the resultant output from GDB in the edit box
output_->clear();
output_->insertLine(buf);
output_->setCursorPosition(0,0);
}
// **************************************************************************
// get gdb to supply the disassembled data.
void MemoryViewDialog::slotDisassemble()
{
QString start(start_->text());
QString end(end_->text());
emit disassemble(start, end);
}
// **************************************************************************
void MemoryViewDialog::slotMemoryDump()
{
QString start(start_->text());
QString size(end_->text());
emit memoryDump(start, size);
}
// **************************************************************************
// **************************************************************************
// **************************************************************************
}
#include "memviewdlg.moc"
|