2000-09-18 11:07:07 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 14:14:48 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 14:14:48 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 14:14:48 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 14:14:48 -05:00
|
|
|
* 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.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 14:14:48 -05:00
|
|
|
* 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).
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 14:14:48 -05:00
|
|
|
* 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.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 12:46:34 -05:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_sd.hxx"
|
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
|
2004-01-20 03:55:56 -06:00
|
|
|
#include "fuarea.hxx"
|
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
#include <svx/svxids.hrc>
|
|
|
|
#include <svx/tabarea.hxx>
|
|
|
|
#include <vcl/msgbox.hxx>
|
2009-10-15 17:05:16 -05:00
|
|
|
#include <svl/intitem.hxx>
|
|
|
|
#include <svl/stritem.hxx>
|
2000-09-18 11:07:07 -05:00
|
|
|
#include <sfx2/request.hxx>
|
2000-09-21 10:12:50 -05:00
|
|
|
#include <sfx2/viewfrm.hxx>
|
2000-09-18 11:07:07 -05:00
|
|
|
#include <sfx2/bindings.hxx>
|
2004-01-20 03:55:56 -06:00
|
|
|
#include "ViewShell.hxx"
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
#include "drawdoc.hxx"
|
2004-01-20 03:55:56 -06:00
|
|
|
#include "View.hxx"
|
|
|
|
#include "Window.hxx"
|
2000-09-18 11:07:07 -05:00
|
|
|
#include "app.hrc"
|
2006-12-12 10:13:50 -06:00
|
|
|
#include <svx/svxdlg.hxx>
|
|
|
|
#include <svx/dialogs.hrc>
|
2000-09-18 11:07:07 -05:00
|
|
|
|
2004-01-20 03:55:56 -06:00
|
|
|
namespace sd {
|
2000-09-18 11:07:07 -05:00
|
|
|
TYPEINIT1( FuArea, FuPoor );
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* Konstruktor
|
|
|
|
|*
|
|
|
|
\************************************************************************/
|
|
|
|
|
2006-12-12 10:13:50 -06:00
|
|
|
FuArea::FuArea( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* _pView, SdDrawDocument* pDoc, SfxRequest& rReq)
|
|
|
|
: FuPoor(pViewSh, pWin, _pView, pDoc, rReq)
|
2005-12-14 09:54:33 -06:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-12-12 10:13:50 -06:00
|
|
|
FunctionReference FuArea::Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* _pView, SdDrawDocument* pDoc, SfxRequest& rReq )
|
2005-12-14 09:54:33 -06:00
|
|
|
{
|
2006-12-12 10:13:50 -06:00
|
|
|
FunctionReference xFunc( new FuArea( pViewSh, pWin, _pView, pDoc, rReq ) );
|
2005-12-14 09:54:33 -06:00
|
|
|
xFunc->DoExecute(rReq);
|
|
|
|
return xFunc;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FuArea::DoExecute( SfxRequest& rReq )
|
2000-09-18 11:07:07 -05:00
|
|
|
{
|
|
|
|
const SfxItemSet* pArgs = rReq.GetArgs();
|
|
|
|
|
|
|
|
if( !pArgs )
|
|
|
|
{
|
2006-12-12 10:13:50 -06:00
|
|
|
SfxItemSet aNewAttr( mpDoc->GetPool() );
|
|
|
|
mpView->GetAttributes( aNewAttr );
|
2000-09-18 11:07:07 -05:00
|
|
|
|
2004-02-04 03:03:45 -06:00
|
|
|
SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
|
2006-12-12 10:13:50 -06:00
|
|
|
AbstractSvxAreaTabDialog * pDlg = pFact ? pFact->CreateSvxAreaTabDialog( NULL,
|
|
|
|
&aNewAttr,
|
|
|
|
mpDoc,
|
|
|
|
mpView) : 0;
|
|
|
|
if( pDlg && (pDlg->Execute() == RET_OK) )
|
2000-09-18 11:07:07 -05:00
|
|
|
{
|
2006-12-12 10:13:50 -06:00
|
|
|
mpView->SetAttributes (*(pDlg->GetOutputItemSet ()));
|
2000-09-18 11:07:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Attribute wurden geaendert, Listboxes in Objectbars muessen aktualisiert werden
|
|
|
|
static USHORT SidArray[] = {
|
|
|
|
SID_ATTR_FILL_STYLE,
|
|
|
|
SID_ATTR_FILL_COLOR,
|
|
|
|
SID_ATTR_FILL_GRADIENT,
|
|
|
|
SID_ATTR_FILL_HATCH,
|
|
|
|
SID_ATTR_FILL_BITMAP,
|
|
|
|
0 };
|
|
|
|
|
2006-12-12 10:13:50 -06:00
|
|
|
mpViewShell->GetViewFrame()->GetBindings().Invalidate( SidArray );
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
delete pDlg;
|
|
|
|
}
|
|
|
|
|
|
|
|
rReq.Ignore ();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-12-14 09:54:33 -06:00
|
|
|
void FuArea::Activate()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void FuArea::Deactivate()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2004-01-20 03:55:56 -06:00
|
|
|
} // end of namespace sd
|