Uses of Interface
de.javagl.swogl.Condition

Packages that use Condition
de.javagl.swogl The core classes of Swogl. 
 

Uses of Condition in de.javagl.swogl
 

Methods in de.javagl.swogl that return Condition
static Condition<java.awt.event.MouseEvent> MouseEventConditions.altDownCondition()
          Returns a new condition that checks whether mouse events have happened while the ALT button was down
static Condition<java.awt.event.MouseEvent> MouseEventConditions.altGraphDownCondition()
          Returns a new condition that checks whether mouse events have happened while the ALT-GR button was down
static
<T> Condition<T>
Conditions.and(Condition<T> c0, Condition<T> c1)
          Returns a new Condition that is the conjunction of the given conditions.
static Condition<java.awt.event.MouseEvent> MouseEventConditions.controlDownCondition()
          Returns a new condition that checks whether mouse events have happened while the CTRL button was down
static
<T> Condition<T>
Conditions.falseCondition()
          Returns a new Condition that is always false
static Condition<java.awt.event.MouseEvent> MouseEventConditions.metaDownCondition()
          Returns a new condition that checks whether mouse events have happened while the META button was down
static
<T> Condition<T>
Conditions.not(Condition<T> condition)
          Returns a new Condition that is the negation of the given condition.
static
<T> Condition<T>
Conditions.or(Condition<T> c0, Condition<T> c1)
          Returns a new Condition that is the disjunction of the given conditions.
static Condition<java.awt.event.MouseEvent> MouseEventConditions.popupTriggerCondition()
          Returns a new condition that checks whether mouse events are popup triggers.
static Condition<java.awt.event.MouseEvent> MouseEventConditions.shiftDownCondition()
          Returns a new condition that checks whether mouse events have happened while the SHIFT button was down
static
<T> Condition<T>
Conditions.trueCondition()
          Returns a new Condition that is always true
 

Methods in de.javagl.swogl with parameters of type Condition
static
<T> Condition<T>
Conditions.and(Condition<T> c0, Condition<T> c1)
          Returns a new Condition that is the conjunction of the given conditions.
static
<T> Condition<T>
Conditions.and(Condition<T> c0, Condition<T> c1)
          Returns a new Condition that is the conjunction of the given conditions.
static
<T> Condition<T>
Conditions.not(Condition<T> condition)
          Returns a new Condition that is the negation of the given condition.
static
<T> Condition<T>
Conditions.or(Condition<T> c0, Condition<T> c1)
          Returns a new Condition that is the disjunction of the given conditions.
static
<T> Condition<T>
Conditions.or(Condition<T> c0, Condition<T> c1)
          Returns a new Condition that is the disjunction of the given conditions.
 void SwoglContainer.setMouseEventDispatchingConditions(Condition<java.awt.event.MouseEvent> listenerDispatchingCondition, Condition<java.awt.event.MouseEvent> swoglComponentDispatchingCondition)
          Set the conditions for the dispatching of MouseEvents to either the listeners that are attached to the main component of this SwoglContainer, or to the SwoglComponents inside this SwoglContainer.
 void SwoglContainer.setMouseEventDispatchingConditions(Condition<java.awt.event.MouseEvent> listenerDispatchingCondition, Condition<java.awt.event.MouseEvent> swoglComponentDispatchingCondition)
          Set the conditions for the dispatching of MouseEvents to either the listeners that are attached to the main component of this SwoglContainer, or to the SwoglComponents inside this SwoglContainer.