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