-
Notifications
You must be signed in to change notification settings - Fork 354
Add a left margin to TimeGraph #4488
Changes from all commits
a15b242
5064196
8e0bb16
af72d46
d2e299d
c303f1c
ca1531f
5bab807
e551123
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -397,7 +397,7 @@ orbit_gl::CaptureViewElement::EventResult TimeGraph::OnMouseWheel( | |
const float kScrollingRatioPerDelta = 0.05f; | ||
|
||
if (modifiers.ctrl) { | ||
double mouse_ratio = (mouse_pos[0] - GetPos()[0]) / GetTimelineWidth(); | ||
double mouse_ratio = (mouse_pos[0] - GetTimelinePos()[0]) / GetTimelineWidth(); | ||
ZoomTime(delta, mouse_ratio); | ||
} else { | ||
track_container_->IncrementVerticalScroll(delta * kScrollingRatioPerDelta); | ||
|
@@ -424,7 +424,8 @@ float TimeGraph::GetWorldFromTick(uint64_t time) const { | |
if (time_window_us > 0) { | ||
double start = TicksToMicroseconds(capture_min_timestamp_, time) - min_time_us_; | ||
double normalized_start = start / time_window_us; | ||
float pos = static_cast<float>(normalized_start * GetTimelineWidth()); | ||
float pos = | ||
layout_->GetLeftMargin() + static_cast<float>(normalized_start * GetTimelineWidth()); | ||
return pos; | ||
} | ||
|
||
|
@@ -442,7 +443,8 @@ double TimeGraph::GetUsFromTick(uint64_t time) const { | |
uint64_t TimeGraph::GetNsSinceStart(uint64_t time) const { return time - capture_min_timestamp_; } | ||
|
||
uint64_t TimeGraph::GetTickFromWorld(float world_x) const { | ||
double ratio = GetTimelineWidth() > 0 ? static_cast<double>(world_x / GetTimelineWidth()) : 0; | ||
float relative_x = world_x - GetTimelinePos()[0]; | ||
double ratio = GetTimelineWidth() > 0 ? static_cast<double>(relative_x / GetTimelineWidth()) : 0; | ||
auto time_span_ns = static_cast<uint64_t>(1000 * GetTime(ratio)); | ||
return capture_min_timestamp_ + time_span_ns; | ||
} | ||
|
@@ -683,21 +685,21 @@ void TimeGraph::DoUpdateLayout() { | |
|
||
void TimeGraph::UpdateChildrenPosAndContainerSize() { | ||
// TimeGraph's children: | ||
// ___________________________________________ | ||
// | TIMELINE | | + | | ||
// | | | - | | ||
// |--------------------------------| |-----| | ||
// | SPACE TRACKS - TIMELINE | | ||
// |--------------------------------| M |-----| | ||
// | | A | S | | ||
// | | R | L | | ||
// | TRACK CONTAINER | G | I | | ||
// | | I | D | | ||
// | | N | E | | ||
// | | | R | | ||
// |________________________________|___|_____| | ||
// | HORIZONTAL SLIDER | | ||
// |------------------------------------| | ||
// _______________________________________________ | ||
// | L | TIMELINE | R | + | | ||
// | E | | I | - | | ||
// | F |--------------------------------| G |-----| | ||
// | T | SPACE TRACKS - TIMELINE H | | ||
// | |--------------------------------| T |-----| | ||
// | M | | | S | | ||
// | A | | M | L | | ||
// | R | TRACK CONTAINER | A | I | | ||
// | G | | R | D | | ||
// | I | | G | E | | ||
// | N | | I | R | | ||
// | |________________________________|_N_|_____| | ||
// | | HORIZONTAL SLIDER | | ||
// |----------------------------------------| | ||
|
||
// First we calculate TrackContainer's height. TimeGraph will set TrackContainer height based on | ||
// its free space. | ||
|
@@ -711,8 +713,8 @@ void TimeGraph::UpdateChildrenPosAndContainerSize() { | |
float timegraph_current_y = GetPos()[1]; | ||
const float total_right_margin = layout_->GetRightMargin() + vertical_slider_->GetWidth(); | ||
|
||
timeline_ui_->SetWidth(GetWidth() - total_right_margin); | ||
timeline_ui_->SetPos(timegraph_current_x, timegraph_current_y); | ||
timeline_ui_->SetWidth(GetWidth() - total_right_margin - layout_->GetLeftMargin()); | ||
pierricgimmig marked this conversation as resolved.
Show resolved
Hide resolved
|
||
timeline_ui_->SetPos(timegraph_current_x + layout_->GetLeftMargin(), timegraph_current_y); | ||
|
||
plus_button_->SetWidth(layout_->GetButtonWidth()); | ||
plus_button_->SetHeight(layout_->GetButtonHeight()); | ||
|
@@ -723,18 +725,20 @@ void TimeGraph::UpdateChildrenPosAndContainerSize() { | |
minus_button_->SetPos(GetWidth() - minus_button_->GetWidth(), | ||
timegraph_current_y + plus_button_->GetHeight()); | ||
|
||
float x_offset = layout_->GetLeftMargin(); | ||
timegraph_current_y += timeline_ui_->GetHeight() + layout_->GetSpaceBetweenTracksAndTimeline(); | ||
track_container_->SetWidth(GetWidth() - total_right_margin); | ||
track_container_->SetPos(timegraph_current_x, timegraph_current_y); | ||
track_container_->SetWidth(GetWidth() - total_right_margin - x_offset); | ||
track_container_->SetPos(timegraph_current_x + x_offset, timegraph_current_y); | ||
|
||
vertical_slider_->SetWidth(layout_->GetSliderWidth()); | ||
vertical_slider_->SetPos(GetWidth() - vertical_slider_->GetWidth(), timegraph_current_y); | ||
|
||
timegraph_current_y += track_container_->GetHeight(); | ||
horizontal_slider_->SetWidth(GetWidth() - vertical_slider_->GetWidth()); | ||
float slider_width = GetWidth() - vertical_slider_->GetWidth() - layout_->GetLeftMargin(); | ||
horizontal_slider_->SetWidth(slider_width); | ||
// The horizontal slider should be at the bottom of the TimeGraph. Because how OpenGl renders, the | ||
// way to assure that there is no pixels below the scrollbar is by making a ceiling. | ||
horizontal_slider_->SetPos(timegraph_current_x, | ||
horizontal_slider_->SetPos(timegraph_current_x + layout_->GetLeftMargin(), | ||
std::ceil(GetHeight() - horizontal_slider_->GetHeight())); | ||
|
||
// TODO(b/230442062): Refactor this to be part of Slider::UpdateLayout(). | ||
|
@@ -883,10 +887,19 @@ void TimeGraph::DrawMarginsBetweenChildren( | |
primitive_assembler.AddBox(MakeBox(timeline_margin_pos, timeline_margin_size), | ||
GlCanvas::kZValueTimeBar, GlCanvas::kBackgroundColor); | ||
|
||
// Margin between the Tracks and the vertical scrollbar. | ||
Vec2 right_margin_pos{GetWidth() - GetRightMargin(), GetPos()[1]}; | ||
Quad box = MakeBox(right_margin_pos, GetSize() - (right_margin_pos - GetPos())); | ||
primitive_assembler.AddBox(box, GlCanvas::kZValueMargin, GlCanvas::kBackgroundColor); | ||
// Right margin mask for Timeline. | ||
float right_margin_width = GetRightMargin(); | ||
float right_margin_height = GetHeight() - timeline_ui_->GetHeight(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't this be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looking at the code above - should this be By the way, what's the reasoning behind the different behaviors of left and right margin (left one goes all the way to the bottom, right one stops above the slider)? Wouldn't it be more consistent to have the horizontal slider also stop at the margin? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for the review @reichlfl . The reasoning is that I found it weird to have the horizontal slider not touch the horizontal slider, feel free to modify. I've done enough work on this PR :-) |
||
Vec2 right_margin_pos{GetWidth() - right_margin_width, GetPos()[1]}; | ||
Quad right_margin_box = MakeBox(right_margin_pos, Vec2(right_margin_width, right_margin_height)); | ||
primitive_assembler.AddBox(right_margin_box, GlCanvas::kZValueMargin, GlCanvas::kBackgroundColor); | ||
|
||
// Left margin mask for Timeline. | ||
float left_margin_width = layout_->GetLeftMargin(); | ||
float left_margin_height = GetHeight(); | ||
Vec2 left_margin_pos = GetPos(); | ||
Quad left_margin_box = MakeBox(left_margin_pos, Vec2(left_margin_width, left_margin_height)); | ||
primitive_assembler.AddBox(left_margin_box, GlCanvas::kZValueMargin, GlCanvas::kBackgroundColor); | ||
} | ||
|
||
void TimeGraph::DrawText(QPainter* painter, float layer) { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think with this line you don't need the
SimulatePreRender
before.