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 "fumeasur.hxx"
21 : #include <vcl/msgbox.hxx>
22 : #include <sfx2/request.hxx>
23 : #include "View.hxx"
24 : #include "ViewShell.hxx"
25 : #include "drawdoc.hxx"
26 : #include <svx/svxdlg.hxx>
27 : #include <svx/dialogs.hrc>
28 :
29 : namespace sd {
30 :
31 0 : TYPEINIT1( FuMeasureDlg, FuPoor );
32 :
33 : /*************************************************************************
34 : |*
35 : |* Konstruktor
36 : |*
37 : \************************************************************************/
38 :
39 0 : FuMeasureDlg::FuMeasureDlg (
40 : ViewShell* pViewSh,
41 : ::sd::Window* pWin,
42 : ::sd::View* pView,
43 : SdDrawDocument* pDoc,
44 : SfxRequest& rReq)
45 0 : : FuPoor(pViewSh, pWin, pView, pDoc, rReq)
46 : {
47 0 : }
48 :
49 0 : FunctionReference FuMeasureDlg::Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq )
50 : {
51 0 : FunctionReference xFunc( new FuMeasureDlg( pViewSh, pWin, pView, pDoc, rReq ) );
52 0 : xFunc->DoExecute(rReq);
53 0 : return xFunc;
54 : }
55 :
56 0 : void FuMeasureDlg::DoExecute( SfxRequest& rReq )
57 : {
58 0 : SfxItemSet aNewAttr( mpDoc->GetPool() );
59 0 : mpView->GetAttributes( aNewAttr );
60 :
61 0 : const SfxItemSet* pArgs = rReq.GetArgs();
62 :
63 0 : if( !pArgs )
64 : {
65 0 : SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
66 0 : ::std::auto_ptr<SfxAbstractDialog> pDlg( pFact ? pFact->CreateSfxDialog( NULL, aNewAttr, mpView, RID_SVXPAGE_MEASURE) : 0 );
67 :
68 0 : if( pDlg.get() && (pDlg->Execute() == RET_OK) )
69 : {
70 0 : rReq.Done( *pDlg->GetOutputItemSet() );
71 0 : pArgs = rReq.GetArgs();
72 0 : }
73 : }
74 :
75 0 : if( pArgs )
76 0 : mpView->SetAttributes( *pArgs );
77 0 : }
78 :
79 :
80 9 : } // end of namespace sd
81 :
82 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|