Beispiel #1
0
 public void ChangeToLookingCharNotFound()
 {
     _state = EasyMotionState.LookingCharNotFound;
     RaiseStateChanged();
 }
Beispiel #2
0
 public void ChangeToLookingForChar()
 {
     _state      = EasyMotionState.LookingForChar;
     _targetChar = (char)0;
     RaiseStateChanged();
 }
Beispiel #3
0
 public void ChangeToLookingForDecision(char target)
 {
     _state      = EasyMotionState.LookingForDecision;
     _targetChar = target;
     RaiseStateChanged();
 }
Beispiel #4
0
 public void ChangeToLookingForChar()
 {
     _state      = EasyMotionState.LookingForChar;
     _targetChar = String.Empty;
     RaiseStateChanged();
 }
Beispiel #5
0
 public void ChangeToDisabled()
 {
     _state      = EasyMotionState.Disabled;
     _targetChar = (char)0;
     RaiseStateChanged();
 }
Beispiel #6
0
 public void ChangeToDisabled()
 {
     _state      = EasyMotionState.Disabled;
     _targetChar = String.Empty;
     RaiseStateChanged();
 }
Beispiel #7
0
 public void ChangeToLookingForDecision(char target)
 {
     _state = EasyMotionState.LookingForDecision;
     _targetChar = target;
     RaiseStateChanged();
 }
Beispiel #8
0
 public void ChangeToLookingForChar()
 {
     _state = EasyMotionState.LookingForChar;
     _targetChar = (char)0;
     RaiseStateChanged();
 }
Beispiel #9
0
 public void ChangeToLookingCharNotFound()
 {
     _state = EasyMotionState.LookingCharNotFound;
     RaiseStateChanged();
 }
Beispiel #10
0
 public void ChangeToDisabled()
 {
     _state = EasyMotionState.Disabled;
     _targetChar = (char)0;
     RaiseStateChanged();
 }