mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
separation of information and appearance of widgets
This commit is contained in:
@ -811,11 +811,17 @@ BYTE* CPdfFile::GetLinks(int nPageIndex)
|
||||
return NULL;
|
||||
return m_pInternal->pReader->GetLinks(nPageIndex);
|
||||
}
|
||||
BYTE* CPdfFile::GetWidgets(int nPageIndex, int nRasterW, int nRasterH, int nBackgroundColor)
|
||||
BYTE* CPdfFile::GetWidgets()
|
||||
{
|
||||
if (!m_pInternal->pReader)
|
||||
return NULL;
|
||||
return m_pInternal->pReader->GetWidgets(nPageIndex, nRasterW, nRasterH, nBackgroundColor);
|
||||
return m_pInternal->pReader->GetWidgets();
|
||||
}
|
||||
BYTE* CPdfFile::GetAPWidgets(int nPageIndex, int nRasterW, int nRasterH, int nBackgroundColor)
|
||||
{
|
||||
if (!m_pInternal->pReader)
|
||||
return NULL;
|
||||
return m_pInternal->pReader->GetAPWidgets(nPageIndex, nRasterW, nRasterH, nBackgroundColor);
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user