1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 29*cdf0e10cSrcweir #include "precompiled_framework.hxx" 30*cdf0e10cSrcweir #include <helper/vclstatusindicator.hxx> 31*cdf0e10cSrcweir 32*cdf0e10cSrcweir //----------------------------------------------- 33*cdf0e10cSrcweir // includes of own modules 34*cdf0e10cSrcweir #include <threadhelp/readguard.hxx> 35*cdf0e10cSrcweir #include <threadhelp/writeguard.hxx> 36*cdf0e10cSrcweir 37*cdf0e10cSrcweir //----------------------------------------------- 38*cdf0e10cSrcweir // includes of interfaces 39*cdf0e10cSrcweir 40*cdf0e10cSrcweir //----------------------------------------------- 41*cdf0e10cSrcweir // includes of external modules 42*cdf0e10cSrcweir 43*cdf0e10cSrcweir #ifndef _TOOLKIT_HELPER_VCLUNOHELPER_HXX_ 44*cdf0e10cSrcweir #include <toolkit/unohlp.hxx> 45*cdf0e10cSrcweir #endif 46*cdf0e10cSrcweir #include <vcl/svapp.hxx> 47*cdf0e10cSrcweir 48*cdf0e10cSrcweir //----------------------------------------------- 49*cdf0e10cSrcweir // namespace 50*cdf0e10cSrcweir 51*cdf0e10cSrcweir namespace framework { 52*cdf0e10cSrcweir 53*cdf0e10cSrcweir //----------------------------------------------- 54*cdf0e10cSrcweir // definitions 55*cdf0e10cSrcweir 56*cdf0e10cSrcweir //----------------------------------------------- 57*cdf0e10cSrcweir DEFINE_XINTERFACE_1(VCLStatusIndicator , 58*cdf0e10cSrcweir OWeakObject , 59*cdf0e10cSrcweir DIRECT_INTERFACE(css::task::XStatusIndicator)) 60*cdf0e10cSrcweir 61*cdf0e10cSrcweir //----------------------------------------------- 62*cdf0e10cSrcweir VCLStatusIndicator::VCLStatusIndicator(const css::uno::Reference< css::lang::XMultiServiceFactory >& xSMGR , 63*cdf0e10cSrcweir const css::uno::Reference< css::awt::XWindow >& xParentWindow) 64*cdf0e10cSrcweir : ThreadHelpBase (&Application::GetSolarMutex()) 65*cdf0e10cSrcweir , ::cppu::OWeakObject( ) 66*cdf0e10cSrcweir , m_xSMGR (xSMGR ) 67*cdf0e10cSrcweir , m_xParentWindow (xParentWindow ) 68*cdf0e10cSrcweir , m_pStatusBar (0 ) 69*cdf0e10cSrcweir , m_nRange (0 ) 70*cdf0e10cSrcweir , m_nValue (0 ) 71*cdf0e10cSrcweir { 72*cdf0e10cSrcweir if (!m_xParentWindow.is()) 73*cdf0e10cSrcweir throw css::uno::RuntimeException( 74*cdf0e10cSrcweir ::rtl::OUString::createFromAscii("Cant work without a parent window!"), 75*cdf0e10cSrcweir static_cast< css::task::XStatusIndicator* >(this)); 76*cdf0e10cSrcweir } 77*cdf0e10cSrcweir 78*cdf0e10cSrcweir //----------------------------------------------- 79*cdf0e10cSrcweir VCLStatusIndicator::~VCLStatusIndicator() 80*cdf0e10cSrcweir { 81*cdf0e10cSrcweir } 82*cdf0e10cSrcweir 83*cdf0e10cSrcweir //----------------------------------------------- 84*cdf0e10cSrcweir void SAL_CALL VCLStatusIndicator::start(const ::rtl::OUString& sText , 85*cdf0e10cSrcweir sal_Int32 nRange) 86*cdf0e10cSrcweir throw(css::uno::RuntimeException) 87*cdf0e10cSrcweir { 88*cdf0e10cSrcweir // SAFE -> ---------------------------------- 89*cdf0e10cSrcweir ReadGuard aReadLock(m_aLock); 90*cdf0e10cSrcweir css::uno::Reference< css::awt::XWindow > xParentWindow = m_xParentWindow; 91*cdf0e10cSrcweir aReadLock.unlock(); 92*cdf0e10cSrcweir // <- SAFE ---------------------------------- 93*cdf0e10cSrcweir 94*cdf0e10cSrcweir // SOLAR SAFE -> ---------------------------- 95*cdf0e10cSrcweir ::vos::OClearableGuard aSolarLock(Application::GetSolarMutex()); 96*cdf0e10cSrcweir 97*cdf0e10cSrcweir Window* pParentWindow = VCLUnoHelper::GetWindow(xParentWindow); 98*cdf0e10cSrcweir if (!m_pStatusBar) 99*cdf0e10cSrcweir m_pStatusBar = new StatusBar(pParentWindow, WB_3DLOOK|WB_BORDER); 100*cdf0e10cSrcweir 101*cdf0e10cSrcweir VCLStatusIndicator::impl_recalcLayout(m_pStatusBar, pParentWindow); 102*cdf0e10cSrcweir 103*cdf0e10cSrcweir m_pStatusBar->Show(); 104*cdf0e10cSrcweir m_pStatusBar->StartProgressMode(sText); 105*cdf0e10cSrcweir m_pStatusBar->SetProgressValue(0); 106*cdf0e10cSrcweir 107*cdf0e10cSrcweir // force repaint! 108*cdf0e10cSrcweir pParentWindow->Show(); 109*cdf0e10cSrcweir pParentWindow->Invalidate(INVALIDATE_CHILDREN); 110*cdf0e10cSrcweir pParentWindow->Flush(); 111*cdf0e10cSrcweir 112*cdf0e10cSrcweir aSolarLock.clear(); 113*cdf0e10cSrcweir // <- SOLAR SAFE ---------------------------- 114*cdf0e10cSrcweir 115*cdf0e10cSrcweir // SAFE -> ---------------------------------- 116*cdf0e10cSrcweir WriteGuard aWriteLock(m_aLock); 117*cdf0e10cSrcweir m_sText = sText; 118*cdf0e10cSrcweir m_nRange = nRange; 119*cdf0e10cSrcweir m_nValue = 0; 120*cdf0e10cSrcweir aWriteLock.unlock(); 121*cdf0e10cSrcweir // <- SAFE ---------------------------------- 122*cdf0e10cSrcweir } 123*cdf0e10cSrcweir 124*cdf0e10cSrcweir //----------------------------------------------- 125*cdf0e10cSrcweir void SAL_CALL VCLStatusIndicator::reset() 126*cdf0e10cSrcweir throw(css::uno::RuntimeException) 127*cdf0e10cSrcweir { 128*cdf0e10cSrcweir // SOLAR SAFE -> ---------------------------- 129*cdf0e10cSrcweir ::vos::OClearableGuard aSolarLock(Application::GetSolarMutex()); 130*cdf0e10cSrcweir if (m_pStatusBar) 131*cdf0e10cSrcweir { 132*cdf0e10cSrcweir m_pStatusBar->SetProgressValue(0); 133*cdf0e10cSrcweir m_pStatusBar->SetText(String()); 134*cdf0e10cSrcweir } 135*cdf0e10cSrcweir aSolarLock.clear(); 136*cdf0e10cSrcweir // <- SOLAR SAFE ---------------------------- 137*cdf0e10cSrcweir } 138*cdf0e10cSrcweir 139*cdf0e10cSrcweir //----------------------------------------------- 140*cdf0e10cSrcweir void SAL_CALL VCLStatusIndicator::end() 141*cdf0e10cSrcweir throw(css::uno::RuntimeException) 142*cdf0e10cSrcweir { 143*cdf0e10cSrcweir // SAFE -> ---------------------------------- 144*cdf0e10cSrcweir WriteGuard aWriteLock(m_aLock); 145*cdf0e10cSrcweir m_sText = ::rtl::OUString(); 146*cdf0e10cSrcweir m_nRange = 0; 147*cdf0e10cSrcweir m_nValue = 0; 148*cdf0e10cSrcweir aWriteLock.unlock(); 149*cdf0e10cSrcweir // <- SAFE ---------------------------------- 150*cdf0e10cSrcweir 151*cdf0e10cSrcweir // SOLAR SAFE -> ---------------------------- 152*cdf0e10cSrcweir ::vos::OClearableGuard aSolarLock(Application::GetSolarMutex()); 153*cdf0e10cSrcweir if (m_pStatusBar) 154*cdf0e10cSrcweir { 155*cdf0e10cSrcweir m_pStatusBar->EndProgressMode(); 156*cdf0e10cSrcweir m_pStatusBar->Show(sal_False); 157*cdf0e10cSrcweir 158*cdf0e10cSrcweir delete m_pStatusBar; 159*cdf0e10cSrcweir m_pStatusBar = 0; 160*cdf0e10cSrcweir } 161*cdf0e10cSrcweir aSolarLock.clear(); 162*cdf0e10cSrcweir // <- SOLAR SAFE ---------------------------- 163*cdf0e10cSrcweir } 164*cdf0e10cSrcweir 165*cdf0e10cSrcweir //----------------------------------------------- 166*cdf0e10cSrcweir void SAL_CALL VCLStatusIndicator::setText(const ::rtl::OUString& sText) 167*cdf0e10cSrcweir throw(css::uno::RuntimeException) 168*cdf0e10cSrcweir { 169*cdf0e10cSrcweir // SAFE -> ---------------------------------- 170*cdf0e10cSrcweir WriteGuard aWriteLock(m_aLock); 171*cdf0e10cSrcweir m_sText = sText; 172*cdf0e10cSrcweir aWriteLock.unlock(); 173*cdf0e10cSrcweir // <- SAFE ---------------------------------- 174*cdf0e10cSrcweir 175*cdf0e10cSrcweir // SOLAR SAFE -> ---------------------------- 176*cdf0e10cSrcweir ::vos::OClearableGuard aSolarLock(Application::GetSolarMutex()); 177*cdf0e10cSrcweir if (m_pStatusBar) 178*cdf0e10cSrcweir m_pStatusBar->SetText(sText); 179*cdf0e10cSrcweir aSolarLock.clear(); 180*cdf0e10cSrcweir // <- SOLAR SAFE ---------------------------- 181*cdf0e10cSrcweir } 182*cdf0e10cSrcweir 183*cdf0e10cSrcweir //----------------------------------------------- 184*cdf0e10cSrcweir void SAL_CALL VCLStatusIndicator::setValue(sal_Int32 nValue) 185*cdf0e10cSrcweir throw(css::uno::RuntimeException) 186*cdf0e10cSrcweir { 187*cdf0e10cSrcweir // SAFE -> ---------------------------------- 188*cdf0e10cSrcweir WriteGuard aWriteLock(m_aLock); 189*cdf0e10cSrcweir 190*cdf0e10cSrcweir if (nValue <= m_nRange) 191*cdf0e10cSrcweir m_nValue = nValue; 192*cdf0e10cSrcweir else 193*cdf0e10cSrcweir m_nValue = m_nRange; 194*cdf0e10cSrcweir 195*cdf0e10cSrcweir sal_Int32 nRange = m_nRange; 196*cdf0e10cSrcweir nValue = m_nValue; 197*cdf0e10cSrcweir 198*cdf0e10cSrcweir aWriteLock.unlock(); 199*cdf0e10cSrcweir // <- SAFE ---------------------------------- 200*cdf0e10cSrcweir 201*cdf0e10cSrcweir // normalize value to fit the range of 0-100 % 202*cdf0e10cSrcweir sal_uInt16 nPercent = sal::static_int_cast< sal_uInt16 >( 203*cdf0e10cSrcweir ::std::min( 204*cdf0e10cSrcweir ((nValue*100) / ::std::max(nRange,(sal_Int32)1)), (sal_Int32)100)); 205*cdf0e10cSrcweir 206*cdf0e10cSrcweir // SOLAR SAFE -> ---------------------------- 207*cdf0e10cSrcweir ::vos::OClearableGuard aSolarLock(Application::GetSolarMutex()); 208*cdf0e10cSrcweir if (m_pStatusBar) 209*cdf0e10cSrcweir m_pStatusBar->SetProgressValue(nPercent); 210*cdf0e10cSrcweir aSolarLock.clear(); 211*cdf0e10cSrcweir // <- SOLAR SAFE ---------------------------- 212*cdf0e10cSrcweir } 213*cdf0e10cSrcweir 214*cdf0e10cSrcweir //----------------------------------------------- 215*cdf0e10cSrcweir void VCLStatusIndicator::impl_recalcLayout(Window* pStatusBar , 216*cdf0e10cSrcweir Window* pParentWindow) 217*cdf0e10cSrcweir { 218*cdf0e10cSrcweir if ( 219*cdf0e10cSrcweir (!pStatusBar ) || 220*cdf0e10cSrcweir (!pParentWindow) 221*cdf0e10cSrcweir ) 222*cdf0e10cSrcweir return; 223*cdf0e10cSrcweir 224*cdf0e10cSrcweir Size aParentSize = pParentWindow->GetSizePixel(); 225*cdf0e10cSrcweir pStatusBar->SetPosSizePixel(0, 226*cdf0e10cSrcweir 0, 227*cdf0e10cSrcweir aParentSize.Width(), 228*cdf0e10cSrcweir aParentSize.Height()); 229*cdf0e10cSrcweir } 230*cdf0e10cSrcweir 231*cdf0e10cSrcweir } // namespace framework 232