I'm using GWT with the GWTP framework in my projects. Until now all presenters/views where of type singleton (one dedicated window for each implementation type). Now i have a special (document) window where i want to create a new presenter/view (window) for each document the user wants to open.
GWTP class com.gwtplatform.mvp.client.gin.AbstractPresenterModule contains methods for binding non-singleton PresenterWidgets/Views, for example with a PresenterWidget factory;
But i cannot find any documentation or examples about this GWTP PresenterWidget factory usages. How do i implement this PresenterWidget factories?

There's a difference between using com.gwtplatform.mvp.client.PresenterWidget and com.gwtplatform.mvp.client.Presenter when implementing your own presenter classes.
When using Presenter (with a PresenterProxy), GWTP handles the presenter as singleton.
When using PresenterWidget the presenter will be instantiated multiple times (like a Spring prototype scope)
Then use com.google.inject.Provider get() to instantiate the presenter. When using PresenterWidget it will result in multiple instances. When using Presenter the singleton presenter is returned. For example:
and
Hope this helps