From 50a0ddb99d53f86b571acc0373f0d2b4ec6d611a Mon Sep 17 00:00:00 2001 From: Charu Tyagi Date: Wed, 25 Mar 2015 10:13:35 +0530 Subject: fdo#87441-Send document as Email removes invisible content Signed-off-by: Stephan Bergmann , plus trivial modifications for -Werror,-Wlogical-op-parentheses and loplugin:bodynotinblock Change-Id: I149681b3743eaf96e98419bd568f88b451e9ba01 --- cui/source/options/optinet2.cxx | 27 +++++++++++++++++++-- cui/source/options/optinet2.hxx | 1 + cui/uiconfig/ui/optemailpage.ui | 52 +++++++++++++++++++++++++++++++++++++++-- 3 files changed, 76 insertions(+), 4 deletions(-) (limited to 'cui') diff --git a/cui/source/options/optinet2.cxx b/cui/source/options/optinet2.cxx index c384de188dec..b7903817c635 100644 --- a/cui/source/options/optinet2.cxx +++ b/cui/source/options/optinet2.cxx @@ -938,6 +938,7 @@ class MailerProgramCfg_Impl : public utl::ConfigItem OUString sProgram; // readonly states bool bROProgram; + bool bHidden; const Sequence GetPropertyNames(); @@ -973,6 +974,12 @@ MailerProgramCfg_Impl::MailerProgramCfg_Impl() : bROProgram = pROStates[nProp]; } break; + case 1 : + { + pValues[nProp] >>= bHidden;; + + } + break; } } } @@ -988,9 +995,10 @@ MailerProgramCfg_Impl::~MailerProgramCfg_Impl() const Sequence MailerProgramCfg_Impl::GetPropertyNames() { - Sequence aRet(1); + Sequence aRet(2); OUString* pRet = aRet.getArray(); pRet[0] = "Program"; + pRet[1] = "Hidden"; return aRet; } @@ -1019,6 +1027,13 @@ void MailerProgramCfg_Impl::ImplCommit() } } break; + case 1: + { + aNames[nRealCount] = aOrgNames[nProp]; + aValues[nRealCount] <<= bHidden;; + ++nRealCount; + } + break; } } @@ -1046,6 +1061,7 @@ SvxEMailTabPage::SvxEMailTabPage(vcl::Window* pParent, const SfxItemSet& rSet) get(m_pMailerURLFI, "lockemail"); get(m_pMailerURLED, "url"); get(m_pMailerURLPB, "browse"); + get(m_pSuppressHidden, "suppressHidden"); m_sDefaultFilterName = get("browsetitle")->GetText(); m_pMailerURLPB->SetClickHdl( LINK( this, SvxEMailTabPage, FileDialogHdl_Impl ) ); } @@ -1069,9 +1085,10 @@ SfxTabPage* SvxEMailTabPage::Create( vcl::Window* pParent, const SfxItemSet* rA bool SvxEMailTabPage::FillItemSet( SfxItemSet* ) { bool bMailModified = false; - if(!pImpl->aMailConfig.bROProgram && m_pMailerURLED->IsValueChangedFromSaved()) + if((!pImpl->aMailConfig.bROProgram && m_pMailerURLED->IsValueChangedFromSaved()) || m_pSuppressHidden->IsValueChangedFromSaved()) { pImpl->aMailConfig.sProgram = m_pMailerURLED->GetText(); + pImpl->aMailConfig.bHidden = m_pSuppressHidden->GetState(); bMailModified = true; } if ( bMailModified ) @@ -1093,6 +1110,12 @@ void SvxEMailTabPage::Reset( const SfxItemSet* ) m_pMailerURLED->SetText(pImpl->aMailConfig.sProgram); m_pMailerURLED->SaveValue(); + if(pImpl->aMailConfig.bHidden) + m_pSuppressHidden->SetState(TRISTATE_TRUE); + else + m_pSuppressHidden->SetState(TRISTATE_FALSE); + m_pSuppressHidden->SaveValue(); + m_pMailContainer->Enable(!pImpl->aMailConfig.bROProgram); } diff --git a/cui/source/options/optinet2.hxx b/cui/source/options/optinet2.hxx index 5bb9c0547160..0c5f713d858d 100644 --- a/cui/source/options/optinet2.hxx +++ b/cui/source/options/optinet2.hxx @@ -186,6 +186,7 @@ class SvxEMailTabPage : public SfxTabPage FixedImage* m_pMailerURLFI; Edit* m_pMailerURLED; PushButton* m_pMailerURLPB; + CheckBox* m_pSuppressHidden; OUString m_sDefaultFilterName; diff --git a/cui/uiconfig/ui/optemailpage.ui b/cui/uiconfig/ui/optemailpage.ui index 3a5834107615..3b07f09b9804 100644 --- a/cui/uiconfig/ui/optemailpage.ui +++ b/cui/uiconfig/ui/optemailpage.ui @@ -1,7 +1,6 @@ - - + True False @@ -32,6 +31,8 @@ 1 0 + 1 + 1 @@ -46,19 +47,25 @@ 2 0 + 1 + 1 Browse... + False True True True + False True 3 0 + 1 + 1 @@ -72,6 +79,8 @@ 0 0 + 1 + 1 @@ -84,8 +93,47 @@ 0 1 4 + 1 + + + True + False + 0 + Suppress hidden elements of documents + True + + + 2 + 2 + 1 + 1 + + + + + False + True + True + False + False + 0 + True + + + 1 + 2 + 1 + 1 + + + + + + + + -- cgit