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