File: IJEventListener.java

package info (click to toggle)
imagej 1.46a-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,248 kB
  • sloc: java: 89,778; sh: 311; xml: 51; makefile: 6
file content (17 lines) | stat: -rw-r--r-- 575 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package ij;

	/** Plugins that implement this interface are notified when the user
	     changes the foreground color, changes the background color,
	     closes the color picker, closes the Log window or switches to
	     another tool.
	*/
	public interface IJEventListener {
		public static final int FOREGROUND_COLOR_CHANGED = 0;
		public static final int BACKGROUND_COLOR_CHANGED = 1;
		public static final int COLOR_PICKER_CLOSED= 2;
		public static final int LOG_WINDOW_CLOSED= 3;
		public static final int TOOL_CHANGED= 4;

	public void eventOccurred(int eventID);

}