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