bump product version to 5.0.4.1
[LibreOffice.git] / sd / source / ui / func / fuarea.cxx
blobef48a6c89bf8bda6cde9b895858a259e8cb72ee0
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include "fuarea.hxx"
22 #include <svx/svxids.hrc>
23 #include <vcl/msgbox.hxx>
24 #include <svl/intitem.hxx>
25 #include <svl/stritem.hxx>
26 #include <sfx2/request.hxx>
27 #include <sfx2/viewfrm.hxx>
28 #include <sfx2/bindings.hxx>
29 #include "ViewShell.hxx"
31 #include "drawdoc.hxx"
32 #include "View.hxx"
33 #include "Window.hxx"
34 #include "app.hrc"
35 #include <svx/svxdlg.hxx>
36 #include <svx/dialogs.hrc>
37 #include <boost/scoped_ptr.hpp>
39 namespace sd {
40 TYPEINIT1( FuArea, FuPoor );
42 FuArea::FuArea( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* _pView, SdDrawDocument* pDoc, SfxRequest& rReq)
43 : FuPoor(pViewSh, pWin, _pView, pDoc, rReq)
47 rtl::Reference<FuPoor> FuArea::Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* _pView, SdDrawDocument* pDoc, SfxRequest& rReq )
49 rtl::Reference<FuPoor> xFunc( new FuArea( pViewSh, pWin, _pView, pDoc, rReq ) );
50 xFunc->DoExecute(rReq);
51 return xFunc;
54 void FuArea::DoExecute( SfxRequest& rReq )
56 const SfxItemSet* pArgs = rReq.GetArgs();
58 if( !pArgs )
60 SfxItemSet aNewAttr( mpDoc->GetPool() );
61 mpView->GetAttributes( aNewAttr );
63 SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
64 boost::scoped_ptr<AbstractSvxAreaTabDialog> pDlg(pFact ? pFact->CreateSvxAreaTabDialog( NULL,
65 &aNewAttr,
66 mpDoc,
67 true) : 0);
68 if( pDlg && (pDlg->Execute() == RET_OK) )
70 mpView->SetAttributes (*(pDlg->GetOutputItemSet ()));
73 // attributes changed, update Listboxes in Objectbars
74 static sal_uInt16 SidArray[] = {
75 SID_ATTR_FILL_STYLE,
76 SID_ATTR_FILL_COLOR,
77 SID_ATTR_FILL_GRADIENT,
78 SID_ATTR_FILL_HATCH,
79 SID_ATTR_FILL_BITMAP,
80 SID_ATTR_FILL_TRANSPARENCE,
81 SID_ATTR_FILL_FLOATTRANSPARENCE,
82 0 };
84 mpViewShell->GetViewFrame()->GetBindings().Invalidate( SidArray );
87 rReq.Ignore ();
91 void FuArea::Activate()
95 void FuArea::Deactivate()
99 } // end of namespace sd
101 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */