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 "fuarea.hxx"
21 :
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"
30 :
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 :
38 : namespace sd {
39 0 : TYPEINIT1( FuArea, FuPoor );
40 :
41 :
42 0 : FuArea::FuArea( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* _pView, SdDrawDocument* pDoc, SfxRequest& rReq)
43 0 : : FuPoor(pViewSh, pWin, _pView, pDoc, rReq)
44 : {
45 0 : }
46 :
47 0 : rtl::Reference<FuPoor> FuArea::Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* _pView, SdDrawDocument* pDoc, SfxRequest& rReq )
48 : {
49 0 : rtl::Reference<FuPoor> xFunc( new FuArea( pViewSh, pWin, _pView, pDoc, rReq ) );
50 0 : xFunc->DoExecute(rReq);
51 0 : return xFunc;
52 : }
53 :
54 0 : void FuArea::DoExecute( SfxRequest& rReq )
55 : {
56 0 : const SfxItemSet* pArgs = rReq.GetArgs();
57 :
58 0 : if( !pArgs )
59 : {
60 0 : SfxItemSet aNewAttr( mpDoc->GetPool() );
61 0 : mpView->GetAttributes( aNewAttr );
62 :
63 0 : SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
64 : AbstractSvxAreaTabDialog * pDlg = pFact ? pFact->CreateSvxAreaTabDialog( NULL,
65 : &aNewAttr,
66 : mpDoc,
67 0 : true) : 0;
68 0 : if( pDlg && (pDlg->Execute() == RET_OK) )
69 : {
70 0 : mpView->SetAttributes (*(pDlg->GetOutputItemSet ()));
71 : }
72 :
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 };
83 :
84 0 : mpViewShell->GetViewFrame()->GetBindings().Invalidate( SidArray );
85 :
86 0 : delete pDlg;
87 : }
88 :
89 0 : rReq.Ignore ();
90 :
91 0 : }
92 :
93 0 : void FuArea::Activate()
94 : {
95 0 : }
96 :
97 0 : void FuArea::Deactivate()
98 : {
99 0 : }
100 :
101 0 : } // end of namespace sd
102 :
103 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|