MCPcopy Index your code
hub / github.com/processing/processing / mouseMoved

Method mouseMoved

app/src/processing/app/ui/EditorHeader.java:131–139  ·  view source on GitHub ↗
(MouseEvent e)

Source from the content-addressed store, hash-verified

129
130 addMouseMotionListener(new MouseMotionAdapter() {
131 public void mouseMoved(MouseEvent e) {
132 int x = e.getX();
133 for (Tab tab : tabs) {
134 if (tab.contains(x) && !tab.textVisible) {
135 lastNoticeName = editor.getSketch().getCode(tab.index).getPrettyName();
136 editor.statusNotice(lastNoticeName);
137 }
138 }
139 }
140 });
141 }
142

Callers

nothing calls this directly

Calls 6

getXMethod · 0.80
getPrettyNameMethod · 0.80
getCodeMethod · 0.80
getSketchMethod · 0.80
statusNoticeMethod · 0.65
containsMethod · 0.45

Tested by

no test coverage detected