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
|
/***************************************************************************
* Copyright (C) 2006 Nicolas Hadacek <[email protected]> *
* *
* 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 "mem24_memory_editor.h"
#include <tqlayout.h>
#include <tdelocale.h>
#include <kpushbutton.h>
#include "common/gui/misc_gui.h"
#include "mem24_hex_view.h"
#include "progs/base/generic_prog.h"
#include "libgui/main_global.h"
#include "devices/base/device_group.h"
//-----------------------------------------------------------------------------
Mem24::MemoryRangeEditor::MemoryRangeEditor(Memory &memory, TQWidget *parent)
: Device::MemoryRangeEditor(memory, 16, 16, 0, -1, parent, "mem24_memory_range_editor"),
MemoryCaster(memory)
{}
Device::HexWordEditor *Mem24::MemoryRangeEditor::createHexWordEditor(TQWidget *parent)
{
return new HexWordEditor(memory(), parent);
}
//-----------------------------------------------------------------------------
Mem24::MemoryTypeEditor::MemoryTypeEditor(const HexView *hexview, Memory &memory, TQWidget *parent)
: Device::MemoryTypeEditor(hexview, memory, parent, "mem24_memory_type_editor"),
MemoryCaster(memory)
{}
void Mem24::MemoryTypeEditor::init(bool first)
{
Device::MemoryTypeEditor::init(first);
_title->setText(i18n("EEPROM Memory"));
MemoryRangeEditor *mre = new MemoryRangeEditor(memory(), this);
mre->init();
addEditor(mre);
_top->addWidget(mre);
}
bool Mem24::MemoryTypeEditor::internalDoAction(Device::Action action)
{
switch (action) {
case Device::Clear:
case Device::ChecksumCheck:
memory().clear(); return true;
case Device::Zero: memory().fill(0); return true;
case Device::Reload:
Q_ASSERT(originalMemory());
memory().copyFrom(*originalMemory()); return true;
case Device::Program:
Main::programmer()->program(memory(), Device::MemoryRange());
return false;
case Device::Verify:
Main::programmer()->verify(memory(), Device::MemoryRange());
return false;
case Device::Read: {
Memory mem(device());
if ( !Main::programmer()->read(mem, Device::MemoryRange()) ) return false;
memory().copyFrom(mem);
return true;
}
case Device::Erase:
Main::programmer()->erase(Device::MemoryRange());
return false;
case Device::BlankCheck:
Main::programmer()->blankCheck(Device::MemoryRange());
return false;
case Device::Nb_Actions: break;
}
Q_ASSERT(false);
return false;
}
#include "mem24_memory_editor.moc"
|