initial commit
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / gui / humaninput / MouseInteractionController.java
1 /*
2  * Sixth - System for data storage, computation, exploration and interaction.
3  * Copyright ©2012-2016, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
4  * 
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 3 of the GNU Lesser General Public License
7  * or later as published by the Free Software Foundation.
8  */
9
10 package eu.svjatoslav.sixth.e3d.gui.humaninput;
11
12 public interface MouseInteractionController {
13
14     /**
15      * Called when mouse is clicked on component
16      */
17     void mouseClicked();
18
19     /**
20      * Called when mouse gets over given component.
21      */
22     void mouseEntered();
23
24     /**
25      * Called when mouse leaves screen area occupied by component.
26      */
27     void mouseExited();
28
29 }