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 <com/sun/star/ui/dialogs/TemplateDescription.hpp>
21 : #include <hintids.hxx>
22 : #include <vcl/msgbox.hxx>
23 : #include <vcl/svapp.hxx>
24 : #include <svl/urihelper.hxx>
25 : #include <view.hxx>
26 : #include <sfx2/docfile.hxx>
27 : #include <sfx2/filedlghelper.hxx>
28 : #include <docsh.hxx>
29 : #include <wrtsh.hxx>
30 : #include <fldbas.hxx>
31 : #include <fldmgr.hxx>
32 : #include <docufld.hxx>
33 : #include <uitool.hxx>
34 : #include <javaedit.hxx>
35 :
36 : #include <fldui.hrc>
37 : #include <globals.hrc>
38 :
39 : using namespace ::com::sun::star;
40 :
41 0 : SwJavaEditDialog::SwJavaEditDialog(vcl::Window* pParent, SwWrtShell* pWrtSh) :
42 : SvxStandardDialog(pParent, "InsertScriptDialog", "modules/swriter/ui/insertscript.ui"),
43 :
44 : bNew(true),
45 : bIsUrl(false),
46 :
47 : pSh(pWrtSh),
48 : pFileDlg(NULL),
49 0 : pOldDefDlgParent(NULL)
50 : {
51 0 : get(m_pTypeED, "scripttype");
52 0 : get(m_pUrlRB, "url");
53 0 : get(m_pUrlED, "urlentry");
54 0 : get(m_pUrlPB, "browse");
55 0 : get(m_pEditRB, "text");
56 0 : get(m_pEditED, "textentry");
57 :
58 0 : get(m_pOKBtn, "ok");
59 0 : get(m_pPrevBtn, "previous");
60 0 : get(m_pNextBtn, "next");
61 :
62 : // install handler
63 0 : m_pPrevBtn->SetClickHdl( LINK( this, SwJavaEditDialog, PrevHdl ) );
64 0 : m_pNextBtn->SetClickHdl( LINK( this, SwJavaEditDialog, NextHdl ) );
65 0 : m_pOKBtn->SetClickHdl( LINK( this, SwJavaEditDialog, OKHdl ) );
66 :
67 0 : Link<> aLk = LINK(this, SwJavaEditDialog, RadioButtonHdl);
68 0 : m_pUrlRB->SetClickHdl(aLk);
69 0 : m_pEditRB->SetClickHdl(aLk);
70 0 : m_pUrlPB->SetClickHdl(LINK(this, SwJavaEditDialog, InsertFileHdl));
71 :
72 0 : vcl::Font aFont( m_pEditED->GetFont() );
73 0 : aFont.SetWeight( WEIGHT_LIGHT );
74 0 : m_pEditED->SetFont( aFont );
75 :
76 0 : pMgr = new SwFieldMgr(pSh);
77 0 : pField = static_cast<SwScriptField*>(pMgr->GetCurField());
78 :
79 0 : bNew = !(pField && pField->GetTyp()->Which() == RES_SCRIPTFLD);
80 :
81 0 : CheckTravel();
82 :
83 0 : if( !bNew )
84 0 : SetText( SW_RES( STR_JAVA_EDIT ) );
85 :
86 0 : RadioButtonHdl(NULL);
87 0 : }
88 :
89 0 : SwJavaEditDialog::~SwJavaEditDialog()
90 : {
91 0 : disposeOnce();
92 0 : }
93 :
94 0 : void SwJavaEditDialog::dispose()
95 : {
96 0 : pSh->EnterStdMode();
97 0 : delete pMgr;
98 0 : delete pFileDlg;
99 0 : Application::SetDefDialogParent( pOldDefDlgParent );
100 0 : m_pTypeED.clear();
101 0 : m_pUrlRB.clear();
102 0 : m_pEditRB.clear();
103 0 : m_pUrlPB.clear();
104 0 : m_pUrlED.clear();
105 0 : m_pEditED.clear();
106 0 : m_pOKBtn.clear();
107 0 : m_pPrevBtn.clear();
108 0 : m_pNextBtn.clear();
109 0 : pOldDefDlgParent.clear();
110 0 : SvxStandardDialog::dispose();
111 0 : }
112 :
113 0 : IMPL_LINK_NOARG(SwJavaEditDialog, PrevHdl)
114 : {
115 0 : pSh->EnterStdMode();
116 :
117 0 : SetField();
118 0 : pMgr->GoPrev();
119 0 : pField = static_cast<SwScriptField*>(pMgr->GetCurField());
120 0 : CheckTravel();
121 0 : RadioButtonHdl(NULL);
122 :
123 0 : return 0;
124 : }
125 :
126 0 : IMPL_LINK_NOARG(SwJavaEditDialog, NextHdl)
127 : {
128 0 : pSh->EnterStdMode();
129 :
130 0 : SetField();
131 0 : pMgr->GoNext();
132 0 : pField = static_cast<SwScriptField*>(pMgr->GetCurField());
133 0 : CheckTravel();
134 0 : RadioButtonHdl(NULL);
135 :
136 0 : return 0;
137 : }
138 :
139 0 : IMPL_LINK_NOARG(SwJavaEditDialog, OKHdl)
140 : {
141 0 : SetField();
142 0 : EndDialog( RET_OK );
143 0 : return 0;
144 : }
145 :
146 0 : void SwJavaEditDialog::Apply()
147 : {
148 0 : }
149 :
150 0 : void SwJavaEditDialog::CheckTravel()
151 : {
152 0 : bool bTravel = false;
153 0 : bool bNext(false), bPrev(false);
154 :
155 0 : if(!bNew)
156 : {
157 : // Traveling only when more than one field
158 0 : pSh->StartAction();
159 0 : pSh->CreateCrsr();
160 :
161 0 : bNext = pMgr->GoNext();
162 0 : if( bNext )
163 0 : pMgr->GoPrev();
164 :
165 0 : if( ( bPrev = pMgr->GoPrev() ) )
166 0 : pMgr->GoNext();
167 0 : bTravel |= bNext || bPrev;
168 :
169 0 : pSh->DestroyCrsr();
170 0 : pSh->EndAction();
171 :
172 0 : if (pField->IsCodeURL())
173 : {
174 0 : OUString sURL(pField->GetPar2());
175 0 : if(!sURL.isEmpty())
176 : {
177 0 : INetURLObject aINetURL(sURL);
178 0 : if(INetProtocol::File == aINetURL.GetProtocol())
179 0 : sURL = aINetURL.PathToFileName();
180 : }
181 0 : m_pUrlED->SetText(sURL);
182 0 : m_pEditED->SetText(OUString());
183 0 : m_pUrlRB->Check();
184 : }
185 : else
186 : {
187 0 : m_pEditED->SetText(pField->GetPar2());
188 0 : m_pUrlED->SetText(OUString());
189 0 : m_pEditRB->Check();
190 : }
191 0 : m_pTypeED->SetText(pField->GetPar1());
192 : }
193 :
194 0 : if ( !bTravel )
195 : {
196 0 : m_pPrevBtn->Hide();
197 0 : m_pNextBtn->Hide();
198 : }
199 : else
200 : {
201 0 : m_pPrevBtn->Enable(bPrev);
202 0 : m_pNextBtn->Enable(bNext);
203 : }
204 0 : }
205 :
206 0 : void SwJavaEditDialog::SetField()
207 : {
208 0 : if( !m_pOKBtn->IsEnabled() )
209 0 : return ;
210 :
211 0 : aType = m_pTypeED->GetText();
212 0 : bIsUrl = m_pUrlRB->IsChecked();
213 :
214 0 : if( bIsUrl )
215 : {
216 0 : aText = m_pUrlED->GetText();
217 0 : if (!aText.isEmpty())
218 : {
219 0 : SfxMedium* pMedium = pSh->GetView().GetDocShell()->GetMedium();
220 0 : INetURLObject aAbs;
221 0 : if( pMedium )
222 0 : aAbs = pMedium->GetURLObject();
223 :
224 0 : aText = URIHelper::SmartRel2Abs(
225 0 : aAbs, aText, URIHelper::GetMaybeFileHdl());
226 : }
227 : }
228 : else
229 0 : aText = m_pEditED->GetText();
230 :
231 0 : if( aType.isEmpty() )
232 0 : aType = "JavaScript";
233 : }
234 :
235 0 : bool SwJavaEditDialog::IsUpdate() const
236 : {
237 0 : return pField && ( sal_uInt32(bIsUrl ? 1 : 0) != pField->GetFormat() || pField->GetPar2() != aType || pField->GetPar1() != aText );
238 : }
239 :
240 0 : IMPL_LINK_NOARG(SwJavaEditDialog, RadioButtonHdl)
241 : {
242 0 : bool bEnable = m_pUrlRB->IsChecked();
243 0 : m_pUrlPB->Enable(bEnable);
244 0 : m_pUrlED->Enable(bEnable);
245 0 : m_pEditED->Enable(!bEnable);
246 :
247 0 : if( !bNew )
248 : {
249 0 : bEnable = !pSh->IsReadOnlyAvailable() || !pSh->HasReadonlySel();
250 0 : m_pOKBtn->Enable( bEnable );
251 0 : m_pUrlED->SetReadOnly( !bEnable );
252 0 : m_pEditED->SetReadOnly( !bEnable);
253 0 : m_pTypeED->SetReadOnly( !bEnable);
254 0 : if( m_pUrlPB->IsEnabled() && !bEnable )
255 0 : m_pUrlPB->Enable( false );
256 : }
257 0 : return 0;
258 : }
259 :
260 0 : IMPL_LINK( SwJavaEditDialog, InsertFileHdl, PushButton *, pBtn )
261 : {
262 0 : if ( !pFileDlg )
263 : {
264 0 : pOldDefDlgParent = Application::GetDefDialogParent();
265 0 : Application::SetDefDialogParent( pBtn );
266 :
267 : pFileDlg = new ::sfx2::FileDialogHelper(
268 : ui::dialogs::TemplateDescription::FILEOPEN_SIMPLE,
269 0 : SFXWB_INSERT, OUString("swriter") );
270 : }
271 :
272 0 : pFileDlg->StartExecuteModal( LINK( this, SwJavaEditDialog, DlgClosedHdl ) );
273 0 : return 0;
274 : }
275 :
276 0 : IMPL_LINK_NOARG(SwJavaEditDialog, DlgClosedHdl)
277 : {
278 0 : if ( pFileDlg->GetError() == ERRCODE_NONE )
279 : {
280 0 : OUString sFileName = pFileDlg->GetPath();
281 0 : if ( !sFileName.isEmpty() )
282 : {
283 0 : INetURLObject aINetURL( sFileName );
284 0 : if ( INetProtocol::File == aINetURL.GetProtocol() )
285 0 : sFileName = aINetURL.PathToFileName();
286 : }
287 0 : m_pUrlED->SetText( sFileName );
288 : }
289 :
290 0 : return 0;
291 0 : }
292 :
293 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|