I think this is correct one
          class CustomMouseMoveHandler
  implements MouseMoveHandler
{
  
DialogBox myDialogBox;
public CustomMouseMoveHandler(DialogBox myDgBox){
myDialogBox=myDgBox;
}

@Override
public void onMouseMove(MouseMoveEvent event) {
//do stuff here
 }
}
}
             CustomMouseMoveHandler customMouseMoveHandler=new 
CustomMouseMoveHandler(myDialogBox);
myDialogBox.addHandler(customMouseMoveHandler, MouseMoveEvent.getType());
On Sunday, October 6, 2013 3:27:41 AM UTC+11, Tom wrote:
>
> Thax Jens I knew how to access it, that is i have to create MyDialog 
> extends Dialog & call continueDragging in the constructor of MyDialog, 
>
>
> On Sunday, October 6, 2013 3:10:49 AM UTC+11, Tom wrote:
>>
>> so how can i fire a moving event when users move the dialogbox?
>>
>> On Sunday, October 6, 2013 3:08:07 AM UTC+11, Jens wrote:
>>>
>>> The method is protected and not public.
>>>
>>> -- J.
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to