breakpoints; thread/frame selection that should work; TODO: is slow
This commit is contained in:
@@ -57,4 +57,18 @@ void Backend::send_data_result(BackToFront::DataResult &&info)
|
||||
auto msg = std::make_unique<BackToFront::Msg>(
|
||||
BackToFront::MsgType::data_result, std::move(info));
|
||||
this->send_msg(std::move(msg));
|
||||
}
|
||||
void Backend::send_selected_thread_changed(uint16_t idx)
|
||||
{
|
||||
auto msg = std::make_unique<BackToFront::Msg>(
|
||||
BackToFront::MsgType::selected_thread_changed,
|
||||
BackToFront::SelectedThreadChanged{.idx = idx});
|
||||
this->send_msg(std::move(msg));
|
||||
}
|
||||
void Backend::send_selected_frame_changed(uint16_t idx)
|
||||
{
|
||||
auto msg = std::make_unique<BackToFront::Msg>(
|
||||
BackToFront::MsgType::selected_frame_changed,
|
||||
BackToFront::SelectedFrameChanged{.idx = idx});
|
||||
this->send_msg(std::move(msg));
|
||||
}
|
||||
Reference in New Issue
Block a user