Dear @Elisa
Here you connect signal to slots for pointers of a current active layer and a current active document. There is no possibility now to listen to an event of the creation of a new document.
Do I understand correctly that you want for your App to do some operations automatically once a .sam file was imported?
What you can do is to create a timer in your App and connect to it a function in which you will be doing something like this:
if(SAMSON::getActiveDocument()->documentSignalIsConnectedToSlot(this, SB_SLOT(&MyApp::onDocumentEvent)) == false) {
SAMSON::getActiveDocument()->connectDocumentSignalToSlot(this, SB_SLOT(&MyApp::onDocumentEvent));
}