Added license and copyright notice.
[instantlauncher.git] / src / main / java / eu / svjatoslav / instantlauncher / menu / MenuListener.java
1 /*
2  * Instantlauncher. Copyright ©2012-2019, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of version 3 of the GNU Lesser General Public License
6  * or later as published by the Free Software Foundation.
7  */
8
9 package eu.svjatoslav.instantlauncher.menu;
10
11 import java.io.File;
12
13 interface MenuListener {
14
15     /**
16      * mouse over
17      */
18     void menuItemHighlighted(Menu menu, java.io.File chosenFile);
19
20     /**
21      * left click
22      */
23     void menuItemSelected(File chosenFile);
24
25     /**
26      * right click
27      */
28     void menuItemSelectedAlternative(File chosenFile);
29
30     /**
31      * middle click
32      */
33     void menuItemSelectedAlternative2(File chosenFile);
34
35 }