Beispiel #1
0
int
Region::type(Match target, const char* text, int modifiers){
   return type(target.getCenter(), text, modifiers);
}
Beispiel #2
0
int 
Region::dropAt(Match target, double delay){
   return dropAt(target.getCenter(),delay);
}
Beispiel #3
0
int
Region::paste(const Match target, const char* text){
   return paste(target.getCenter(), text);
}
Beispiel #4
0
int 
Region::drag(Match target){
   return drag(target.getCenter());
}
Beispiel #5
0
int 
Region::dragDrop(Match t1, Match t2, int modifiers){
   Location loc1 = t1.getCenter();
   Location loc2 = t2.getCenter();
   return dragDrop(loc1, loc2, modifiers);
}      
Beispiel #6
0
int 
Region::hover(Match target){
   return hover(target.getCenter());
}
Beispiel #7
0
int 
Region::rightClick(Match target, int modifiers){
   return rightClick(target.getCenter(),modifiers);
}
Beispiel #8
0
int 
Region::doubleClick(Match target, int modifiers){
   return doubleClick(target.getCenter(),modifiers);
}