Newer
Older
#include "EventView.h"
#include "EventPresenter.h"
namespace MantidQt {
namespace CustomInterfaces {
/** Constructor
* @param parent :: [input] The parent of this widget
*/
EventView::EventView(QWidget *parent) {
UNUSED_ARG(parent);
initLayout();
}
void EventView::subscribe(EventViewSubscriber *notifyee) {
void EventView::initLayout() {
initUniformSliceTypeLayout();
initUniformEvenSliceTypeLayout();
initLogValueSliceTypeLayout();
initCustomSliceTypeLayout();
connect(m_ui.disabledSlicingButton, SIGNAL(toggled(bool)), this,
SLOT(toggleDisabledSlicing(bool)));
m_sliceTypeRadioButtons = makeQWidgetGroup(
m_ui.uniformEvenButton, m_ui.uniformButton, m_ui.logValueButton,
m_ui.customButton, m_ui.disabledSlicingButton);
void EventView::initUniformSliceTypeLayout() {
m_uniformGroup = makeQWidgetGroup(m_ui.uniformEdit, m_ui.uniformLabel);
connect(m_ui.uniformButton, SIGNAL(toggled(bool)), this,
SLOT(toggleUniform(bool)));
connect(m_ui.uniformEvenEdit, SIGNAL(valueChanged(int)), this,
SLOT(onUniformEvenChanged(int)));
connect(m_ui.uniformEdit, SIGNAL(valueChanged(double)), this,
SLOT(onUniformSecondsChanged(double)));
connect(m_ui.customEdit, SIGNAL(textEdited(QString const &)), this,
SLOT(onCustomChanged(QString const &)));
connect(m_ui.logValueEdit, SIGNAL(textEdited(QString const &)), this,
SLOT(onLogValuesChanged(QString const &)));
connect(m_ui.logValueTypeEdit, SIGNAL(textEdited(QString const &)), this,
SLOT(onLogValueTypeChanged(QString const &)));
}
void EventView::onUniformEvenChanged(int numberOfSlices) {
m_notifyee->notifyUniformSliceCountChanged(numberOfSlices);
}
void EventView::onUniformSecondsChanged(double numberOfSeconds) {
m_notifyee->notifyUniformSecondsChanged(numberOfSeconds);
}
void EventView::onCustomChanged(QString const &listOfSlices) {
m_notifyee->notifyCustomSliceValuesChanged(listOfSlices.toStdString());
}
void EventView::onLogValuesChanged(QString const &listOfSliceBreakpoints) {
m_notifyee->notifyLogSliceBreakpointsChanged(
listOfSliceBreakpoints.toStdString());
}
void EventView::onLogValueTypeChanged(QString const &logBlockName) {
m_notifyee->notifyLogBlockNameChanged(logBlockName.toStdString());
void EventView::initUniformEvenSliceTypeLayout() {
m_uniformEvenGroup =
makeQWidgetGroup(m_ui.uniformEvenEdit, m_ui.uniformEvenLabel);
connect(m_ui.uniformEvenButton, SIGNAL(toggled(bool)), this,
SLOT(toggleUniformEven(bool)));
}
void EventView::initCustomSliceTypeLayout() {
m_customGroup = makeQWidgetGroup(m_ui.customEdit, m_ui.customLabel);
connect(m_ui.customButton, SIGNAL(toggled(bool)), this,
SLOT(toggleCustom(bool)));
}
void EventView::initLogValueSliceTypeLayout() {
m_logValueGroup =
makeQWidgetGroup(m_ui.logValueTypeEdit, m_ui.logValueTypeLabel,
m_ui.logValueEdit, m_ui.logValueLabel);
connect(m_ui.logValueButton, SIGNAL(toggled(bool)), this,
SLOT(toggleLogValue(bool)));
}
void EventView::enableSliceType(SliceType sliceType) {
switch (sliceType) {
case SliceType::Uniform:
m_uniformGroup.enable();
break;
case SliceType::UniformEven:
m_uniformEvenGroup.enable();
break;
case SliceType::Custom:
m_customGroup.enable();
break;
case SliceType::LogValue:
m_logValueGroup.enable();
break;
case SliceType::None:
break;
void EventView::disableSliceType(SliceType sliceType) {
switch (sliceType) {
case SliceType::Uniform:
m_uniformGroup.disable();
break;
case SliceType::UniformEven:
m_uniformEvenGroup.disable();
break;
case SliceType::Custom:
m_customGroup.disable();
break;
case SliceType::LogValue:
m_logValueGroup.disable();
break;
case SliceType::None:
break;
std::string EventView::logBlockName() const {
return textFrom(m_ui.logValueTypeEdit);
}
std::string EventView::logBreakpoints() const {
return textFrom(m_ui.logValueEdit);
}
std::string EventView::customBreakpoints() const {
return textFrom(m_ui.customEdit);
}
void showAsInvalid(QLineEdit &lineEdit) {
auto palette = lineEdit.palette();
palette.setColor(QPalette::Base, QColor("#ffb8ad"));
lineEdit.setPalette(palette);
}
void showAsValid(QLineEdit &lineEdit) {
auto palette = lineEdit.palette();
palette.setColor(QPalette::Base, Qt::transparent);
lineEdit.setPalette(palette);
}
void EventView::showCustomBreakpointsInvalid() {
showAsInvalid(*m_ui.customEdit);
void EventView::showCustomBreakpointsValid() { showAsValid(*m_ui.customEdit); }
void EventView::showLogBreakpointsInvalid() {
showAsInvalid(*m_ui.logValueEdit);
}
void EventView::showLogBreakpointsValid() { showAsValid(*m_ui.logValueEdit); }
int EventView::uniformSliceCount() const {
return m_ui.uniformEvenEdit->value();
}
double EventView::uniformSliceLength() const {
return m_ui.uniformEdit->value();
std::string EventView::textFrom(QLineEdit const *const widget) const {
return widget->text().toStdString();
void EventView::disableSliceTypeSelection() {
m_sliceTypeRadioButtons.disable();
}
void EventView::enableSliceTypeSelection() { m_sliceTypeRadioButtons.enable(); }
void EventView::toggleUniform(bool isChecked) {
if (isChecked)
m_notifyee->notifySliceTypeChanged(SliceType::Uniform);
}
void EventView::toggleUniformEven(bool isChecked) {
if (isChecked)
m_notifyee->notifySliceTypeChanged(SliceType::UniformEven);
}
void EventView::toggleCustom(bool isChecked) {
if (isChecked)
m_notifyee->notifySliceTypeChanged(SliceType::Custom);
}
void EventView::toggleLogValue(bool isChecked) {
if (isChecked)
m_notifyee->notifySliceTypeChanged(SliceType::LogValue);
}
void EventView::toggleDisabledSlicing(bool isChecked) {
if (isChecked)
m_notifyee->notifySliceTypeChanged(SliceType::None);