/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include "newerverwarn.hxx" #include "newerverwarn.hrc" #include "ids.hrc" #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace beans = ::com::sun::star::beans; namespace frame = ::com::sun::star::frame; namespace lang = ::com::sun::star::lang; namespace uno = ::com::sun::star::uno; namespace util = ::com::sun::star::util; namespace container = ::com::sun::star::container; using namespace com::sun::star::system; #define DEFINE_CONST_UNICODE( CONSTASCII ) ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( CONSTASCII ) ) namespace uui { NewerVersionWarningDialog::NewerVersionWarningDialog( Window* pParent, const ::rtl::OUString& rVersion, ResMgr& rResMgr ) : ModalDialog( pParent, ResId( RID_DLG_NEWER_VERSION_WARNING, rResMgr ) ), m_aImage ( this, ResId( FI_IMAGE, rResMgr ) ), m_aInfoText ( this, ResId( FT_INFO, rResMgr ) ), m_aButtonLine ( this, ResId( FL_BUTTON, rResMgr ) ), m_aUpdateBtn ( this, ResId( PB_UPDATE, rResMgr ) ), m_aLaterBtn ( this, ResId( PB_LATER, rResMgr ) ), m_sVersion ( rVersion ) { FreeResource(); m_aUpdateBtn.SetClickHdl( LINK( this, NewerVersionWarningDialog, UpdateHdl ) ); m_aLaterBtn.SetClickHdl( LINK( this, NewerVersionWarningDialog, LaterHdl ) ); InitButtonWidth(); } NewerVersionWarningDialog::~NewerVersionWarningDialog() { } IMPL_LINK_NOARG(NewerVersionWarningDialog, UpdateHdl) { // detect execute path ::rtl::OUString sProgramPath; osl_getExecutableFile( &sProgramPath.pData ); sal_uInt32 nLastIndex = sProgramPath.lastIndexOf( '/' ); if ( nLastIndex > 0 ) sProgramPath = sProgramPath.copy( 0, nLastIndex + 1 ); // read keys from soffice.ini (sofficerc) ::rtl::OUString sIniFileName = sProgramPath; sIniFileName += ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( SAL_CONFIGFILE( "version" ) ) ); ::rtl::Bootstrap aIniFile( sIniFileName ); ::rtl::OUString sNotifyURL; aIniFile.getFrom( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "ODFNotifyURL" ) ), sNotifyURL ); try { if ( !sNotifyURL.isEmpty() && !m_sVersion.isEmpty() ) { uno::Reference< lang::XMultiServiceFactory > xSMGR = ::comphelper::getProcessServiceFactory(); uno::Reference< XSystemShellExecute > xSystemShell( xSMGR->createInstance( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.system.SystemShellExecute" ) ) ), uno::UNO_QUERY_THROW ); sNotifyURL += m_sVersion; if ( xSystemShell.is() && !sNotifyURL.isEmpty() ) { xSystemShell->execute( sNotifyURL, ::rtl::OUString(), SystemShellExecuteFlags::URIS_ONLY ); } } else { ::comphelper::ComponentContext aContext( ::comphelper::getProcessServiceFactory() ); uno::Reference < container::XNameReplace > xUpdateConfig( aContext.createComponent( "com.sun.star.setup.UpdateCheckConfig" ), uno::UNO_QUERY_THROW ); sal_Bool bUpdateCheckEnabled = sal_False; OSL_VERIFY( xUpdateConfig->getByName( DEFINE_CONST_UNICODE( "AutoCheckEnabled" ) ) >>= bUpdateCheckEnabled ); // TODO: do we need to respect the bUpdateCheckEnabled flag? Finally, its meaning is "are automatic // updates enabled", but this here is not an automatic update, but one triggered explicitly by the user. uno::Any aVal = ::comphelper::ConfigurationHelper::readDirectKey( aContext.getLegacyServiceFactory(), DEFINE_CONST_UNICODE("org.openoffice.Office.Addons/"), DEFINE_CONST_UNICODE("AddonUI/OfficeHelp/UpdateCheckJob"), DEFINE_CONST_UNICODE("URL"), ::comphelper::ConfigurationHelper::E_READONLY ); util::URL aURL; if ( aVal >>= aURL.Complete ) { uno::Reference< util::XURLTransformer > xTransformer( util::URLTransformer::create(aContext.getUNOContext()) ); xTransformer->parseStrict( aURL ); uno::Reference < frame::XDesktop > xDesktop( aContext.createComponent( "com.sun.star.frame.Desktop" ), uno::UNO_QUERY_THROW ); uno::Reference< frame::XDispatchProvider > xDispatchProvider( xDesktop->getCurrentFrame(), uno::UNO_QUERY ); if ( !xDispatchProvider.is() ) xDispatchProvider = uno::Reference < frame::XDispatchProvider > ( xDesktop, uno::UNO_QUERY ); uno::Reference< frame::XDispatch > xDispatch = xDispatchProvider->queryDispatch( aURL, rtl::OUString(), 0 ); if ( xDispatch.is() ) xDispatch->dispatch( aURL, uno::Sequence< beans::PropertyValue >() ); } } } catch( const uno::Exception& ) { DBG_UNHANDLED_EXCEPTION(); } EndDialog( RET_OK ); return 0; } IMPL_LINK_NOARG(NewerVersionWarningDialog, LaterHdl) { EndDialog( RET_ASK_LATER ); return 0; } void NewerVersionWarningDialog::InitButtonWidth() { // one button too small for its text? long nBtnTextWidth = m_aUpdateBtn.GetCtrlTextWidth( m_aUpdateBtn.GetText() ); long nTemp = m_aLaterBtn.GetCtrlTextWidth( m_aLaterBtn.GetText() ); if ( nTemp > nBtnTextWidth ) nBtnTextWidth = nTemp; nBtnTextWidth = nBtnTextWidth * 115 / 100; // a little offset long nMaxBtnWidth = LogicToPixel( Size( MAX_BUTTON_WIDTH, 0 ), MAP_APPFONT ).Width(); nBtnTextWidth = std::min( nBtnTextWidth, nMaxBtnWidth ); long nButtonWidth = m_aUpdateBtn .GetSizePixel().Width(); if ( nBtnTextWidth > nButtonWidth ) { long nDelta = nBtnTextWidth - nButtonWidth; Point aNewPos = m_aUpdateBtn.GetPosPixel(); aNewPos.X() -= 2*nDelta; Size aNewSize = m_aUpdateBtn.GetSizePixel(); aNewSize.Width() += nDelta; m_aUpdateBtn.SetPosSizePixel( aNewPos, aNewSize ); aNewPos = m_aLaterBtn.GetPosPixel(); aNewPos.X() -= nDelta; m_aLaterBtn.SetPosSizePixel( aNewPos, aNewSize ); } } } // end of namespace uui /* vim:set shiftwidth=4 softtabstop=4 expandtab: */