1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Limit access to internal methods.

This commit is contained in:
Bartosz Taudul
2022-09-03 23:17:57 +02:00
parent 5cbf06ba31
commit 8e713e6366
2 changed files with 8 additions and 6 deletions
+4 -3
View File
@@ -12,9 +12,6 @@ class TimelineItemPlot final : public TimelineItem
public:
TimelineItemPlot( View& view, Worker& worker, PlotData* plot );
bool DrawContents( double pxns, int& offset, const ImVec2& wpos, bool hover, float yMin, float yMax ) override;
bool IsEmpty() const override;
protected:
uint32_t HeaderColor() const override { return 0xFF44DDDD; }
uint32_t HeaderColorInactive() const override { return 0xFF226E6E; }
@@ -27,6 +24,10 @@ protected:
void HeaderTooltip( const char* label ) const override;
void HeaderExtraContents( int offset, const ImVec2& wpos, float labelWidth, double pxns, bool hover ) override;
bool DrawContents( double pxns, int& offset, const ImVec2& wpos, bool hover, float yMin, float yMax ) override;
bool IsEmpty() const override;
private:
PlotData* m_plot;
};