Ejemplo n.º 1
0
 /// <summary>
 /// Called when the cursor leaves the group this Selectable is in.
 /// </summary>
 /// <param name="cursor">The cursor triggering the event</param>
 public virtual void GroupLeft(SelectableCursorBase cursor)
 {
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Called when the cursor enters the group this Selectable is in.
 /// </summary>
 /// <param name="cursor">The cursor triggering the event</param>
 public virtual void GroupEntered(SelectableCursorBase cursor)
 {
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Called when the OK key specified in the cursor's properties is pressed while this option is selected.
 /// </summary>
 /// <param name="cursor">The cursor triggering the event</param>
 public virtual void OkPressed(SelectableCursorBase cursor)
 {
     cursor.AfterOkPressed();
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Called when the Cancel key specified in the cursor's properties is pressed while this option is selected.
 /// </summary>
 /// <param name="cursor">The cursor triggering the event</param>
 public virtual void CancelPressed(SelectableCursorBase cursor)
 {
     cursor.AfterCancelPressed();
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Called when the cursor leaves this option.
 /// </summary>
 /// <param name="cursor">The cursor triggering the event</param>
 public virtual void Deselect(SelectableCursorBase cursor)
 {
 }