URL
https://opencores.org/ocsvn/riscv_vhdl/riscv_vhdl/trunk
Subversion Repositories riscv_vhdl
[/] [riscv_vhdl/] [trunk/] [debugger/] [src/] [gui_plugin/] [PeriphWidgets/] [UartWidget.cpp] - Rev 2
Go to most recent revision | Compare with Previous | Blame | View Log
#include "UartWidget.h" #include "moc_UartWidget.h" #include <QtWidgets/QHBoxLayout> #include <memory> namespace debugger { UartWidget::UartWidget(IGui *igui, QWidget *parent) : QWidget(parent) { QHBoxLayout *layout = new QHBoxLayout; editor_ = new UartEditor(igui, this); layout->addWidget(editor_); layout->setMargin(0); setLayout(layout); connect(this, SIGNAL(signalPostInit(AttributeType *)), editor_, SLOT(slotPostInit(AttributeType *))); } void UartWidget::slotPostInit(AttributeType *cfg) { emit signalPostInit(cfg); } } // namespace debugger
Go to most recent revision | Compare with Previous | Blame | View Log