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 "cuihyperdlg.hxx"
21 : #include <unotools/localfilehelper.hxx>
22 : #include <sfx2/filedlghelper.hxx>
23 : #include "com/sun/star/ui/dialogs/TemplateDescription.hpp"
24 :
25 : #include "hldoctp.hxx"
26 : #include "hlmarkwn_def.hxx"
27 :
28 : sal_Char const sHash[] = "#";
29 : sal_Char const sFileScheme[] = INET_FILE_SCHEME;
30 :
31 : /*************************************************************************
32 : |*
33 : |* Constructor / Destructor
34 : |*
35 : |************************************************************************/
36 :
37 0 : SvxHyperlinkDocTp::SvxHyperlinkDocTp ( vcl::Window *pParent, IconChoiceDialog* pDlg, const SfxItemSet& rItemSet)
38 : : SvxHyperlinkTabPageBase ( pParent, pDlg, "HyperlinkDocPage", "cui/ui/hyperlinkdocpage.ui", rItemSet ),
39 0 : mbMarkWndOpen ( false )
40 : {
41 0 : get(m_pCbbPath, "path");
42 0 : m_pCbbPath->SetSmartProtocol(INetProtocol::File);
43 0 : get(m_pBtFileopen, "fileopen");
44 0 : m_pBtFileopen->SetModeImage(Image(CUI_RES(RID_SVXBMP_FILEOPEN)));
45 0 : get(m_pEdTarget, "target");
46 0 : get(m_pFtFullURL, "url");
47 0 : get(m_pBtBrowse, "browse");
48 0 : m_pBtBrowse->SetModeImage(Image(CUI_RES(RID_SVXBMP_TARGET)));
49 :
50 : // Disable display of bitmap names.
51 0 : m_pBtBrowse->EnableTextDisplay (false);
52 0 : m_pBtFileopen->EnableTextDisplay (false);
53 :
54 0 : InitStdControls();
55 :
56 0 : m_pCbbPath->Show();
57 0 : OUString aFileScheme( INET_FILE_SCHEME );
58 0 : m_pCbbPath->SetBaseURL(aFileScheme);
59 0 : m_pCbbPath->SetHelpId( HID_HYPERDLG_DOC_PATH );
60 :
61 0 : SetExchangeSupport ();
62 :
63 : // set handlers
64 0 : m_pBtFileopen->SetClickHdl ( LINK ( this, SvxHyperlinkDocTp, ClickFileopenHdl_Impl ) );
65 0 : m_pBtBrowse->SetClickHdl ( LINK ( this, SvxHyperlinkDocTp, ClickTargetHdl_Impl ) );
66 0 : m_pCbbPath->SetModifyHdl ( LINK ( this, SvxHyperlinkDocTp, ModifiedPathHdl_Impl ) );
67 0 : m_pEdTarget->SetModifyHdl ( LINK ( this, SvxHyperlinkDocTp, ModifiedTargetHdl_Impl ) );
68 :
69 0 : m_pCbbPath->SetLoseFocusHdl( LINK ( this, SvxHyperlinkDocTp, LostFocusPathHdl_Impl ) );
70 :
71 0 : maTimer.SetTimeoutHdl ( LINK ( this, SvxHyperlinkDocTp, TimeoutHdl_Impl ) );
72 0 : }
73 :
74 0 : SvxHyperlinkDocTp::~SvxHyperlinkDocTp()
75 : {
76 0 : disposeOnce();
77 0 : }
78 :
79 0 : void SvxHyperlinkDocTp::dispose()
80 : {
81 0 : m_pCbbPath.clear();
82 0 : m_pBtFileopen.clear();
83 0 : m_pEdTarget.clear();
84 0 : m_pFtFullURL.clear();
85 0 : m_pBtBrowse.clear();
86 0 : SvxHyperlinkTabPageBase::dispose();
87 0 : }
88 :
89 : /*************************************************************************
90 : |*
91 : |* Fill all dialog-controls except controls in groupbox "more..."
92 : |*
93 : |************************************************************************/
94 :
95 0 : void SvxHyperlinkDocTp::FillDlgFields(const OUString& rStrURL)
96 : {
97 0 : sal_Int32 nPos = rStrURL.indexOf(sHash);
98 : // path
99 0 : m_pCbbPath->SetText ( rStrURL.copy( 0, ( nPos == -1 ? rStrURL.getLength() : nPos ) ) );
100 :
101 : // set target in document at editfield
102 0 : OUString aStrMark;
103 0 : if ( nPos != -1 && nPos < rStrURL.getLength()-1 )
104 0 : aStrMark = rStrURL.copy( nPos+1 );
105 0 : m_pEdTarget->SetText ( aStrMark );
106 :
107 0 : ModifiedPathHdl_Impl ( NULL );
108 0 : }
109 :
110 : /*************************************************************************
111 : |*
112 : |* retrieve current url-string
113 : |*
114 : |************************************************************************/
115 :
116 0 : OUString SvxHyperlinkDocTp::GetCurrentURL ()
117 : {
118 : // get data from dialog-controls
119 0 : OUString aStrURL;
120 0 : OUString aStrPath ( m_pCbbPath->GetText() );
121 0 : const OUString aBaseURL ( m_pCbbPath->GetBaseURL() );
122 0 : OUString aStrMark( m_pEdTarget->GetText() );
123 :
124 0 : if ( aStrPath != aEmptyStr )
125 : {
126 0 : INetURLObject aURL( aStrPath );
127 0 : if ( aURL.GetProtocol() != INetProtocol::NotValid ) // maybe the path is already a valid
128 0 : aStrURL = aStrPath; // hyperlink, then we can use this path directly
129 : else
130 0 : utl::LocalFileHelper::ConvertSystemPathToURL( aStrPath, aBaseURL, aStrURL );
131 :
132 : //#105788# always create a URL even if it is not valid
133 0 : if( aStrURL == aEmptyStr )
134 0 : aStrURL = aStrPath;
135 : }
136 :
137 0 : if( aStrMark != aEmptyStr )
138 : {
139 0 : aStrURL += OUString( sHash );
140 0 : aStrURL += aStrMark;
141 : }
142 :
143 0 : return aStrURL;
144 : }
145 :
146 : /*************************************************************************
147 : |*
148 : |* retrieve and prepare data from dialog-fields
149 : |*
150 : |************************************************************************/
151 :
152 0 : void SvxHyperlinkDocTp::GetCurentItemData ( OUString& rStrURL, OUString& aStrName,
153 : OUString& aStrIntName, OUString& aStrFrame,
154 : SvxLinkInsertMode& eMode )
155 : {
156 : // get data from standard-fields
157 0 : rStrURL = GetCurrentURL();
158 :
159 0 : if( rStrURL.equalsIgnoreAsciiCase( sFileScheme ) )
160 0 : rStrURL.clear();
161 :
162 0 : GetDataFromCommonFields( aStrName, aStrIntName, aStrFrame, eMode );
163 0 : }
164 :
165 : /*************************************************************************
166 : |*
167 : |* static method to create Tabpage
168 : |*
169 : |************************************************************************/
170 :
171 0 : VclPtr<IconChoicePage> SvxHyperlinkDocTp::Create( vcl::Window* pWindow, IconChoiceDialog* pDlg, const SfxItemSet& rItemSet )
172 : {
173 0 : return VclPtr<SvxHyperlinkDocTp>::Create( pWindow, pDlg, rItemSet );
174 : }
175 :
176 : /*************************************************************************
177 : |*
178 : |* Set initial focus
179 : |*
180 : |************************************************************************/
181 :
182 0 : void SvxHyperlinkDocTp::SetInitFocus()
183 : {
184 0 : m_pCbbPath->GrabFocus();
185 0 : }
186 :
187 : /*************************************************************************
188 : |*
189 : |* Click on imagebutton : fileopen
190 : |*
191 : |************************************************************************/
192 :
193 0 : IMPL_LINK_NOARG(SvxHyperlinkDocTp, ClickFileopenHdl_Impl)
194 : {
195 : // Open Fileopen-Dialog
196 : ::sfx2::FileDialogHelper aDlg(
197 : com::sun::star::ui::dialogs::TemplateDescription::FILEOPEN_SIMPLE, 0,
198 0 : GetParent() );
199 0 : OUString aOldURL( GetCurrentURL() );
200 0 : if( aOldURL.startsWithIgnoreAsciiCase( sFileScheme ) )
201 : {
202 0 : aDlg.SetDisplayDirectory( aOldURL );
203 : }
204 :
205 0 : DisableClose( true );
206 0 : ErrCode nError = aDlg.Execute();
207 0 : DisableClose( false );
208 :
209 0 : if ( ERRCODE_NONE == nError )
210 : {
211 0 : OUString aURL( aDlg.GetPath() );
212 0 : OUString aPath;
213 :
214 0 : utl::LocalFileHelper::ConvertURLToSystemPath( aURL, aPath );
215 :
216 0 : m_pCbbPath->SetBaseURL( aURL );
217 0 : m_pCbbPath->SetText( aPath );
218 :
219 0 : if ( aOldURL != GetCurrentURL() )
220 0 : ModifiedPathHdl_Impl (NULL);
221 : }
222 :
223 0 : return 0L;
224 : }
225 :
226 : /*************************************************************************
227 : |*
228 : |* Click on imagebutton : target
229 : |*
230 : |************************************************************************/
231 :
232 0 : IMPL_LINK_NOARG(SvxHyperlinkDocTp, ClickTargetHdl_Impl)
233 : {
234 0 : if ( GetPathType ( maStrURL ) == Type_ExistsFile ||
235 0 : maStrURL.isEmpty() ||
236 0 : maStrURL.equalsIgnoreAsciiCase( sFileScheme ) ||
237 0 : maStrURL.startsWith( sHash ) )
238 : {
239 0 : mpMarkWnd->SetError( LERR_NOERROR );
240 :
241 0 : EnterWait();
242 :
243 0 : if ( maStrURL.equalsIgnoreAsciiCase( sFileScheme ) )
244 0 : mpMarkWnd->RefreshTree ( aEmptyStr );
245 : else
246 0 : mpMarkWnd->RefreshTree ( maStrURL );
247 :
248 0 : LeaveWait();
249 : }
250 : else
251 0 : mpMarkWnd->SetError( LERR_DOCNOTOPEN );
252 :
253 0 : ShowMarkWnd ();
254 :
255 0 : return 0L;
256 : }
257 :
258 : /*************************************************************************
259 : |*
260 : |* Contens of combobox "Path" modified
261 : |*
262 : |************************************************************************/
263 :
264 0 : IMPL_LINK_NOARG(SvxHyperlinkDocTp, ModifiedPathHdl_Impl)
265 : {
266 0 : maStrURL = GetCurrentURL();
267 :
268 0 : maTimer.SetTimeout( 2500 );
269 0 : maTimer.Start();
270 :
271 0 : m_pFtFullURL->SetText( maStrURL );
272 :
273 0 : return 0L;
274 : }
275 :
276 : /*************************************************************************
277 : |*
278 : |* If path-field was modify, to browse the new doc after timeout
279 : |*
280 : |************************************************************************/
281 :
282 0 : IMPL_LINK_NOARG_TYPED(SvxHyperlinkDocTp, TimeoutHdl_Impl, Timer *, void)
283 : {
284 0 : if ( IsMarkWndVisible() && ( GetPathType( maStrURL )==Type_ExistsFile ||
285 0 : maStrURL.isEmpty() ||
286 0 : maStrURL.equalsIgnoreAsciiCase( sFileScheme ) ) )
287 : {
288 0 : EnterWait();
289 :
290 0 : if ( maStrURL.equalsIgnoreAsciiCase( sFileScheme ) )
291 0 : mpMarkWnd->RefreshTree ( aEmptyStr );
292 : else
293 0 : mpMarkWnd->RefreshTree ( maStrURL );
294 :
295 0 : LeaveWait();
296 : }
297 0 : }
298 :
299 : /*************************************************************************
300 : |*
301 : |* Contens of editfield "Target" modified
302 : |*
303 : |************************************************************************/
304 :
305 0 : IMPL_LINK_NOARG(SvxHyperlinkDocTp, ModifiedTargetHdl_Impl)
306 : {
307 0 : maStrURL = GetCurrentURL();
308 :
309 0 : if ( IsMarkWndVisible() )
310 0 : mpMarkWnd->SelectEntry ( m_pEdTarget->GetText() );
311 :
312 0 : m_pFtFullURL->SetText( maStrURL );
313 :
314 0 : return 0L;
315 : }
316 :
317 : /*************************************************************************
318 : |*
319 : |* editfield "Target" lost focus
320 : |*
321 : |************************************************************************/
322 :
323 0 : IMPL_LINK_NOARG(SvxHyperlinkDocTp, LostFocusPathHdl_Impl)
324 : {
325 0 : maStrURL = GetCurrentURL();
326 :
327 0 : m_pFtFullURL->SetText( maStrURL );
328 :
329 0 : return 0L;
330 : }
331 :
332 : /*************************************************************************
333 : |*
334 : |* Get String from Bookmark-Wnd
335 : |*
336 : |************************************************************************/
337 :
338 0 : void SvxHyperlinkDocTp::SetMarkStr ( const OUString& aStrMark )
339 : {
340 0 : m_pEdTarget->SetText ( aStrMark );
341 :
342 0 : ModifiedTargetHdl_Impl ( NULL );
343 0 : }
344 :
345 : /*************************************************************************
346 : |*
347 : |* retrieve kind of pathstr
348 : |*
349 : |************************************************************************/
350 :
351 0 : SvxHyperlinkDocTp::EPathType SvxHyperlinkDocTp::GetPathType ( const OUString& rStrPath )
352 : {
353 0 : INetURLObject aURL( rStrPath, INetProtocol::File );
354 :
355 0 : if( aURL.HasError() )
356 0 : return Type_Invalid;
357 : else
358 0 : return Type_ExistsFile;
359 0 : }
360 :
361 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|