/*************************************************************************** * Copyright (C) 2005 Nicolas Hadacek * * * * 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 "pic_config_editor.h" #include #include #include #include "pic_config_word_editor.h" #include "common/common/misc.h" #include "common/gui/misc_gui.h" //---------------------------------------------------------------------------- Pic::MemoryConfigEditorWidget::MemoryConfigEditorWidget(Memory &memory, bool withWordEditor, TQWidget *tqparent) : Device::MemoryEditorGroup(&memory, tqparent, "pic_config_editor_widget"), MemoryCaster(MemoryRangeType::Config, memory) { TQHBoxLayout *hb = new TQHBoxLayout(_top); TabWidget *tabw = 0; uint nbWords = device().nbWords(MemoryRangeType::Config); if ( nbWords>1 ) { tabw = new TabWidget(this); tabw->setIgnoreWheelEvent(true); hb->addWidget(tabw); } for(uint i=0; i1 ) { page = new TQWidget(tabw); tabw->addTab(page, device().config()._words[i].name); } else { page = new TQGroupBox(this); hb->addWidget(page); } TQVBoxLayout *vbox = new TQVBoxLayout(page, 10, 10); TQHBoxLayout *hbox = new TQHBoxLayout(vbox); ConfigWordEditor *we = new ConfigWordEditor(memory, i, withWordEditor, page); addEditor(we); hbox->addWidget(we); hbox->addStretch(1); vbox->addStretch(1); } } //---------------------------------------------------------------------------- Pic::MemoryConfigEditor::MemoryConfigEditor(const HexView *hexview, Memory &memory, TQWidget *tqparent) : MemoryTypeEditor(hexview, MemoryRangeType::Config, memory, tqparent, "pic_config_editor") {} void Pic::MemoryConfigEditor::init(bool first) { MemoryTypeEditor::init(first); MemoryConfigEditorWidget *w = new MemoryConfigEditorWidget(memory(), true, this); addEditor(w); _top->addWidget(w); }