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 "doclinkdialog.hxx"
21 :
22 : #include <com/sun/star/ui/dialogs/TemplateDescription.hpp>
23 : #include <comphelper/processfactory.hxx>
24 : #include <cuires.hrc>
25 : #include <svl/filenotation.hxx>
26 : #include <vcl/layout.hxx>
27 : #include <ucbhelper/content.hxx>
28 : #include <dialmgr.hxx>
29 : #include <tools/urlobj.hxx>
30 : #include <sfx2/filedlghelper.hxx>
31 : #include <sfx2/docfilt.hxx>
32 :
33 : namespace svx
34 : {
35 :
36 :
37 : using namespace ::com::sun::star;
38 : using namespace ::com::sun::star::uno;
39 : using namespace ::com::sun::star::ucb;
40 : using namespace ::svt;
41 :
42 0 : ODocumentLinkDialog::ODocumentLinkDialog( vcl::Window* _pParent, bool _bCreateNew )
43 : : ModalDialog(_pParent, "DatabaseLinkDialog",
44 : "cui/ui/databaselinkdialog.ui")
45 0 : ,m_bCreatingNew(_bCreateNew)
46 : {
47 0 : get(m_pURL, "url");
48 0 : get(m_pOK, "ok");
49 0 : get(m_pName, "name");
50 0 : get(m_pBrowseFile, "browse");
51 :
52 0 : if (!m_bCreatingNew)
53 0 : SetText(get<FixedText>("alttitle")->GetText());
54 :
55 0 : m_pURL->SetFilter("*.odb");
56 :
57 0 : m_pName->SetModifyHdl( LINK(this, ODocumentLinkDialog, OnTextModified) );
58 0 : m_pURL->SetModifyHdl( LINK(this, ODocumentLinkDialog, OnTextModified) );
59 0 : m_pBrowseFile->SetClickHdl( LINK(this, ODocumentLinkDialog, OnBrowseFile) );
60 0 : m_pOK->SetClickHdl( LINK(this, ODocumentLinkDialog, OnOk) );
61 :
62 0 : m_pURL->SetDropDownLineCount(10);
63 :
64 0 : validate();
65 :
66 0 : m_pURL->SetDropDownLineCount( 5 );
67 0 : }
68 :
69 0 : ODocumentLinkDialog::~ODocumentLinkDialog()
70 : {
71 0 : disposeOnce();
72 0 : }
73 :
74 0 : void ODocumentLinkDialog::dispose()
75 : {
76 0 : m_pURL.clear();
77 0 : m_pBrowseFile.clear();
78 0 : m_pName.clear();
79 0 : m_pOK.clear();
80 0 : ModalDialog::dispose();
81 0 : }
82 :
83 :
84 0 : void ODocumentLinkDialog::setLink( const OUString& _rName, const OUString& _rURL )
85 : {
86 0 : m_pName->SetText(_rName);
87 0 : m_pURL->SetText(_rURL);
88 0 : validate();
89 0 : }
90 :
91 :
92 0 : void ODocumentLinkDialog::getLink( OUString& _rName, OUString& _rURL ) const
93 : {
94 0 : _rName = m_pName->GetText();
95 0 : _rURL = m_pURL->GetText();
96 0 : }
97 :
98 :
99 0 : void ODocumentLinkDialog::validate( )
100 : {
101 :
102 0 : m_pOK->Enable( ( !m_pName->GetText().isEmpty()) && ( !m_pURL->GetText().isEmpty() ) );
103 0 : }
104 :
105 :
106 0 : IMPL_LINK_NOARG(ODocumentLinkDialog, OnOk)
107 : {
108 : // get the current URL
109 0 : OUString sURL = m_pURL->GetText();
110 0 : OFileNotation aTransformer(sURL);
111 0 : sURL = aTransformer.get(OFileNotation::N_URL);
112 :
113 : // check for the existence of the selected file
114 0 : bool bFileExists = false;
115 : try
116 : {
117 0 : ::ucbhelper::Content aFile(sURL, Reference< XCommandEnvironment >(), comphelper::getProcessComponentContext());
118 0 : if (aFile.isDocument())
119 0 : bFileExists = true;
120 : }
121 0 : catch(Exception&)
122 : {
123 : }
124 :
125 0 : if (!bFileExists)
126 : {
127 0 : OUString sMsg = CUI_RES(STR_LINKEDDOC_DOESNOTEXIST);
128 0 : sMsg = sMsg.replaceFirst("$file$", m_pURL->GetText());
129 0 : ScopedVclPtrInstance< MessageDialog > aError(this, sMsg);
130 0 : aError->Execute();
131 0 : return 0L;
132 : } // if (!bFileExists)
133 0 : INetURLObject aURL( sURL );
134 0 : if ( aURL.GetProtocol() != INetProtocol::File )
135 : {
136 0 : OUString sMsg = CUI_RES(STR_LINKEDDOC_NO_SYSTEM_FILE);
137 0 : sMsg = sMsg.replaceFirst("$file$", m_pURL->GetText());
138 0 : ScopedVclPtrInstance< MessageDialog > aError(this, sMsg);
139 0 : aError->Execute();
140 0 : return 0L;
141 : }
142 :
143 0 : OUString sCurrentText = m_pName->GetText();
144 0 : if ( m_aNameValidator.IsSet() )
145 : {
146 0 : if ( !m_aNameValidator.Call( &sCurrentText ) )
147 : {
148 0 : OUString sMsg = CUI_RES(STR_NAME_CONFLICT);
149 0 : sMsg = sMsg.replaceFirst("$file$", sCurrentText);
150 0 : ScopedVclPtrInstance< MessageDialog > aError(this, sMsg, VCL_MESSAGE_INFO);
151 0 : aError->Execute();
152 :
153 0 : m_pName->SetSelection(Selection(0,sCurrentText.getLength()));
154 0 : m_pName->GrabFocus();
155 0 : return 0L;
156 : }
157 : }
158 :
159 0 : EndDialog(RET_OK);
160 0 : return 0L;
161 : }
162 :
163 :
164 0 : IMPL_LINK_NOARG(ODocumentLinkDialog, OnBrowseFile)
165 : {
166 : ::sfx2::FileDialogHelper aFileDlg(
167 0 : ui::dialogs::TemplateDescription::FILEOPEN_READONLY_VERSION, 0);
168 0 : const SfxFilter* pFilter = SfxFilter::GetFilterByName(OUString("StarOffice XML (Base)"));
169 0 : if ( pFilter )
170 : {
171 0 : aFileDlg.AddFilter(pFilter->GetUIName(),pFilter->GetDefaultExtension());
172 0 : aFileDlg.SetCurrentFilter(pFilter->GetUIName());
173 : }
174 :
175 0 : OUString sPath = m_pURL->GetText();
176 0 : if (!sPath.isEmpty())
177 : {
178 0 : OFileNotation aTransformer( sPath, OFileNotation::N_SYSTEM );
179 0 : aFileDlg.SetDisplayDirectory( aTransformer.get( OFileNotation::N_URL ) );
180 : }
181 :
182 0 : if (0 != aFileDlg.Execute())
183 0 : return 0L;
184 :
185 0 : if (m_pName->GetText().isEmpty())
186 : { // default the name to the base of the chosen URL
187 0 : INetURLObject aParser;
188 :
189 0 : aParser.SetSmartProtocol(INetProtocol::File);
190 0 : aParser.SetSmartURL(aFileDlg.GetPath());
191 :
192 0 : m_pName->SetText(aParser.getBase(INetURLObject::LAST_SEGMENT, true, INetURLObject::DECODE_WITH_CHARSET));
193 :
194 0 : m_pName->SetSelection(Selection(0,m_pName->GetText().getLength()));
195 0 : m_pName->GrabFocus();
196 : }
197 : else
198 0 : m_pURL->GrabFocus();
199 :
200 : // get the path in system notation
201 0 : OFileNotation aTransformer(aFileDlg.GetPath(), OFileNotation::N_URL);
202 0 : m_pURL->SetText(aTransformer.get(OFileNotation::N_SYSTEM));
203 :
204 0 : validate();
205 0 : return 0L;
206 : }
207 :
208 :
209 0 : IMPL_LINK_NOARG(ODocumentLinkDialog, OnTextModified)
210 : {
211 0 : validate( );
212 0 : return 0L;
213 : }
214 :
215 :
216 0 : }
217 :
218 :
219 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|