Lines Matching refs:trackState
47 trackState: TrackState; property
68 if (trackId === attrs.trackState.id) {
88 title: attrs.trackState.name,
90 attrs.trackState.name),
96 Actions.toggleTrackPinned({trackId: attrs.trackState.id}));
98 i: isPinned(attrs.trackState.id) ? STAR : STAR_BORDER,
99 tooltip: isPinned(attrs.trackState.id) ? 'Unpin' : 'Pin to top',
100 showButton: isPinned(attrs.trackState.id),
107 {id: attrs.trackState.id, isTrackGroup: false}));
110 i: isSelected(attrs.trackState.id) ? CHECKBOX : BLANK_CHECKBOX,
111 tooltip: isSelected(attrs.trackState.id) ?
130 dataTransfer.setData('perfetto/track', `${this.attrs!.trackState.id}`);
170 const dstId = this.attrs!.trackState.id;
227 trackState: TrackState; property
238 id: 'track_' + attrs.trackState.id,
241 m(TrackShell, {track: attrs.track, trackState: attrs.trackState}),
247 if (globals.frontendLocalState.scrollToTrackId === attrs.trackState.id) {
248 verticalScrollToTrack(attrs.trackState.id);
280 private trackState: TrackState; property in TrackPanel
283 this.trackState = globals.state.tracks[vnode.attrs.id];
284 const trackCreator = trackRegistry.get(this.trackState.kind);
285 this.track = trackCreator.create(this.trackState);
289 return m(TrackComponent, {trackState: this.trackState, track: this.track});
297 if (selectedArea.tracks.includes(this.trackState.id)) {