~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to languages/java/debugger/memviewdlg.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2006-05-23 18:39:42 UTC
  • Revision ID: james.westby@ubuntu.com-20060523183942-hucifbvh68k2bwz7
Tags: upstream-3.3.2
Import upstream version 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
                          memview.h  -  description
 
3
                             -------------------
 
4
    begin                : Tue Oct 5 1999
 
5
    copyright            : (C) 1999 by John Birch
 
6
    email                : jbb@kdevelop.org
 
7
 ***************************************************************************/
 
8
 
 
9
/***************************************************************************
 
10
 *                                                                         *
 
11
 *   This program is free software; you can redistribute it and/or modify  *
 
12
 *   it under the terms of the GNU General Public License as published by  *
 
13
 *   the Free Software Foundation; either version 2 of the License, or     *
 
14
 *   (at your option) any later version.                                   *
 
15
 *                                                                         *
 
16
 ***************************************************************************/
 
17
 
 
18
#ifndef _MEMVIEW_H_
 
19
#define _MEMVIEW_H_
 
20
 
 
21
#include <kdialog.h>
 
22
 
 
23
class KLineEdit;
 
24
class QMultiLineEdit;
 
25
 
 
26
namespace JAVADebugger
 
27
{
 
28
 
 
29
 
 
30
/**
 
31
 * @author John Birch
 
32
 */
 
33
 
 
34
class MemoryViewDialog : public KDialog
 
35
{
 
36
    Q_OBJECT
 
37
 
 
38
public:
 
39
    MemoryViewDialog( QWidget *parent=0, const char *name=0 );
 
40
    ~MemoryViewDialog();
 
41
 
 
42
signals:
 
43
    void disassemble(const QString &start, const QString &end);
 
44
    void memoryDump(const QString &start, const QString &end);
 
45
    void registers();
 
46
    void libraries();
 
47
 
 
48
public slots:
 
49
    void slotRawJDBMemoryView(char *buf);
 
50
 
 
51
private slots:
 
52
    void slotDisassemble();
 
53
    void slotMemoryDump();
 
54
 
 
55
private:
 
56
    KLineEdit *start_, *end_;
 
57
    QMultiLineEdit *output_;
 
58
};
 
59
 
 
60
}
 
61
 
 
62
#endif