From b386e51edc152763c3668b0bd88b9b5c710265d4 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 29 Sep 2017 21:57:00 +0200 Subject: [PATCH] Highlight selected zone. --- server/TracyView.cpp | 14 +++++++++++++- server/TracyView.hpp | 2 ++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 24d70ffa..b8f049c3 100755 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -1188,7 +1188,7 @@ int View::DrawZoneLevel( const Vector& vec, bool hover, double pxns, con const auto px0 = std::max( pr0, -10.0 ); const auto px1 = std::min( pr1, double( w + 10 ) ); draw->AddRectFilled( wpos + ImVec2( px0, offset ), wpos + ImVec2( px1, offset + tsz.y ), color, 2.f ); - draw->AddRect( wpos + ImVec2( px0, offset ), wpos + ImVec2( px1, offset + tsz.y ), 0xAAAAAAAA, 2.f ); + draw->AddRect( wpos + ImVec2( px0, offset ), wpos + ImVec2( px1, offset + tsz.y ), GetZoneHighlight( ev ), 2.f ); if( dsz * dmul >= MinVisSize ) { draw->AddRectFilled( wpos + ImVec2( pr0, offset ), wpos + ImVec2( std::min( pr0+dsz*dmul, pr1 ), offset + tsz.y ), 0x882222DD, 2.f ); @@ -1285,4 +1285,16 @@ void View::DrawZoneInfoWindow() if( !show ) m_zoneInfoWindow = nullptr; } +uint32_t View::GetZoneHighlight( const Event& ev ) +{ + if( m_zoneInfoWindow == &ev ) + { + return 0xFF44DD44; + } + else + { + return 0xAAAAAAAA; + } +} + } diff --git a/server/TracyView.hpp b/server/TracyView.hpp index f9724746..c62f3c1a 100755 --- a/server/TracyView.hpp +++ b/server/TracyView.hpp @@ -87,6 +87,8 @@ private: int DrawZoneLevel( const Vector& vec, bool hover, double pxns, const ImVec2& wpos, int offset, int depth ); void DrawZoneInfoWindow(); + uint32_t GetZoneHighlight( const Event& ev ); + std::string m_addr; Socket m_sock;