forked from amazingfate/loongoffice
Instead of a mix of sal_uIntPtr, sal_uLong, int, and so on. Also change CONTAINER_ENTRY_NOTFOUND=ULONG_MAX to SAL_MAX_SIZE as return value in case of failure and in the related tests. Change-Id: Ie778a849253b4be84fbcdab9557b7c4240233927
1058 lines
34 KiB
C++
1058 lines
34 KiB
C++
/* -*- 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 <string>
|
|
|
|
#include <vcl/toolbox.hxx>
|
|
#include <vcl/field.hxx>
|
|
#include <vcl/fixed.hxx>
|
|
#include <vcl/msgbox.hxx>
|
|
#include <svl/intitem.hxx>
|
|
#include <svl/eitem.hxx>
|
|
#include <svl/whiter.hxx>
|
|
#include <sfx2/app.hxx>
|
|
#include <sfx2/dispatch.hxx>
|
|
#include <sfx2/objsh.hxx>
|
|
#include <sfx2/viewsh.hxx>
|
|
#include <sfx2/request.hxx>
|
|
#include <sfx2/basedlgs.hxx>
|
|
#include <tools/urlobj.hxx>
|
|
#include <comphelper/processfactory.hxx>
|
|
|
|
#include <svx/svxids.hrc>
|
|
#include <svx/dialogs.hrc>
|
|
#include <editeng/brushitem.hxx>
|
|
#include <editeng/sizeitem.hxx>
|
|
#include <svx/sdgcpitm.hxx>
|
|
|
|
#include <svx/itemwin.hxx>
|
|
#include <svx/dialmgr.hxx>
|
|
#include <svx/svdview.hxx>
|
|
#include <svx/svdmodel.hxx>
|
|
#include <svx/svdograf.hxx>
|
|
#include <svx/svdundo.hxx>
|
|
#include <svx/svdtrans.hxx>
|
|
#include "svx/grafctrl.hxx"
|
|
#include "svx/tbxcolor.hxx"
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
using namespace ::com::sun::star::frame;
|
|
using namespace ::com::sun::star::util;
|
|
using namespace ::com::sun::star::beans;
|
|
using namespace ::com::sun::star::lang;
|
|
|
|
#include <svx/svxdlg.hxx>
|
|
|
|
#define SYMBOL_TO_FIELD_OFFSET 4
|
|
#define ITEMVALUE(ItemSet,Id,Cast) ((const Cast&)(ItemSet).Get(Id)).GetValue()
|
|
#define TOOLBOX_NAME OUString( "colorbar" )
|
|
|
|
TYPEINIT1_AUTOFACTORY( TbxImageItem, SfxUInt16Item );
|
|
|
|
TbxImageItem::TbxImageItem( sal_uInt16 _nWhich, sal_uInt16 nImage ) :
|
|
SfxUInt16Item( _nWhich, nImage )
|
|
{
|
|
}
|
|
|
|
|
|
SfxPoolItem* TbxImageItem::Clone( SfxItemPool* ) const
|
|
{
|
|
return new TbxImageItem( *this );
|
|
}
|
|
|
|
bool TbxImageItem::operator==( const SfxPoolItem& rItem ) const
|
|
{
|
|
return( ( (TbxImageItem&) rItem ).GetValue() == GetValue() );
|
|
}
|
|
|
|
class ImplGrafMetricField : public MetricField
|
|
{
|
|
using Window::Update;
|
|
|
|
private:
|
|
Timer maTimer;
|
|
OUString maCommand;
|
|
Reference< XFrame > mxFrame;
|
|
|
|
DECL_LINK(ImplModifyHdl, void *);
|
|
|
|
protected:
|
|
|
|
virtual void Modify() SAL_OVERRIDE;
|
|
|
|
public:
|
|
|
|
ImplGrafMetricField( Window* pParent, const OUString& aCmd, const Reference< XFrame >& rFrame );
|
|
virtual ~ImplGrafMetricField();
|
|
|
|
void Update( const SfxPoolItem* pItem );
|
|
};
|
|
|
|
ImplGrafMetricField::ImplGrafMetricField( Window* pParent, const OUString& rCmd, const Reference< XFrame >& rFrame ) :
|
|
MetricField( pParent, WB_BORDER | WB_SPIN | WB_REPEAT | WB_3DLOOK ),
|
|
maCommand( rCmd ),
|
|
mxFrame( rFrame )
|
|
{
|
|
Size aSize( GetTextWidth( OUString("-100 %") ), GetTextHeight() );
|
|
|
|
aSize.Width() += 20, aSize.Height() += 6;
|
|
SetSizePixel( aSize );
|
|
|
|
if ( maCommand == ".uno:GrafGamma" )
|
|
{
|
|
SetDecimalDigits( 2 );
|
|
|
|
SetMin( 10 );
|
|
SetFirst( 10 );
|
|
SetMax( 1000 );
|
|
SetLast( 1000 );
|
|
SetSpinSize( 10 );
|
|
}
|
|
else
|
|
{
|
|
const long nMinVal = maCommand == ".uno:GrafTransparence" ? 0 : -100;
|
|
|
|
SetUnit(FUNIT_PERCENT);
|
|
SetDecimalDigits( 0 );
|
|
|
|
SetMin( nMinVal );
|
|
SetFirst( nMinVal );
|
|
SetMax( 100 );
|
|
SetLast( 100 );
|
|
SetSpinSize( 1 );
|
|
}
|
|
|
|
maTimer.SetTimeout( 100 );
|
|
maTimer.SetTimeoutHdl( LINK( this, ImplGrafMetricField, ImplModifyHdl ) );
|
|
}
|
|
|
|
ImplGrafMetricField::~ImplGrafMetricField()
|
|
{
|
|
}
|
|
|
|
void ImplGrafMetricField::Modify()
|
|
{
|
|
maTimer.Start();
|
|
}
|
|
|
|
IMPL_LINK_NOARG(ImplGrafMetricField, ImplModifyHdl)
|
|
{
|
|
const sal_Int64 nVal = GetValue();
|
|
|
|
// Convert value to an any to be usable with dispatch API
|
|
Any a;
|
|
if ( maCommand == ".uno:GrafRed" ||
|
|
maCommand == ".uno:GrafGreen" ||
|
|
maCommand == ".uno:GrafBlue" ||
|
|
maCommand == ".uno:GrafLuminance" ||
|
|
maCommand == ".uno:GrafContrast" )
|
|
a = makeAny( sal_Int16( nVal ));
|
|
else if ( maCommand == ".uno:GrafGamma" ||
|
|
maCommand == ".uno:GrafTransparence" )
|
|
a = makeAny( sal_Int32( nVal ));
|
|
|
|
if ( a.hasValue() )
|
|
{
|
|
INetURLObject aObj( maCommand );
|
|
|
|
Sequence< PropertyValue > aArgs( 1 );
|
|
aArgs[0].Name = aObj.GetURLPath();
|
|
aArgs[0].Value = a;
|
|
|
|
SfxToolBoxControl::Dispatch(
|
|
Reference< XDispatchProvider >( mxFrame->getController(), UNO_QUERY ),
|
|
maCommand,
|
|
aArgs );
|
|
}
|
|
return 0L;
|
|
}
|
|
|
|
void ImplGrafMetricField::Update( const SfxPoolItem* pItem )
|
|
{
|
|
if( pItem )
|
|
{
|
|
long nValue;
|
|
|
|
if ( maCommand == ".uno:GrafTransparence" )
|
|
nValue = ( (SfxUInt16Item*) pItem )->GetValue();
|
|
else if ( maCommand == ".uno:GrafGamma" )
|
|
nValue = ( (SfxUInt32Item*) pItem )->GetValue();
|
|
else
|
|
nValue = ( (SfxInt16Item*) pItem )->GetValue();
|
|
|
|
SetValue( nValue );
|
|
}
|
|
else
|
|
SetText( OUString() );
|
|
}
|
|
|
|
struct CommandToRID
|
|
{
|
|
const char* pCommand;
|
|
sal_uInt16 nResId;
|
|
};
|
|
|
|
static sal_uInt16 ImplGetRID( const OUString& aCommand )
|
|
{
|
|
static const CommandToRID aImplCommandToResMap[] =
|
|
{
|
|
{ ".uno:GrafRed", RID_SVXIMG_GRAF_RED },
|
|
{ ".uno:GrafGreen", RID_SVXIMG_GRAF_GREEN },
|
|
{ ".uno:GrafBlue", RID_SVXIMG_GRAF_BLUE },
|
|
{ ".uno:GrafLuminance", RID_SVXIMG_GRAF_LUMINANCE },
|
|
{ ".uno:GrafContrast", RID_SVXIMG_GRAF_CONTRAST },
|
|
{ ".uno:GrafGamma", RID_SVXIMG_GRAF_GAMMA },
|
|
{ ".uno:GrafTransparence", RID_SVXIMG_GRAF_TRANSPARENCE },
|
|
{ 0, 0 }
|
|
};
|
|
|
|
sal_uInt16 nRID = 0;
|
|
|
|
sal_Int32 i( 0 );
|
|
while ( aImplCommandToResMap[ i ].pCommand )
|
|
{
|
|
if ( aCommand.equalsAscii( aImplCommandToResMap[ i ].pCommand ))
|
|
{
|
|
nRID = aImplCommandToResMap[ i ].nResId;
|
|
break;
|
|
}
|
|
++i;
|
|
}
|
|
|
|
return nRID;
|
|
}
|
|
|
|
class ImplGrafControl : public Control
|
|
{
|
|
using Window::Update;
|
|
private:
|
|
FixedImage maImage;
|
|
ImplGrafMetricField maField;
|
|
|
|
protected:
|
|
|
|
virtual void GetFocus() SAL_OVERRIDE;
|
|
|
|
public:
|
|
|
|
ImplGrafControl( Window* pParent, const OUString& rCmd, const Reference< XFrame >& rFrame );
|
|
virtual ~ImplGrafControl();
|
|
|
|
void Update( const SfxPoolItem* pItem ) { maField.Update( pItem ); }
|
|
void SetText( const OUString& rStr ) SAL_OVERRIDE { maField.SetText( rStr ); }
|
|
};
|
|
|
|
ImplGrafControl::ImplGrafControl(
|
|
Window* pParent,
|
|
const OUString& rCmd,
|
|
const Reference< XFrame >& rFrame
|
|
) : Control( pParent, WB_TABSTOP )
|
|
, maImage( this )
|
|
, maField( this, rCmd, rFrame )
|
|
{
|
|
ResId aResId( ImplGetRID( rCmd ), DIALOG_MGR() ) ;
|
|
Image aImage( aResId );
|
|
|
|
Size aImgSize( aImage.GetSizePixel() );
|
|
Size aFldSize( maField.GetSizePixel() );
|
|
long nFldY, nImgY;
|
|
|
|
maImage.SetImage( aImage );
|
|
maImage.SetSizePixel( aImgSize );
|
|
// we want to see the backbround of the toolbox, not of the FixedImage or Control
|
|
maImage.SetBackground( Wallpaper( COL_TRANSPARENT ) );
|
|
SetBackground( Wallpaper( COL_TRANSPARENT ) );
|
|
|
|
if( aImgSize.Height() > aFldSize.Height() )
|
|
nImgY = 0, nFldY = ( aImgSize.Height() - aFldSize.Height() ) >> 1;
|
|
else
|
|
nFldY = 0, nImgY = ( aFldSize.Height() - aImgSize.Height() ) >> 1;
|
|
|
|
long nOffset = SYMBOL_TO_FIELD_OFFSET / 2;
|
|
maImage.SetPosPixel( Point( nOffset, nImgY ) );
|
|
maField.SetPosPixel( Point( aImgSize.Width() + SYMBOL_TO_FIELD_OFFSET, nFldY ) );
|
|
SetSizePixel( Size( aImgSize.Width() + aFldSize.Width() + SYMBOL_TO_FIELD_OFFSET + nOffset,
|
|
std::max( aImgSize.Height(), aFldSize.Height() ) ) );
|
|
|
|
SetBackground( Wallpaper() ); // transparent background
|
|
|
|
maImage.Show();
|
|
|
|
maField.SetHelpId( OUStringToOString( rCmd, RTL_TEXTENCODING_UTF8 ) );
|
|
maField.Show();
|
|
}
|
|
|
|
ImplGrafControl::~ImplGrafControl()
|
|
{
|
|
}
|
|
|
|
void ImplGrafControl::GetFocus()
|
|
{
|
|
maField.GrabFocus();
|
|
}
|
|
|
|
class ImplGrafModeControl : public ListBox
|
|
{
|
|
using Window::Update;
|
|
private:
|
|
sal_uInt16 mnCurPos;
|
|
Reference< XFrame > mxFrame;
|
|
|
|
virtual void Select() SAL_OVERRIDE;
|
|
virtual bool PreNotify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
|
|
virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
|
|
void ImplReleaseFocus();
|
|
|
|
public:
|
|
|
|
ImplGrafModeControl( Window* pParent, const Reference< XFrame >& rFrame );
|
|
virtual ~ImplGrafModeControl();
|
|
|
|
void Update( const SfxPoolItem* pItem );
|
|
};
|
|
|
|
ImplGrafModeControl::ImplGrafModeControl( Window* pParent, const Reference< XFrame >& rFrame ) :
|
|
ListBox( pParent, WB_BORDER | WB_DROPDOWN | WB_AUTOHSCROLL ),
|
|
mnCurPos( 0 ),
|
|
mxFrame( rFrame )
|
|
{
|
|
SetSizePixel( Size( 100, 260 ) );
|
|
|
|
InsertEntry( SVX_RESSTR( RID_SVXSTR_GRAFMODE_STANDARD ) );
|
|
InsertEntry( SVX_RESSTR( RID_SVXSTR_GRAFMODE_GREYS ) );
|
|
InsertEntry( SVX_RESSTR( RID_SVXSTR_GRAFMODE_MONO ) );
|
|
InsertEntry( SVX_RESSTR( RID_SVXSTR_GRAFMODE_WATERMARK ) );
|
|
|
|
Show();
|
|
}
|
|
|
|
ImplGrafModeControl::~ImplGrafModeControl()
|
|
{
|
|
}
|
|
|
|
void ImplGrafModeControl::Select()
|
|
{
|
|
if ( !IsTravelSelect() )
|
|
{
|
|
Sequence< PropertyValue > aArgs( 1 );
|
|
aArgs[0].Name = "GrafMode";
|
|
aArgs[0].Value = makeAny( sal_Int16( GetSelectEntryPos() ));
|
|
|
|
/* #i33380# DR 2004-09-03 Moved the following line above the Dispatch() call.
|
|
This instance may be deleted in the meantime (i.e. when a dialog is opened
|
|
while in Dispatch()), accessing members will crash in this case. */
|
|
ImplReleaseFocus();
|
|
|
|
SfxToolBoxControl::Dispatch(
|
|
Reference< XDispatchProvider >( mxFrame->getController(), UNO_QUERY ),
|
|
OUString( ".uno:GrafMode" ),
|
|
aArgs );
|
|
}
|
|
}
|
|
|
|
bool ImplGrafModeControl::PreNotify( NotifyEvent& rNEvt )
|
|
{
|
|
sal_uInt16 nType = rNEvt.GetType();
|
|
|
|
if( EVENT_MOUSEBUTTONDOWN == nType || EVENT_GETFOCUS == nType )
|
|
mnCurPos = GetSelectEntryPos();
|
|
|
|
return ListBox::PreNotify( rNEvt );
|
|
}
|
|
|
|
bool ImplGrafModeControl::Notify( NotifyEvent& rNEvt )
|
|
{
|
|
bool nHandled = ListBox::Notify( rNEvt );
|
|
|
|
if( rNEvt.GetType() == EVENT_KEYINPUT )
|
|
{
|
|
const KeyEvent* pKEvt = rNEvt.GetKeyEvent();
|
|
|
|
switch( pKEvt->GetKeyCode().GetCode() )
|
|
{
|
|
case KEY_RETURN:
|
|
{
|
|
Select();
|
|
nHandled = true;
|
|
}
|
|
break;
|
|
|
|
case KEY_ESCAPE:
|
|
{
|
|
SelectEntryPos( mnCurPos );
|
|
ImplReleaseFocus();
|
|
nHandled = true;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
return nHandled;
|
|
}
|
|
|
|
void ImplGrafModeControl::ImplReleaseFocus()
|
|
{
|
|
if( SfxViewShell::Current() )
|
|
{
|
|
Window* pShellWnd = SfxViewShell::Current()->GetWindow();
|
|
|
|
if( pShellWnd )
|
|
pShellWnd->GrabFocus();
|
|
}
|
|
}
|
|
|
|
void ImplGrafModeControl::Update( const SfxPoolItem* pItem )
|
|
{
|
|
if( pItem )
|
|
SelectEntryPos( ((SfxUInt16Item*)pItem)->GetValue() );
|
|
else
|
|
SetNoSelection();
|
|
}
|
|
|
|
SFX_IMPL_TOOLBOX_CONTROL( SvxGrafFilterToolBoxControl, TbxImageItem );
|
|
|
|
SvxGrafFilterToolBoxControl::SvxGrafFilterToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx ) :
|
|
SfxToolBoxControl( nSlotId, nId, rTbx )
|
|
{
|
|
rTbx.SetItemBits( nId, TIB_DROPDOWNONLY | rTbx.GetItemBits( nId ) );
|
|
rTbx.Invalidate();
|
|
}
|
|
|
|
SvxGrafFilterToolBoxControl::~SvxGrafFilterToolBoxControl()
|
|
{
|
|
}
|
|
|
|
void SvxGrafFilterToolBoxControl::StateChanged( sal_uInt16, SfxItemState eState, const SfxPoolItem* )
|
|
{
|
|
GetToolBox().EnableItem( GetId(), ( eState != SFX_ITEM_DISABLED ) );
|
|
}
|
|
|
|
SfxPopupWindowType SvxGrafFilterToolBoxControl::GetPopupWindowType() const
|
|
{
|
|
return SFX_POPUPWINDOW_ONCLICK;
|
|
}
|
|
|
|
SfxPopupWindow* SvxGrafFilterToolBoxControl::CreatePopupWindow()
|
|
{
|
|
OUString aSubTbxResName( "private:resource/toolbar/graffilterbar" );
|
|
createAndPositionSubToolBar( aSubTbxResName );
|
|
|
|
return NULL;
|
|
}
|
|
|
|
SvxGrafToolBoxControl::SvxGrafToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx) :
|
|
SfxToolBoxControl( nSlotId, nId, rTbx )
|
|
{
|
|
rTbx.SetItemBits( nId, TIB_DROPDOWN | rTbx.GetItemBits( nId ) );
|
|
rTbx.Invalidate();
|
|
}
|
|
|
|
SvxGrafToolBoxControl::~SvxGrafToolBoxControl()
|
|
{
|
|
}
|
|
|
|
void SvxGrafToolBoxControl::StateChanged( sal_uInt16, SfxItemState eState, const SfxPoolItem* pState )
|
|
|
|
{
|
|
ImplGrafControl* pCtrl = (ImplGrafControl*) GetToolBox().GetItemWindow( GetId() );
|
|
DBG_ASSERT( pCtrl, "Control not found" );
|
|
|
|
if( eState == SFX_ITEM_DISABLED )
|
|
{
|
|
pCtrl->Disable();
|
|
pCtrl->SetText( OUString() );
|
|
}
|
|
else
|
|
{
|
|
pCtrl->Enable();
|
|
|
|
if( eState == SFX_ITEM_AVAILABLE )
|
|
pCtrl->Update( pState );
|
|
else
|
|
pCtrl->Update( NULL );
|
|
}
|
|
}
|
|
|
|
Window* SvxGrafToolBoxControl::CreateItemWindow( Window *pParent )
|
|
{
|
|
return( new ImplGrafControl( pParent, m_aCommandURL, m_xFrame ) );
|
|
}
|
|
|
|
SFX_IMPL_TOOLBOX_CONTROL( SvxGrafRedToolBoxControl, SfxInt16Item );
|
|
|
|
SvxGrafRedToolBoxControl::SvxGrafRedToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx ) :
|
|
SvxGrafToolBoxControl( nSlotId, nId, rTbx )
|
|
{
|
|
}
|
|
|
|
SFX_IMPL_TOOLBOX_CONTROL( SvxGrafGreenToolBoxControl, SfxInt16Item );
|
|
|
|
SvxGrafGreenToolBoxControl::SvxGrafGreenToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx ) :
|
|
SvxGrafToolBoxControl( nSlotId, nId, rTbx )
|
|
{
|
|
}
|
|
|
|
SFX_IMPL_TOOLBOX_CONTROL( SvxGrafBlueToolBoxControl, SfxInt16Item );
|
|
|
|
SvxGrafBlueToolBoxControl::SvxGrafBlueToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx ) :
|
|
SvxGrafToolBoxControl( nSlotId, nId, rTbx )
|
|
{
|
|
}
|
|
|
|
SFX_IMPL_TOOLBOX_CONTROL( SvxGrafLuminanceToolBoxControl, SfxInt16Item );
|
|
|
|
SvxGrafLuminanceToolBoxControl::SvxGrafLuminanceToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx ) :
|
|
SvxGrafToolBoxControl( nSlotId, nId, rTbx )
|
|
{
|
|
}
|
|
|
|
SFX_IMPL_TOOLBOX_CONTROL( SvxGrafContrastToolBoxControl, SfxInt16Item );
|
|
|
|
SvxGrafContrastToolBoxControl::SvxGrafContrastToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx ) :
|
|
SvxGrafToolBoxControl( nSlotId, nId, rTbx )
|
|
{
|
|
}
|
|
|
|
SFX_IMPL_TOOLBOX_CONTROL( SvxGrafGammaToolBoxControl, SfxUInt32Item );
|
|
|
|
SvxGrafGammaToolBoxControl::SvxGrafGammaToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx ) :
|
|
SvxGrafToolBoxControl( nSlotId, nId, rTbx )
|
|
{
|
|
}
|
|
|
|
SFX_IMPL_TOOLBOX_CONTROL( SvxGrafTransparenceToolBoxControl, SfxUInt16Item );
|
|
|
|
SvxGrafTransparenceToolBoxControl::SvxGrafTransparenceToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx ) :
|
|
SvxGrafToolBoxControl( nSlotId, nId, rTbx )
|
|
{
|
|
}
|
|
|
|
SFX_IMPL_TOOLBOX_CONTROL( SvxGrafModeToolBoxControl, SfxUInt16Item );
|
|
|
|
SvxGrafModeToolBoxControl::SvxGrafModeToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx ) :
|
|
SfxToolBoxControl( nSlotId, nId, rTbx )
|
|
{
|
|
}
|
|
|
|
SvxGrafModeToolBoxControl::~SvxGrafModeToolBoxControl()
|
|
{
|
|
}
|
|
|
|
void SvxGrafModeToolBoxControl::StateChanged( sal_uInt16, SfxItemState eState, const SfxPoolItem* pState )
|
|
|
|
{
|
|
ImplGrafModeControl* pCtrl = (ImplGrafModeControl*) GetToolBox().GetItemWindow( GetId() );
|
|
DBG_ASSERT( pCtrl, "Control not found" );
|
|
|
|
if( eState == SFX_ITEM_DISABLED )
|
|
{
|
|
pCtrl->Disable();
|
|
pCtrl->SetText( OUString() );
|
|
}
|
|
else
|
|
{
|
|
pCtrl->Enable();
|
|
|
|
if( eState == SFX_ITEM_AVAILABLE )
|
|
pCtrl->Update( pState );
|
|
else
|
|
pCtrl->Update( NULL );
|
|
}
|
|
}
|
|
|
|
Window* SvxGrafModeToolBoxControl::CreateItemWindow( Window *pParent )
|
|
{
|
|
return( new ImplGrafModeControl( pParent, m_xFrame ) );
|
|
}
|
|
|
|
void SvxGrafAttrHelper::ExecuteGrafAttr( SfxRequest& rReq, SdrView& rView )
|
|
{
|
|
SfxItemPool& rPool = rView.GetModel()->GetItemPool();
|
|
SfxItemSet aSet( rPool, SDRATTR_GRAF_FIRST, SDRATTR_GRAF_LAST );
|
|
OUString aUndoStr;
|
|
const bool bUndo = rView.IsUndoEnabled();
|
|
|
|
if( bUndo )
|
|
{
|
|
aUndoStr = rView.GetDescriptionOfMarkedObjects();
|
|
aUndoStr += " ";
|
|
}
|
|
|
|
const SfxItemSet* pArgs = rReq.GetArgs();
|
|
const SfxPoolItem* pItem;
|
|
sal_uInt16 nSlot = rReq.GetSlot();
|
|
|
|
if( !pArgs || SFX_ITEM_SET != pArgs->GetItemState( nSlot, false, &pItem ))
|
|
pItem = 0;
|
|
|
|
switch( nSlot )
|
|
{
|
|
case SID_ATTR_GRAF_RED:
|
|
{
|
|
if( pItem )
|
|
{
|
|
aSet.Put( SdrGrafRedItem( ((SfxInt16Item*)pItem)->GetValue() ));
|
|
if( bUndo )
|
|
aUndoStr += SVX_RESSTR( RID_SVXSTR_UNDO_GRAFRED );
|
|
}
|
|
}
|
|
break;
|
|
|
|
case SID_ATTR_GRAF_GREEN:
|
|
{
|
|
if( pItem )
|
|
{
|
|
aSet.Put( SdrGrafGreenItem( ((SfxInt16Item*)pItem)->GetValue() ));
|
|
if( bUndo )
|
|
aUndoStr += SVX_RESSTR( RID_SVXSTR_UNDO_GRAFGREEN );
|
|
}
|
|
}
|
|
break;
|
|
|
|
case SID_ATTR_GRAF_BLUE:
|
|
{
|
|
if( pItem )
|
|
{
|
|
aSet.Put( SdrGrafBlueItem( ((SfxInt16Item*)pItem)->GetValue() ));
|
|
if( bUndo )
|
|
aUndoStr += SVX_RESSTR( RID_SVXSTR_UNDO_GRAFBLUE );
|
|
}
|
|
}
|
|
break;
|
|
|
|
case SID_ATTR_GRAF_LUMINANCE:
|
|
{
|
|
if( pItem )
|
|
{
|
|
aSet.Put( SdrGrafLuminanceItem( ((SfxInt16Item*)pItem)->GetValue() ));
|
|
if( bUndo )
|
|
aUndoStr += SVX_RESSTR( RID_SVXSTR_UNDO_GRAFLUMINANCE );
|
|
}
|
|
}
|
|
break;
|
|
|
|
case SID_ATTR_GRAF_CONTRAST:
|
|
{
|
|
if( pItem )
|
|
{
|
|
aSet.Put( SdrGrafContrastItem( ((SfxInt16Item*)pItem)->GetValue() ));
|
|
if( bUndo )
|
|
aUndoStr += SVX_RESSTR( RID_SVXSTR_UNDO_GRAFCONTRAST );
|
|
}
|
|
}
|
|
break;
|
|
|
|
case SID_ATTR_GRAF_GAMMA:
|
|
{
|
|
if( pItem )
|
|
{
|
|
aSet.Put( SdrGrafGamma100Item( ((SfxUInt32Item*)pItem)->GetValue() ));
|
|
if( bUndo )
|
|
aUndoStr += SVX_RESSTR( RID_SVXSTR_UNDO_GRAFGAMMA );
|
|
}
|
|
}
|
|
break;
|
|
|
|
case SID_ATTR_GRAF_TRANSPARENCE:
|
|
{
|
|
if( pItem )
|
|
{
|
|
aSet.Put( SdrGrafTransparenceItem( ((SfxUInt16Item*)pItem)->GetValue() ));
|
|
if( bUndo )
|
|
aUndoStr += SVX_RESSTR( RID_SVXSTR_UNDO_GRAFTRANSPARENCY );
|
|
}
|
|
}
|
|
break;
|
|
|
|
case SID_ATTR_GRAF_MODE:
|
|
{
|
|
if( pItem )
|
|
{
|
|
aSet.Put( SdrGrafModeItem( (GraphicDrawMode) ((SfxUInt16Item*)pItem)->GetValue() ));
|
|
if( bUndo )
|
|
aUndoStr += SVX_RESSTR( RID_SVXSTR_UNDO_GRAFMODE );
|
|
}
|
|
}
|
|
break;
|
|
|
|
case( SID_ATTR_GRAF_CROP ):
|
|
{
|
|
const SdrMarkList& rMarkList = rView.GetMarkedObjectList();
|
|
|
|
if( 0 < rMarkList.GetMarkCount() )
|
|
{
|
|
SdrGrafObj* pObj = (SdrGrafObj*) rMarkList.GetMark( 0 )->GetMarkedSdrObj();
|
|
|
|
if( pObj && pObj->ISA( SdrGrafObj ) &&
|
|
( pObj->GetGraphicType() != GRAPHIC_NONE ) &&
|
|
( pObj->GetGraphicType() != GRAPHIC_DEFAULT ) )
|
|
{
|
|
SfxItemSet aGrfAttr( rPool, SDRATTR_GRAFCROP, SDRATTR_GRAFCROP, 0 );
|
|
const SfxMapUnit eOldMetric = rPool.GetMetric( 0 );
|
|
const MapMode aMap100( MAP_100TH_MM );
|
|
const MapMode aMapTwip( MAP_TWIP );
|
|
|
|
aGrfAttr.Put(pObj->GetMergedItemSet());
|
|
rPool.SetDefaultMetric( SFX_MAPUNIT_TWIP );
|
|
|
|
SfxItemSet aCropDlgAttr( rPool,
|
|
SDRATTR_GRAFCROP, SDRATTR_GRAFCROP,
|
|
SID_ATTR_GRAF_GRAPHIC, SID_ATTR_GRAF_GRAPHIC,
|
|
SID_ATTR_PAGE_SIZE, SID_ATTR_PAGE_SIZE,
|
|
SID_ATTR_GRAF_FRMSIZE, SID_ATTR_GRAF_FRMSIZE,
|
|
SID_ATTR_GRAF_CROP, SID_ATTR_GRAF_CROP, 0 );
|
|
|
|
aCropDlgAttr.Put( SvxBrushItem( pObj->GetGraphic(), GPOS_MM, SID_ATTR_GRAF_GRAPHIC ) );
|
|
aCropDlgAttr.Put( SvxSizeItem( SID_ATTR_PAGE_SIZE,
|
|
Size( OutputDevice::LogicToLogic(
|
|
Size( 200000, 200000 ), aMap100, aMapTwip ) ) ) );
|
|
aCropDlgAttr.Put( SvxSizeItem( SID_ATTR_GRAF_FRMSIZE, OutputDevice::LogicToLogic(
|
|
pObj->GetLogicRect().GetSize(), aMap100, aMapTwip ) ) );
|
|
|
|
const SdrGrafCropItem& rCrop = (const SdrGrafCropItem&) aGrfAttr.Get( SDRATTR_GRAFCROP );
|
|
Size aLTSize( OutputDevice::LogicToLogic(
|
|
Size( rCrop.GetLeft(), rCrop.GetTop() ), aMap100, aMapTwip ) );
|
|
Size aRBSize( OutputDevice::LogicToLogic(
|
|
Size( rCrop.GetRight(), rCrop.GetBottom() ), aMap100, aMapTwip ) );
|
|
|
|
aCropDlgAttr.Put( SdrGrafCropItem( aLTSize.Width(), aLTSize.Height(),
|
|
aRBSize.Width(), aRBSize.Height() ) );
|
|
|
|
SfxSingleTabDialog aCropDialog(
|
|
SfxViewShell::Current() ? SfxViewShell::Current()->GetWindow() : NULL,
|
|
aCropDlgAttr);
|
|
const OUString aCropStr(SVX_RESSTR(RID_SVXSTR_GRAFCROP));
|
|
|
|
SfxAbstractDialogFactory* pFact = SfxAbstractDialogFactory::Create();
|
|
assert(pFact && "Dialog creation failed!");
|
|
::CreateTabPage fnCreatePage = pFact->GetTabPageCreatorFunc( RID_SVXPAGE_GRFCROP );
|
|
assert(fnCreatePage && "Dialog creation failed!");
|
|
SfxTabPage* pTabPage = (*fnCreatePage)( aCropDialog.get_content_area(), &aCropDlgAttr );
|
|
|
|
pTabPage->SetText( aCropStr );
|
|
aCropDialog.SetTabPage( pTabPage );
|
|
|
|
if( aCropDialog.Execute() == RET_OK )
|
|
{
|
|
const SfxItemSet* pOutAttr = aCropDialog.GetOutputItemSet();
|
|
|
|
if( pOutAttr )
|
|
{
|
|
aUndoStr += SVX_RESSTR( RID_SVXSTR_UNDO_GRAFCROP );
|
|
|
|
// set crop attributes
|
|
if( SFX_ITEM_SET <= pOutAttr->GetItemState( SDRATTR_GRAFCROP ) )
|
|
{
|
|
const SdrGrafCropItem& rNewCrop = (const SdrGrafCropItem&) pOutAttr->Get( SDRATTR_GRAFCROP );
|
|
|
|
aLTSize = OutputDevice::LogicToLogic( Size( rNewCrop.GetLeft(), rNewCrop.GetTop() ), aMapTwip, aMap100 );
|
|
aRBSize = OutputDevice::LogicToLogic( Size( rNewCrop.GetRight(), rNewCrop.GetBottom() ), aMapTwip, aMap100 );
|
|
aSet.Put( SdrGrafCropItem( aLTSize.Width(), aLTSize.Height(), aRBSize.Width(), aRBSize.Height() ) );
|
|
}
|
|
|
|
// set new logic rect
|
|
if( SFX_ITEM_SET <= pOutAttr->GetItemState( SID_ATTR_GRAF_FRMSIZE ) )
|
|
{
|
|
Point aNewOrigin( pObj->GetLogicRect().TopLeft() );
|
|
const Size& rGrfSize = ( (const SvxSizeItem&) pOutAttr->Get( SID_ATTR_GRAF_FRMSIZE ) ).GetSize();
|
|
Size aNewGrfSize( OutputDevice::LogicToLogic( rGrfSize, aMapTwip, aMap100 ) );
|
|
Size aOldGrfSize( pObj->GetLogicRect().GetSize() );
|
|
|
|
Rectangle aNewRect( aNewOrigin, aNewGrfSize );
|
|
Point aOffset( (aNewGrfSize.Width() - aOldGrfSize.Width()) >> 1,
|
|
(aNewGrfSize.Height() - aOldGrfSize.Height()) >> 1 );
|
|
|
|
// #106181# rotate snap rect before setting it
|
|
const GeoStat& aGeo = pObj->GetGeoStat();
|
|
|
|
if (aGeo.nDrehWink!=0 || aGeo.nShearWink!=0)
|
|
{
|
|
Polygon aPol(aNewRect);
|
|
|
|
// also transform origin offset
|
|
if (aGeo.nShearWink!=0)
|
|
{
|
|
ShearPoly(aPol,
|
|
aNewRect.TopLeft(),
|
|
aGeo.nTan);
|
|
ShearPoint(aOffset, Point(0,0), aGeo.nTan);
|
|
}
|
|
if (aGeo.nDrehWink!=0)
|
|
{
|
|
RotatePoly(aPol,
|
|
aNewRect.TopLeft(),
|
|
aGeo.nSin,aGeo.nCos);
|
|
RotatePoint(aOffset, Point(0,0), aGeo.nSin,aGeo.nCos);
|
|
}
|
|
|
|
// apply offset
|
|
aPol.Move( -aOffset.X(), -aOffset.Y() );
|
|
aNewRect=aPol.GetBoundRect();
|
|
}
|
|
else
|
|
{
|
|
aNewRect.Move( -aOffset.X(), -aOffset.Y() );
|
|
}
|
|
|
|
if( !aSet.Count() )
|
|
rView.SetMarkedObjRect( aNewRect );
|
|
else
|
|
{
|
|
if( bUndo )
|
|
{
|
|
rView.BegUndo( aUndoStr );
|
|
rView.AddUndo( rView.GetModel()->GetSdrUndoFactory().CreateUndoGeoObject( *pObj ) );
|
|
}
|
|
pObj->SetSnapRect( aNewRect );
|
|
rView.SetAttributes( aSet );
|
|
|
|
if( bUndo )
|
|
rView.EndUndo();
|
|
aSet.ClearItem();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
rPool.SetDefaultMetric( eOldMetric );
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case SID_COLOR_SETTINGS:
|
|
{
|
|
svx::ToolboxAccess aToolboxAccess( TOOLBOX_NAME );
|
|
aToolboxAccess.toggleToolbox();
|
|
rReq.Done();
|
|
break;
|
|
}
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
if( aSet.Count() )
|
|
{
|
|
if( bUndo )
|
|
rView.BegUndo( aUndoStr );
|
|
|
|
rView.SetAttributes( aSet );
|
|
|
|
if( bUndo )
|
|
rView.EndUndo();
|
|
}
|
|
}
|
|
|
|
void SvxGrafAttrHelper::GetGrafAttrState( SfxItemSet& rSet, SdrView& rView )
|
|
{
|
|
SfxItemPool& rPool = rView.GetModel()->GetItemPool();
|
|
SfxItemSet aAttrSet( rPool );
|
|
SfxWhichIter aIter( rSet );
|
|
sal_uInt16 nWhich = aIter.FirstWhich();
|
|
const SdrMarkList& rMarkList = rView.GetMarkedObjectList();
|
|
bool bEnableColors = true;
|
|
bool bEnableTransparency = true;
|
|
bool bEnableCrop = ( 1 == rMarkList.GetMarkCount() );
|
|
|
|
for( size_t i = 0, nCount = rMarkList.GetMarkCount(); i < nCount; ++i )
|
|
{
|
|
SdrGrafObj* pGrafObj = dynamic_cast< SdrGrafObj* >( rMarkList.GetMark( i )->GetMarkedSdrObj() );
|
|
|
|
if( !pGrafObj ||
|
|
( pGrafObj->GetGraphicType() == GRAPHIC_NONE ) ||
|
|
( pGrafObj->GetGraphicType() == GRAPHIC_DEFAULT ))
|
|
{
|
|
bEnableColors = bEnableTransparency = bEnableCrop = false;
|
|
break;
|
|
}
|
|
else if( bEnableTransparency && ( pGrafObj->HasGDIMetaFile() || pGrafObj->IsAnimated() ) )
|
|
{
|
|
bEnableTransparency = false;
|
|
}
|
|
}
|
|
|
|
rView.GetAttributes( aAttrSet );
|
|
|
|
while( nWhich )
|
|
{
|
|
sal_uInt16 nSlotId = SfxItemPool::IsWhich( nWhich ) ? rPool.GetSlotId( nWhich ) : nWhich;
|
|
|
|
switch( nSlotId )
|
|
{
|
|
case( SID_ATTR_GRAF_MODE ):
|
|
{
|
|
if( SFX_ITEM_AVAILABLE <= aAttrSet.GetItemState( SDRATTR_GRAFMODE ) )
|
|
{
|
|
if( bEnableColors )
|
|
{
|
|
rSet.Put( SfxUInt16Item( nSlotId,
|
|
sal::static_int_cast< sal_uInt16 >( ITEMVALUE( aAttrSet, SDRATTR_GRAFMODE, SdrGrafModeItem ) ) ) );
|
|
}
|
|
else
|
|
{
|
|
rSet.DisableItem( SID_ATTR_GRAF_MODE );
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case( SID_ATTR_GRAF_RED ):
|
|
{
|
|
if( SFX_ITEM_AVAILABLE <= aAttrSet.GetItemState( SDRATTR_GRAFRED ) )
|
|
{
|
|
if( bEnableColors )
|
|
{
|
|
rSet.Put( SfxInt16Item( nSlotId,
|
|
ITEMVALUE( aAttrSet, SDRATTR_GRAFRED, SdrGrafRedItem ) ) );
|
|
}
|
|
else
|
|
{
|
|
rSet.DisableItem( SID_ATTR_GRAF_RED );
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case( SID_ATTR_GRAF_GREEN ):
|
|
{
|
|
if( SFX_ITEM_AVAILABLE <= aAttrSet.GetItemState( SDRATTR_GRAFGREEN ) )
|
|
{
|
|
if( bEnableColors )
|
|
{
|
|
rSet.Put( SfxInt16Item( nSlotId,
|
|
ITEMVALUE( aAttrSet, SDRATTR_GRAFGREEN, SdrGrafGreenItem ) ) );
|
|
}
|
|
else
|
|
{
|
|
rSet.DisableItem( SID_ATTR_GRAF_GREEN );
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case( SID_ATTR_GRAF_BLUE ):
|
|
{
|
|
if( SFX_ITEM_AVAILABLE <= aAttrSet.GetItemState( SDRATTR_GRAFBLUE ) )
|
|
{
|
|
if( bEnableColors )
|
|
{
|
|
rSet.Put( SfxInt16Item( nSlotId,
|
|
ITEMVALUE( aAttrSet, SDRATTR_GRAFBLUE, SdrGrafBlueItem ) ) );
|
|
}
|
|
else
|
|
{
|
|
rSet.DisableItem( SID_ATTR_GRAF_BLUE );
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case( SID_ATTR_GRAF_LUMINANCE ):
|
|
{
|
|
if( SFX_ITEM_AVAILABLE <= aAttrSet.GetItemState( SDRATTR_GRAFLUMINANCE ) )
|
|
{
|
|
if( bEnableColors )
|
|
{
|
|
rSet.Put( SfxInt16Item( nSlotId,
|
|
ITEMVALUE( aAttrSet, SDRATTR_GRAFLUMINANCE, SdrGrafLuminanceItem ) ) );
|
|
}
|
|
else
|
|
{
|
|
rSet.DisableItem( SID_ATTR_GRAF_LUMINANCE );
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case( SID_ATTR_GRAF_CONTRAST ):
|
|
{
|
|
if( SFX_ITEM_AVAILABLE <= aAttrSet.GetItemState( SDRATTR_GRAFCONTRAST ) )
|
|
{
|
|
if( bEnableColors )
|
|
{
|
|
rSet.Put( SfxInt16Item( nSlotId,
|
|
ITEMVALUE( aAttrSet, SDRATTR_GRAFCONTRAST, SdrGrafContrastItem ) ) );
|
|
}
|
|
else
|
|
{
|
|
rSet.DisableItem( SID_ATTR_GRAF_CONTRAST );
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case( SID_ATTR_GRAF_GAMMA ):
|
|
{
|
|
if( SFX_ITEM_AVAILABLE <= aAttrSet.GetItemState( SDRATTR_GRAFGAMMA ) )
|
|
{
|
|
if( bEnableColors )
|
|
{
|
|
rSet.Put( SfxUInt32Item( nSlotId,
|
|
ITEMVALUE( aAttrSet, SDRATTR_GRAFGAMMA, SdrGrafGamma100Item ) ) );
|
|
}
|
|
else
|
|
{
|
|
rSet.DisableItem( SID_ATTR_GRAF_GAMMA );
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case( SID_ATTR_GRAF_TRANSPARENCE ):
|
|
{
|
|
if( SFX_ITEM_AVAILABLE <= aAttrSet.GetItemState( SDRATTR_GRAFTRANSPARENCE ) )
|
|
{
|
|
if( bEnableTransparency )
|
|
{
|
|
rSet.Put( SfxUInt16Item( nSlotId,
|
|
ITEMVALUE( aAttrSet, SDRATTR_GRAFTRANSPARENCE, SdrGrafTransparenceItem ) ) );
|
|
}
|
|
else
|
|
{
|
|
rSet.DisableItem( SID_ATTR_GRAF_TRANSPARENCE );
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case( SID_ATTR_GRAF_CROP ):
|
|
{
|
|
if( !bEnableCrop )
|
|
rSet.DisableItem( nSlotId );
|
|
}
|
|
break;
|
|
|
|
case SID_COLOR_SETTINGS :
|
|
{
|
|
svx::ToolboxAccess aToolboxAccess( TOOLBOX_NAME );
|
|
rSet.Put( SfxBoolItem( nWhich, aToolboxAccess.isToolboxVisible() ) );
|
|
break;
|
|
}
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
nWhich = aIter.NextWhich();
|
|
}
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|