Lines Matching refs:pImpl

729     if ( pImpl->m_pSfxPage->HasExchangeSupport() )  in IMPL_LINK()
731 int nRet = pImpl->m_pSfxPage->DeactivatePage( GetOutputSetImpl() ); in IMPL_LINK()
738 bModified = pImpl->m_pSfxPage->FillItemSet( *GetOutputSetImpl() ); in IMPL_LINK()
743 pImpl->m_pSfxPage->FillUserData(); in IMPL_LINK()
744 String sData( pImpl->m_pSfxPage->GetUserData() ); in IMPL_LINK()
774 pImpl ( new SingleTabDlgImpl ) in SfxSingleTabDialog()
801 pImpl ( new SingleTabDlgImpl ) in SfxSingleTabDialog()
827 pImpl ( new SingleTabDlgImpl ) in SfxSingleTabDialog()
829 pImpl->m_sInfoURL = rInfoURL; in SfxSingleTabDialog()
839 delete pImpl->m_pTabPage; in ~SfxSingleTabDialog()
840 delete pImpl->m_pSfxPage; in ~SfxSingleTabDialog()
841 delete pImpl->m_pLine; in ~SfxSingleTabDialog()
842 delete pImpl->m_pInfoImage; in ~SfxSingleTabDialog()
843 delete pImpl; in ~SfxSingleTabDialog()
850 if ( !pImpl->m_pLine ) in SetPage()
851 pImpl->m_pLine = new FixedLine( this ); in SetPage()
859 if ( pImpl->m_sInfoURL.Len() > 0 && !pImpl->m_pInfoImage ) in SetPage()
861 pImpl->m_pInfoImage = new ::svt::FixedHyperlinkImage( this ); in SetPage()
866 pImpl->m_pInfoImage->SetSizePixel( aImageSize ); in SetPage()
867 pImpl->m_pInfoImage->SetImage( aInfoImage ); in SetPage()
868 pImpl->m_pInfoImage->SetURL( pImpl->m_sInfoURL ); in SetPage()
869 pImpl->m_pInfoImage->SetClickHdl( pImpl->m_aInfoLink ); in SetPage()
872 if ( pImpl->m_pTabPage ) in SetPage()
873 delete pImpl->m_pTabPage; in SetPage()
874 if ( pImpl->m_pSfxPage ) in SetPage()
875 delete pImpl->m_pSfxPage; in SetPage()
876 pImpl->m_pTabPage = pNewPage; in SetPage()
878 if ( pImpl->m_pTabPage ) in SetPage()
881 pImpl->m_pTabPage->SetPosPixel( Point() ); in SetPage()
882 Size aOutSz( pImpl->m_pTabPage->GetSizePixel() ); in SetPage()
888 pImpl->m_pLine->SetPosSizePixel( aPnt, aFLSz ); in SetPage()
893 if ( pImpl->m_pInfoImage ) in SetPage()
896 long nDelta = ( pImpl->m_pInfoImage->GetSizePixel().Height() - aBtnSz.Height() ) / 2; in SetPage()
898 pImpl->m_pInfoImage->SetPosPixel( aPnt ); in SetPage()
899 pImpl->m_pInfoImage->Show(); in SetPage()
905 pImpl->m_pLine->Show(); in SetPage()
907 pImpl->m_pTabPage->Show(); in SetPage()
910 SetText( pImpl->m_pTabPage->GetText() ); in SetPage()
913 SetHelpId( pImpl->m_pTabPage->GetHelpId() ); in SetPage()
914 SetUniqueId( pImpl->m_pTabPage->GetUniqueId() ); in SetPage()
941 if ( pImpl->m_pTabPage ) in SetTabPage()
942 delete pImpl->m_pTabPage; in SetTabPage()
943 if ( pImpl->m_pSfxPage ) in SetTabPage()
944 delete pImpl->m_pSfxPage; in SetTabPage()
945 pImpl->m_pSfxPage = pTabPage; in SetTabPage()
948 if ( pImpl->m_pSfxPage ) in SetTabPage()
957 pImpl->m_pSfxPage->SetUserData( sUserData ); in SetTabPage()
958 pImpl->m_pSfxPage->Reset( *GetInputItemSet() ); in SetTabPage()
959 pImpl->m_pSfxPage->Show(); in SetTabPage()
962 pImpl->m_pSfxPage->SetPosPixel( Point() ); in SetTabPage()
963 Size aOutSz( pImpl->m_pSfxPage->GetSizePixel() ); in SetTabPage()
980 SetText( pImpl->m_pSfxPage->GetText() ); in SetTabPage()
983 SetHelpId( pImpl->m_pSfxPage->GetHelpId() ); in SetTabPage()
984 SetUniqueId( pImpl->m_pSfxPage->GetUniqueId() ); in SetTabPage()
992 pImpl->m_aInfoLink = rLink; in SetInfoLink()