LCOV - code coverage report
Current view: top level - cui/source/options - optmemory.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 0 103 0.0 %
Date: 2015-06-13 12:38:46 Functions: 0 18 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #include "sal/config.h"
      21             : 
      22             : #include <algorithm>
      23             : 
      24             : #include <officecfg/Office/Common.hxx>
      25             : #include <svtools/langtab.hxx>
      26             : #include <svl/zforlist.hxx>
      27             : #include <svtools/grfmgr.hxx>
      28             : #include <svl/flagitem.hxx>
      29             : #include <sfx2/dispatch.hxx>
      30             : #include <unotools/lingucfg.hxx>
      31             : #include <svl/szitem.hxx>
      32             : #include <sfx2/viewsh.hxx>
      33             : #include <sfx2/viewfrm.hxx>
      34             : #include <vcl/msgbox.hxx>
      35             : #include <rtl/math.hxx>
      36             : #include <unotools/useroptions.hxx>
      37             : #include <unotools/fontoptions.hxx>
      38             : #include <svtools/menuoptions.hxx>
      39             : #include <svl/cjkoptions.hxx>
      40             : #include <svtools/miscopt.hxx>
      41             : #include <unotools/syslocaleoptions.hxx>
      42             : #include <svtools/helpopt.hxx>
      43             : #include <unotools/configitem.hxx>
      44             : #include <sfx2/objsh.hxx>
      45             : #include <comphelper/types.hxx>
      46             : #include <editeng/unolingu.hxx>
      47             : #include <editeng/langitem.hxx>
      48             : #include "cuioptgenrl.hxx"
      49             : #include "optpath.hxx"
      50             : #include "optsave.hxx"
      51             : #include "optlingu.hxx"
      52             : #include <svx/xpool.hxx>
      53             : #include <svx/dlgutil.hxx>
      54             : #include "cuitabarea.hxx"
      55             : #include "optmemory.hxx"
      56             : #include <svx/ofaitem.hxx>
      57             : #include <cuires.hrc>
      58             : #include "helpid.hrc"
      59             : #include <dialmgr.hxx>
      60             : #include <limits>
      61             : 
      62             : #include <config_vclplug.h>
      63             : 
      64             : using namespace ::com::sun::star::uno;
      65             : using namespace ::com::sun::star::lang;
      66             : using namespace ::com::sun::star::beans;
      67             : using namespace ::utl;
      68             : using namespace ::sfx2;
      69             : 
      70             : 
      71             : #define NF2BYTES        104857.6                        // 2^20/10, used for M_pNfGraphicObjectCache-unit -> Byte
      72             : #define BYTES2NF        (1.0/NF2BYTES)                  // 10/2^20
      73             : 
      74             : 
      75           0 : sal_Int32 OfaMemoryOptionsPage::GetNfGraphicCacheVal() const
      76             : {
      77           0 :     return m_pNfGraphicCache->GetValue() << 20;
      78             : }
      79             : 
      80           0 : inline void OfaMemoryOptionsPage::SetNfGraphicCacheVal( long nSizeInBytes )
      81             : {
      82           0 :     m_pNfGraphicCache->SetValue( nSizeInBytes >> 20 );
      83           0 : }
      84             : 
      85           0 : long OfaMemoryOptionsPage::GetNfGraphicObjectCacheVal() const
      86             : {
      87           0 :     return long( ::rtl::math::round( double( m_pNfGraphicObjectCache->GetValue() ) * NF2BYTES ) );
      88             : }
      89             : 
      90           0 : void OfaMemoryOptionsPage::SetNfGraphicObjectCacheVal( long nSizeInBytes )
      91             : {
      92           0 :     m_pNfGraphicObjectCache->SetValue( long( ::rtl::math::round( double( nSizeInBytes ) * BYTES2NF ) ) );
      93           0 : }
      94             : 
      95           0 : inline void OfaMemoryOptionsPage::SetNfGraphicObjectCacheMax( long nSizeInBytes )
      96             : {
      97           0 :     m_pNfGraphicObjectCache->SetMax( long( double( nSizeInBytes ) * BYTES2NF ) );
      98           0 : }
      99             : 
     100           0 : inline void OfaMemoryOptionsPage::SetNfGraphicObjectCacheLast( long nSizeInBytes )
     101             : {
     102           0 :     m_pNfGraphicObjectCache->SetLast( long( double( nSizeInBytes ) * BYTES2NF ) );
     103           0 : }
     104             : 
     105           0 : SfxTabPage::sfxpg OfaMemoryOptionsPage::DeactivatePage( SfxItemSet* _pSet )
     106             : {
     107           0 :     if ( _pSet )
     108           0 :         FillItemSet( _pSet );
     109           0 :     return LEAVE_PAGE;
     110             : }
     111             : 
     112             : 
     113             : 
     114           0 : OfaMemoryOptionsPage::OfaMemoryOptionsPage(vcl::Window* pParent, const SfxItemSet& rSet)
     115           0 :     : SfxTabPage(pParent, "OptMemoryPage", "cui/ui/optmemorypage.ui", &rSet)
     116             : {
     117           0 :     get(m_pUndoEdit, "undo");
     118           0 :     get(m_pNfGraphicCache, "graphiccache");
     119           0 :     m_pNfGraphicCache->SetMax(std::numeric_limits< long >::max() >> 20);
     120           0 :     get(m_pNfGraphicObjectCache, "objectcache");
     121           0 :     get(m_pTfGraphicObjectTime,"objecttime");
     122           0 :     get(m_pNfOLECache, "olecache");
     123           0 :     get(m_pQuickStarterFrame, "quickstarter");
     124             : 
     125             : #if defined(UNX)
     126           0 :     get(m_pQuickLaunchCB, "systray");
     127             : #else
     128             :     get(m_pQuickLaunchCB, "quicklaunch");
     129             : #endif
     130           0 :     m_pQuickLaunchCB->Show();
     131             : 
     132             :     //Only available in Win or if building the gtk systray
     133             : #if !defined(WNT) && ! ENABLE_GTK
     134             :     m_pQuickStarterFrame->Hide();
     135             : #endif
     136             : 
     137           0 :     m_pTfGraphicObjectTime->SetExtFormat( EXTTIMEF_24H_SHORT );
     138             : 
     139           0 :     SetExchangeSupport();
     140             : 
     141           0 :     m_pNfGraphicCache->SetModifyHdl( LINK( this, OfaMemoryOptionsPage, GraphicCacheConfigHdl ) );
     142           0 : }
     143             : 
     144           0 : OfaMemoryOptionsPage::~OfaMemoryOptionsPage()
     145             : {
     146           0 :     disposeOnce();
     147           0 : }
     148             : 
     149           0 : void OfaMemoryOptionsPage::dispose()
     150             : {
     151           0 :     m_pUndoEdit.clear();
     152           0 :     m_pNfGraphicCache.clear();
     153           0 :     m_pNfGraphicObjectCache.clear();
     154           0 :     m_pTfGraphicObjectTime.clear();
     155           0 :     m_pNfOLECache.clear();
     156           0 :     m_pQuickStarterFrame.clear();
     157           0 :     m_pQuickLaunchCB.clear();
     158           0 :     SfxTabPage::dispose();
     159           0 : }
     160             : 
     161           0 : VclPtr<SfxTabPage> OfaMemoryOptionsPage::Create( vcl::Window* pParent, const SfxItemSet* rAttrSet )
     162             : {
     163           0 :     return VclPtr<OfaMemoryOptionsPage>::Create( pParent, *rAttrSet );
     164             : }
     165             : 
     166           0 : bool OfaMemoryOptionsPage::FillItemSet( SfxItemSet* rSet )
     167             : {
     168           0 :     bool bModified = false;
     169             : 
     170             :     std::shared_ptr< comphelper::ConfigurationChanges > batch(
     171           0 :         comphelper::ConfigurationChanges::create());
     172             : 
     173           0 :     if ( m_pUndoEdit->IsValueChangedFromSaved() )
     174             :         officecfg::Office::Common::Undo::Steps::set(
     175           0 :             m_pUndoEdit->GetValue(), batch);
     176             : 
     177             :     // GraphicCache
     178           0 :     sal_Int32 totalCacheSize = GetNfGraphicCacheVal();
     179             :     officecfg::Office::Common::Cache::GraphicManager::TotalCacheSize::set(
     180           0 :         totalCacheSize, batch);
     181           0 :     sal_Int32 objectCacheSize = GetNfGraphicObjectCacheVal();
     182             :     officecfg::Office::Common::Cache::GraphicManager::ObjectCacheSize::set(
     183           0 :         objectCacheSize, batch);
     184             : 
     185           0 :     const tools::Time aTime( m_pTfGraphicObjectTime->GetTime() );
     186             :     sal_Int32 objectReleaseTime =
     187           0 :         aTime.GetSec() + aTime.GetMin() * 60 + aTime.GetHour() * 3600;
     188             :     officecfg::Office::Common::Cache::GraphicManager::ObjectReleaseTime::set(
     189           0 :         objectReleaseTime, batch);
     190             : 
     191             :     // create a dummy graphic object to get access to the common GraphicManager
     192           0 :     GraphicObject       aDummyObject;
     193           0 :     GraphicManager&     rGrfMgr = aDummyObject.GetGraphicManager();
     194             : 
     195           0 :     rGrfMgr.SetMaxCacheSize(totalCacheSize);
     196           0 :     rGrfMgr.SetMaxObjCacheSize(objectCacheSize, true);
     197           0 :     rGrfMgr.SetCacheTimeout(objectReleaseTime);
     198             : 
     199             :     // OLECache
     200             :     officecfg::Office::Common::Cache::Writer::OLE_Objects::set(
     201           0 :         m_pNfOLECache->GetValue(), batch);
     202             :     officecfg::Office::Common::Cache::DrawingEngine::OLE_Objects::set(
     203           0 :         m_pNfOLECache->GetValue(), batch);
     204             : 
     205           0 :     batch->commit();
     206             : 
     207           0 :     if( m_pQuickLaunchCB->IsValueChangedFromSaved())
     208             :     {
     209           0 :         rSet->Put(SfxBoolItem(SID_ATTR_QUICKLAUNCHER, m_pQuickLaunchCB->IsChecked()));
     210           0 :         bModified = true;
     211             :     }
     212             : 
     213           0 :     return bModified;
     214             : }
     215             : 
     216             : 
     217             : 
     218           0 : void OfaMemoryOptionsPage::Reset( const SfxItemSet* rSet )
     219             : {
     220             :     const SfxPoolItem*  pItem;
     221             : 
     222           0 :     m_pUndoEdit->SetValue(officecfg::Office::Common::Undo::Steps::get());
     223           0 :     m_pUndoEdit->SaveValue();
     224             : 
     225             :     // GraphicCache
     226             :     long n =
     227           0 :         officecfg::Office::Common::Cache::GraphicManager::TotalCacheSize::get();
     228           0 :     SetNfGraphicCacheVal( n );
     229             :     SetNfGraphicObjectCacheVal(
     230             :         std::min(
     231           0 :             GetNfGraphicCacheVal(),
     232             :             (officecfg::Office::Common::Cache::GraphicManager::ObjectCacheSize::
     233           0 :              get())));
     234             : 
     235             :     sal_Int32 nTime =
     236             :         officecfg::Office::Common::Cache::GraphicManager::ObjectReleaseTime::
     237           0 :         get();
     238           0 :     tools::Time aTime( (sal_uInt16)( nTime / 3600 ), (sal_uInt16)( ( nTime % 3600 ) / 60 ), (sal_uInt16)( ( nTime % 3600 ) % 60 ) );
     239           0 :     m_pTfGraphicObjectTime->SetTime( aTime );
     240             : 
     241           0 :     GraphicCacheConfigHdl(m_pNfGraphicCache);
     242             : 
     243             :     // OLECache
     244           0 :     m_pNfOLECache->SetValue(
     245             :         std::max(
     246           0 :             officecfg::Office::Common::Cache::Writer::OLE_Objects::get(),
     247             :             (officecfg::Office::Common::Cache::DrawingEngine::OLE_Objects::
     248           0 :              get())));
     249             : 
     250           0 :     SfxItemState eState = rSet->GetItemState( SID_ATTR_QUICKLAUNCHER, false, &pItem );
     251           0 :     if ( SfxItemState::SET == eState )
     252           0 :         m_pQuickLaunchCB->Check( static_cast<const SfxBoolItem*>(pItem)->GetValue() );
     253           0 :     else if ( SfxItemState::DISABLED == eState )
     254             :     {
     255             :         // quickstart not installed
     256           0 :         m_pQuickStarterFrame->Hide();
     257             :     }
     258             : 
     259           0 :     m_pQuickLaunchCB->SaveValue();
     260           0 : }
     261             : 
     262             : 
     263             : 
     264           0 : IMPL_LINK_NOARG(OfaMemoryOptionsPage, GraphicCacheConfigHdl)
     265             : {
     266           0 :     sal_Int32 n = GetNfGraphicCacheVal();
     267           0 :     SetNfGraphicObjectCacheMax( n );
     268           0 :     SetNfGraphicObjectCacheLast( n );
     269             : 
     270           0 :     if( GetNfGraphicObjectCacheVal() > n )
     271           0 :         SetNfGraphicObjectCacheVal( n );
     272             : 
     273           0 :     return 0;
     274           0 : }
     275             : 
     276             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11