MCPcopy Index your code
hub / github.com/benfry/processing4 / mouseMoved

Method mouseMoved

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

Source from the content-addressed store, hash-verified

123
124 addMouseMotionListener(new MouseMotionAdapter() {
125 public void mouseMoved(MouseEvent e) {
126 int x = e.getX();
127 for (Tab tab : tabs) {
128 if (tab.contains(x) && !tab.textVisible) {
129 lastNoticeName = editor.getSketch().getCode(tab.index).getPrettyName();
130 editor.statusNotice(lastNoticeName);
131 }
132 }
133 }
134 });
135 }
136

Callers

nothing calls this directly

Calls 6

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

Tested by

no test coverage detected