d0dbce798b
VCLXDevice, VCLXGraphics and derived class use a mutex that is really a reference to the SolarMutex. They declare a function GetMutex() to access tis reference to the SolarMutex, and the implementation use osl::SolarGuard aGuard(GetMutex()) to take a guad on the solar mutex. This is confusing because some other class in that framework also implement a GetMutex() function, but which this time return a regular Mutex. Since this particular use of GetMutex() is to get the SolarMutex, and invariably this is then used to take a Guard on the SolarMutex, all these uses are replaced by a SolarMutexGuard object, which encapsulate that behavior.
987 lines
50 KiB
C++
987 lines
50 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*************************************************************************
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* This file is part of OpenOffice.org.
|
|
*
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
* only, as published by the Free Software Foundation.
|
|
*
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License version 3 for more details
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
* <http://www.openoffice.org/license.html>
|
|
* for a copy of the LGPLv3 License.
|
|
*
|
|
************************************************************************/
|
|
|
|
#include "precompiled_toolkit.hxx"
|
|
|
|
#include "stylesettings.hxx"
|
|
#include <toolkit/awt/vclxwindow.hxx>
|
|
#include <toolkit/helper/vclunohelper.hxx>
|
|
|
|
/** === begin UNO includes === **/
|
|
#include <com/sun/star/lang/DisposedException.hpp>
|
|
/** === end UNO includes === **/
|
|
|
|
#include <cppuhelper/interfacecontainer.hxx>
|
|
#include <osl/mutex.hxx>
|
|
#include <vcl/window.hxx>
|
|
#include <vcl/settings.hxx>
|
|
#include <vcl/svapp.hxx>
|
|
|
|
//......................................................................................................................
|
|
namespace toolkit
|
|
{
|
|
//......................................................................................................................
|
|
|
|
/** === begin UNO using === **/
|
|
using ::com::sun::star::uno::Reference;
|
|
using ::com::sun::star::uno::XInterface;
|
|
using ::com::sun::star::uno::UNO_QUERY;
|
|
using ::com::sun::star::uno::UNO_QUERY_THROW;
|
|
using ::com::sun::star::uno::UNO_SET_THROW;
|
|
using ::com::sun::star::uno::Exception;
|
|
using ::com::sun::star::uno::RuntimeException;
|
|
using ::com::sun::star::uno::Any;
|
|
using ::com::sun::star::uno::makeAny;
|
|
using ::com::sun::star::uno::Sequence;
|
|
using ::com::sun::star::uno::Type;
|
|
using ::com::sun::star::lang::DisposedException;
|
|
using ::com::sun::star::lang::EventObject;
|
|
using ::com::sun::star::awt::FontDescriptor;
|
|
using ::com::sun::star::awt::XStyleChangeListener;
|
|
using ::com::sun::star::awt::FontDescriptor;
|
|
/** === end UNO using === **/
|
|
|
|
//==================================================================================================================
|
|
//= WindowStyleSettings_Data
|
|
//==================================================================================================================
|
|
struct WindowStyleSettings_Data
|
|
{
|
|
VCLXWindow* pOwningWindow;
|
|
::cppu::OInterfaceContainerHelper aStyleChangeListeners;
|
|
|
|
WindowStyleSettings_Data( ::osl::Mutex& i_rListenerMutex, VCLXWindow& i_rOwningWindow )
|
|
: pOwningWindow( &i_rOwningWindow )
|
|
,aStyleChangeListeners( i_rListenerMutex )
|
|
{
|
|
}
|
|
|
|
DECL_LINK( OnWindowEvent, const VclWindowEvent* );
|
|
};
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
IMPL_LINK( WindowStyleSettings_Data, OnWindowEvent, const VclWindowEvent*, i_pEvent )
|
|
{
|
|
if ( !i_pEvent || ( i_pEvent->GetId() != VCLEVENT_WINDOW_DATACHANGED ) )
|
|
return 0L;
|
|
const DataChangedEvent* pDataChangedEvent = static_cast< const DataChangedEvent* >( i_pEvent->GetData() );
|
|
if ( !pDataChangedEvent || ( pDataChangedEvent->GetType() != DATACHANGED_SETTINGS ) )
|
|
return 0L;
|
|
if ( ( pDataChangedEvent->GetFlags() & SETTINGS_STYLE ) == 0 )
|
|
return 0L;
|
|
|
|
EventObject aEvent( *pOwningWindow );
|
|
aStyleChangeListeners.notifyEach( &XStyleChangeListener::styleSettingsChanged, aEvent );
|
|
return 1L;
|
|
}
|
|
|
|
//==================================================================================================================
|
|
//= StyleMethodGuard
|
|
//==================================================================================================================
|
|
class StyleMethodGuard
|
|
{
|
|
public:
|
|
StyleMethodGuard( WindowStyleSettings_Data& i_rData )
|
|
{
|
|
if ( i_rData.pOwningWindow == NULL )
|
|
throw DisposedException();
|
|
}
|
|
|
|
~StyleMethodGuard()
|
|
{
|
|
}
|
|
|
|
private:
|
|
SolarMutexGuard m_aGuard;
|
|
};
|
|
|
|
//==================================================================================================================
|
|
//= WindowStyleSettings
|
|
//==================================================================================================================
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
WindowStyleSettings::WindowStyleSettings(::osl::Mutex& i_rListenerMutex, VCLXWindow& i_rOwningWindow )
|
|
:m_pData( new WindowStyleSettings_Data(i_rListenerMutex, i_rOwningWindow ) )
|
|
{
|
|
Window* pWindow = i_rOwningWindow.GetWindow();
|
|
if ( !pWindow )
|
|
throw new RuntimeException();
|
|
pWindow->AddEventListener( LINK( m_pData.get(), WindowStyleSettings_Data, OnWindowEvent ) );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
WindowStyleSettings::~WindowStyleSettings()
|
|
{
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void WindowStyleSettings::dispose()
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
|
|
Window* pWindow = m_pData->pOwningWindow->GetWindow();
|
|
OSL_ENSURE( pWindow, "WindowStyleSettings::dispose: window has been reset before we could revoke the listener!" );
|
|
if ( pWindow )
|
|
pWindow->RemoveEventListener( LINK( m_pData.get(), WindowStyleSettings_Data, OnWindowEvent ) );
|
|
|
|
EventObject aEvent( *this );
|
|
m_pData->aStyleChangeListeners.disposeAndClear( aEvent );
|
|
|
|
m_pData->pOwningWindow = NULL;
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
namespace
|
|
{
|
|
sal_Int32 lcl_getStyleColor( WindowStyleSettings_Data& i_rData, Color const & (StyleSettings::*i_pGetter)() const )
|
|
{
|
|
const Window* pWindow = i_rData.pOwningWindow->GetWindow();
|
|
const AllSettings aAllSettings = pWindow->GetSettings();
|
|
const StyleSettings aStyleSettings = aAllSettings.GetStyleSettings();
|
|
return (aStyleSettings.*i_pGetter)().GetColor();
|
|
}
|
|
|
|
void lcl_setStyleColor( WindowStyleSettings_Data& i_rData, void (StyleSettings::*i_pSetter)( Color const & ), const sal_Int32 i_nColor )
|
|
{
|
|
Window* pWindow = i_rData.pOwningWindow->GetWindow();
|
|
AllSettings aAllSettings = pWindow->GetSettings();
|
|
StyleSettings aStyleSettings = aAllSettings.GetStyleSettings();
|
|
(aStyleSettings.*i_pSetter)( Color( i_nColor ) );
|
|
aAllSettings.SetStyleSettings( aStyleSettings );
|
|
pWindow->SetSettings( aAllSettings );
|
|
}
|
|
|
|
FontDescriptor lcl_getStyleFont( WindowStyleSettings_Data& i_rData, Font const & (StyleSettings::*i_pGetter)() const )
|
|
{
|
|
const Window* pWindow = i_rData.pOwningWindow->GetWindow();
|
|
const AllSettings aAllSettings = pWindow->GetSettings();
|
|
const StyleSettings aStyleSettings = aAllSettings.GetStyleSettings();
|
|
return VCLUnoHelper::CreateFontDescriptor( (aStyleSettings.*i_pGetter)() );
|
|
}
|
|
|
|
void lcl_setStyleFont( WindowStyleSettings_Data& i_rData, void (StyleSettings::*i_pSetter)( Font const &),
|
|
Font const & (StyleSettings::*i_pGetter)() const, const FontDescriptor& i_rFont )
|
|
{
|
|
Window* pWindow = i_rData.pOwningWindow->GetWindow();
|
|
AllSettings aAllSettings = pWindow->GetSettings();
|
|
StyleSettings aStyleSettings = aAllSettings.GetStyleSettings();
|
|
const Font aNewFont = VCLUnoHelper::CreateFont( i_rFont, (aStyleSettings.*i_pGetter)() );
|
|
(aStyleSettings.*i_pSetter)( aNewFont );
|
|
aAllSettings.SetStyleSettings( aStyleSettings );
|
|
pWindow->SetSettings( aAllSettings );
|
|
}
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getActiveBorderColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetActiveBorderColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setActiveBorderColor( ::sal_Int32 _activebordercolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetActiveBorderColor, _activebordercolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getActiveColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetActiveColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setActiveColor( ::sal_Int32 _activecolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetActiveColor, _activecolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getActiveTabColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetActiveTabColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setActiveTabColor( ::sal_Int32 _activetabcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetActiveTabColor, _activetabcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getActiveTextColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetActiveTextColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setActiveTextColor( ::sal_Int32 _activetextcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetActiveTextColor, _activetextcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getButtonRolloverTextColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetButtonRolloverTextColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setButtonRolloverTextColor( ::sal_Int32 _buttonrollovertextcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetButtonRolloverTextColor, _buttonrollovertextcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getButtonTextColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetButtonTextColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setButtonTextColor( ::sal_Int32 _buttontextcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetButtonTextColor, _buttontextcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getCheckedColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetCheckedColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setCheckedColor( ::sal_Int32 _checkedcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetCheckedColor, _checkedcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getDarkShadowColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetDarkShadowColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setDarkShadowColor( ::sal_Int32 _darkshadowcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetDarkShadowColor, _darkshadowcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getDeactiveBorderColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetDeactiveBorderColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setDeactiveBorderColor( ::sal_Int32 _deactivebordercolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetDeactiveBorderColor, _deactivebordercolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getDeactiveColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetDeactiveColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setDeactiveColor( ::sal_Int32 _deactivecolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetDeactiveColor, _deactivecolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getDeactiveTextColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetDeactiveTextColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setDeactiveTextColor( ::sal_Int32 _deactivetextcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetDeactiveTextColor, _deactivetextcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getDialogColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetDialogColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setDialogColor( ::sal_Int32 _dialogcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetDialogColor, _dialogcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getDialogTextColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetDialogTextColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setDialogTextColor( ::sal_Int32 _dialogtextcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetDialogTextColor, _dialogtextcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getDisableColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetDisableColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setDisableColor( ::sal_Int32 _disablecolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetDisableColor, _disablecolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getFaceColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetFaceColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setFaceColor( ::sal_Int32 _facecolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetFaceColor, _facecolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getFaceGradientColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
const Window* pWindow = m_pData->pOwningWindow->GetWindow();
|
|
const AllSettings aAllSettings = pWindow->GetSettings();
|
|
const StyleSettings aStyleSettings = aAllSettings.GetStyleSettings();
|
|
return aStyleSettings.GetFaceGradientColor().GetColor();
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getFieldColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetFieldColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setFieldColor( ::sal_Int32 _fieldcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetFieldColor, _fieldcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getFieldRolloverTextColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetFieldRolloverTextColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setFieldRolloverTextColor( ::sal_Int32 _fieldrollovertextcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetFieldRolloverTextColor, _fieldrollovertextcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getFieldTextColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetFieldTextColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setFieldTextColor( ::sal_Int32 _fieldtextcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetFieldTextColor, _fieldtextcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getGroupTextColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetGroupTextColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setGroupTextColor( ::sal_Int32 _grouptextcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetGroupTextColor, _grouptextcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getHelpColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetHelpColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setHelpColor( ::sal_Int32 _helpcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetHelpColor, _helpcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getHelpTextColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetHelpTextColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setHelpTextColor( ::sal_Int32 _helptextcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetHelpTextColor, _helptextcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getHighlightColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetHighlightColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setHighlightColor( ::sal_Int32 _highlightcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetHighlightColor, _highlightcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getHighlightTextColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetHighlightTextColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setHighlightTextColor( ::sal_Int32 _highlighttextcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetHighlightTextColor, _highlighttextcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getInactiveTabColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetInactiveTabColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setInactiveTabColor( ::sal_Int32 _inactivetabcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetInactiveTabColor, _inactivetabcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getInfoTextColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetInfoTextColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setInfoTextColor( ::sal_Int32 _infotextcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetInfoTextColor, _infotextcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getLabelTextColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetLabelTextColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setLabelTextColor( ::sal_Int32 _labeltextcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetLabelTextColor, _labeltextcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getLightColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetLightColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setLightColor( ::sal_Int32 _lightcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetLightColor, _lightcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getMenuBarColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetMenuBarColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setMenuBarColor( ::sal_Int32 _menubarcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetMenuBarColor, _menubarcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getMenuBarTextColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetMenuBarTextColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setMenuBarTextColor( ::sal_Int32 _menubartextcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetMenuBarTextColor, _menubartextcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getMenuBorderColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetMenuBorderColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setMenuBorderColor( ::sal_Int32 _menubordercolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetMenuBorderColor, _menubordercolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getMenuColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetMenuColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setMenuColor( ::sal_Int32 _menucolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetMenuColor, _menucolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getMenuHighlightColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetMenuHighlightColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setMenuHighlightColor( ::sal_Int32 _menuhighlightcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetMenuHighlightColor, _menuhighlightcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getMenuHighlightTextColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetMenuHighlightTextColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setMenuHighlightTextColor( ::sal_Int32 _menuhighlighttextcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetMenuHighlightTextColor, _menuhighlighttextcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getMenuTextColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetMenuTextColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setMenuTextColor( ::sal_Int32 _menutextcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetMenuTextColor, _menutextcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getMonoColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetMonoColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setMonoColor( ::sal_Int32 _monocolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetMonoColor, _monocolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getRadioCheckTextColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetRadioCheckTextColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setRadioCheckTextColor( ::sal_Int32 _radiochecktextcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetRadioCheckTextColor, _radiochecktextcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getSeparatorColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
const Window* pWindow = m_pData->pOwningWindow->GetWindow();
|
|
const AllSettings aAllSettings = pWindow->GetSettings();
|
|
const StyleSettings aStyleSettings = aAllSettings.GetStyleSettings();
|
|
return aStyleSettings.GetSeparatorColor().GetColor();
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getShadowColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetShadowColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setShadowColor( ::sal_Int32 _shadowcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetShadowColor, _shadowcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getWindowColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetWindowColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setWindowColor( ::sal_Int32 _windowcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetWindowColor, _windowcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getWindowTextColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetWindowTextColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setWindowTextColor( ::sal_Int32 _windowtextcolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetWindowTextColor, _windowtextcolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Int32 SAL_CALL WindowStyleSettings::getWorkspaceColor() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleColor( *m_pData, &StyleSettings::GetWorkspaceColor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setWorkspaceColor( ::sal_Int32 _workspacecolor ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleColor( *m_pData, &StyleSettings::SetWorkspaceColor, _workspacecolor );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
::sal_Bool SAL_CALL WindowStyleSettings::getHighContrastMode() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
const Window* pWindow = m_pData->pOwningWindow->GetWindow();
|
|
const AllSettings aAllSettings = pWindow->GetSettings();
|
|
const StyleSettings aStyleSettings = aAllSettings.GetStyleSettings();
|
|
return aStyleSettings.GetHighContrastMode();
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setHighContrastMode( ::sal_Bool _highcontrastmode ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
Window* pWindow = m_pData->pOwningWindow->GetWindow();
|
|
AllSettings aAllSettings = pWindow->GetSettings();
|
|
StyleSettings aStyleSettings = aAllSettings.GetStyleSettings();
|
|
aStyleSettings.SetHighContrastMode( _highcontrastmode );
|
|
aAllSettings.SetStyleSettings( aStyleSettings );
|
|
pWindow->SetSettings( aAllSettings );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
FontDescriptor SAL_CALL WindowStyleSettings::getApplicationFont() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleFont( *m_pData, &StyleSettings::GetAppFont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setApplicationFont( const FontDescriptor& _applicationfont ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleFont( *m_pData, &StyleSettings::SetAppFont, &StyleSettings::GetAppFont, _applicationfont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
FontDescriptor SAL_CALL WindowStyleSettings::getHelpFont() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleFont( *m_pData, &StyleSettings::GetHelpFont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setHelpFont( const FontDescriptor& _helpfont ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleFont( *m_pData, &StyleSettings::SetHelpFont, &StyleSettings::GetHelpFont, _helpfont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
FontDescriptor SAL_CALL WindowStyleSettings::getTitleFont() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleFont( *m_pData, &StyleSettings::GetTitleFont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setTitleFont( const FontDescriptor& _titlefont ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleFont( *m_pData, &StyleSettings::SetTitleFont, &StyleSettings::GetTitleFont, _titlefont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
FontDescriptor SAL_CALL WindowStyleSettings::getFloatTitleFont() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleFont( *m_pData, &StyleSettings::GetFloatTitleFont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setFloatTitleFont( const FontDescriptor& _floattitlefont ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleFont( *m_pData, &StyleSettings::SetFloatTitleFont, &StyleSettings::GetFloatTitleFont, _floattitlefont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
FontDescriptor SAL_CALL WindowStyleSettings::getMenuFont() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleFont( *m_pData, &StyleSettings::GetMenuFont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setMenuFont( const FontDescriptor& _menufont ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleFont( *m_pData, &StyleSettings::SetMenuFont, &StyleSettings::GetMenuFont, _menufont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
FontDescriptor SAL_CALL WindowStyleSettings::getToolFont() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleFont( *m_pData, &StyleSettings::GetToolFont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setToolFont( const FontDescriptor& _toolfont ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleFont( *m_pData, &StyleSettings::SetToolFont, &StyleSettings::GetToolFont, _toolfont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
FontDescriptor SAL_CALL WindowStyleSettings::getGroupFont() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleFont( *m_pData, &StyleSettings::GetGroupFont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setGroupFont( const FontDescriptor& _groupfont ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleFont( *m_pData, &StyleSettings::SetGroupFont, &StyleSettings::GetGroupFont, _groupfont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
FontDescriptor SAL_CALL WindowStyleSettings::getLabelFont() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleFont( *m_pData, &StyleSettings::GetLabelFont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setLabelFont( const FontDescriptor& _labelfont ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleFont( *m_pData, &StyleSettings::SetLabelFont, &StyleSettings::GetLabelFont, _labelfont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
FontDescriptor SAL_CALL WindowStyleSettings::getInfoFont() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleFont( *m_pData, &StyleSettings::GetInfoFont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setInfoFont( const FontDescriptor& _infofont ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleFont( *m_pData, &StyleSettings::SetInfoFont, &StyleSettings::GetInfoFont, _infofont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
FontDescriptor SAL_CALL WindowStyleSettings::getRadioCheckFont() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleFont( *m_pData, &StyleSettings::GetRadioCheckFont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setRadioCheckFont( const FontDescriptor& _radiocheckfont ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleFont( *m_pData, &StyleSettings::SetRadioCheckFont, &StyleSettings::GetRadioCheckFont, _radiocheckfont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
FontDescriptor SAL_CALL WindowStyleSettings::getPushButtonFont() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleFont( *m_pData, &StyleSettings::GetPushButtonFont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setPushButtonFont( const FontDescriptor& _pushbuttonfont ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleFont( *m_pData, &StyleSettings::SetPushButtonFont, &StyleSettings::GetPushButtonFont, _pushbuttonfont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
FontDescriptor SAL_CALL WindowStyleSettings::getFieldFont() throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
return lcl_getStyleFont( *m_pData, &StyleSettings::GetFieldFont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::setFieldFont( const FontDescriptor& _fieldfont ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
lcl_setStyleFont( *m_pData, &StyleSettings::SetFieldFont, &StyleSettings::GetFieldFont, _fieldfont );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::addStyleChangeListener( const Reference< XStyleChangeListener >& i_rListener ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
if ( i_rListener.is() )
|
|
m_pData->aStyleChangeListeners.addInterface( i_rListener );
|
|
}
|
|
|
|
//------------------------------------------------------------------------------------------------------------------
|
|
void SAL_CALL WindowStyleSettings::removeStyleChangeListener( const Reference< XStyleChangeListener >& i_rListener ) throw (RuntimeException)
|
|
{
|
|
StyleMethodGuard aGuard( *m_pData );
|
|
if ( i_rListener.is() )
|
|
m_pData->aStyleChangeListeners.removeInterface( i_rListener );
|
|
}
|
|
|
|
//......................................................................................................................
|
|
} // namespace toolkit
|
|
//......................................................................................................................
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|