summaryrefslogtreecommitdiffstats
path: root/src/devices/mem24/gui/mem24_memory_editor.h
blob: 4677fc29f640faec930535c6cff5c17a7e51500d (plain)
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
/***************************************************************************
 *   Copyright (C) 2006 Nicolas Hadacek <hadacek@kde.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.                                   *
 ***************************************************************************/
#ifndef MEM24_MEMORY_EDITOR_H
#define MEM24_MEMORY_EDITOR_H

#include "devices/gui/memory_editor.h"
#include "devices/gui/hex_word_editor.h"
#include "devices/mem24/mem24/mem24_memory.h"

namespace Mem24
{
class HexView;

//-----------------------------------------------------------------------------
class MemoryCaster
{
public:
  MemoryCaster(Memory &memory) : _memory(memory) {}
  const Data &device() const { return static_cast<const Data &>(_memory.device()); }
  const Memory &memory() const { return static_cast<Memory &>(_memory); }
  Memory &memory() { return static_cast<Memory &>(_memory); }

private:
  Memory &_memory;
};

//-----------------------------------------------------------------------------
class HexWordEditor : public Device::HexWordEditor, public MemoryCaster
{
Q_OBJECT
  
public:
  HexWordEditor(Memory &memory, TQWidget *parent)
    : Device::HexWordEditor(memory, 2, parent), MemoryCaster(memory) {}

private:
  virtual BitValue mask() const { return 0xFF; }
  virtual BitValue normalizeWord(BitValue value) const { return value; }
  virtual BitValue word() const { return memory().byte(_offset); }
  virtual void setWord(BitValue value) { memory().setByte(_offset, value); }
};

//-----------------------------------------------------------------------------
class MemoryRangeEditor : public Device::MemoryRangeEditor, public MemoryCaster
{
Q_OBJECT
  
public:
  MemoryRangeEditor(Memory &memory, TQWidget *parent);

private:
  virtual uint nbWords() const { return device().nbBytes(); }
  virtual uint addressIncrement() const { return 1; }
  virtual Address startAddress() const { return 0x0; }
  virtual Device::HexWordEditor *createHexWordEditor(TQWidget *parent);
  virtual bool isRangeReadOnly() const { return false; }
};

//-----------------------------------------------------------------------------
class MemoryTypeEditor : public Device::MemoryTypeEditor, public MemoryCaster
{
Q_OBJECT
  
public:
  MemoryTypeEditor(const HexView *hexview, Memory &memory, TQWidget *parent);
  virtual void init(bool first);

private:
  virtual bool internalDoAction(Device::Action action);
};

} // namespace

#endif