void XAP_App::enumerateFrames(UT_Vector & v) { for(UT_sint32 i = 0; i < getFrameCount(); ++i) { XAP_Frame * pF = getFrame(i); if(pF) { if (v.findItem((void*)pF) < 0) { v.addItem((void*)pF); } } } }
/*! Enumerates currently open document associated with the application, excluding document pointed to by pExclude \param v: UT_Vector into which to store the document pointers \para pExclude: pointer to a document to exclude from enumeration, can be NULL (e.g., if this function is called from inside a document, it might be desirable to exclude that document) */ void XAP_App::enumerateDocuments(UT_Vector & v, const AD_Document * pExclude) { UT_sint32 iIndx; for(UT_sint32 i = 0; i < getFrameCount(); ++i) { XAP_Frame * pF = getFrame(i); if(pF) { AD_Document * pD = pF->getCurrentDoc(); if(pD && pD != pExclude) { iIndx = v.findItem((void*)pD); if(iIndx < 0) { v.addItem((void*)pD); } } } } }