summaryrefslogtreecommitdiffstats
path: root/src/devices/gui/hex_view.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/gui/hex_view.cpp')
-rw-r--r--src/devices/gui/hex_view.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/devices/gui/hex_view.cpp b/src/devices/gui/hex_view.cpp
new file mode 100644
index 0000000..6b26b0a
--- /dev/null
+++ b/src/devices/gui/hex_view.cpp
@@ -0,0 +1,23 @@
+/***************************************************************************
+ * Copyright (C) 2005 Nicolas Hadacek <hadacek@kde.org> *
+ * Copyright (C) 2003 Alain Gibaud <alain.gibaud@free.fr> *
+ * *
+ * 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 "hex_view.h"
+
+Device::HexView::HexView(const HexEditor &editor, QWidget *parent, const char *name)
+ : MemoryEditorGroup(0, parent, name), _editor(editor)
+{}
+
+void Device::HexView::display(Memory *memory)
+{
+ _memory = memory;
+ for (uint i=0; i<_editors.count(); i++) delete _editors[i];
+ _editors.clear();
+ if ( _memory==0 ) return;
+ display();
+}