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 SwFldMgr;
77 0 : pFld = (SwScriptField*)pMgr->GetCurFld();
78 :
79 0 : bNew = !(pFld && pFld->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 : delete pMgr;
92 0 : delete pFileDlg;
93 0 : Application::SetDefDialogParent( pOldDefDlgParent );
94 0 : }
95 :
96 0 : IMPL_LINK_NOARG_INLINE_START(SwJavaEditDialog, PrevHdl)
97 : {
98 0 : SetFld();
99 0 : pMgr->GoPrev();
100 0 : pFld = (SwScriptField*)pMgr->GetCurFld();
101 0 : CheckTravel();
102 0 : RadioButtonHdl(NULL);
103 :
104 0 : return 0;
105 : }
106 0 : IMPL_LINK_NOARG_INLINE_END(SwJavaEditDialog, PrevHdl)
107 :
108 0 : IMPL_LINK_NOARG_INLINE_START(SwJavaEditDialog, NextHdl)
109 : {
110 0 : SetFld();
111 0 : pMgr->GoNext();
112 0 : pFld = (SwScriptField*)pMgr->GetCurFld();
113 0 : CheckTravel();
114 0 : RadioButtonHdl(NULL);
115 :
116 0 : return 0;
117 : }
118 0 : IMPL_LINK_NOARG_INLINE_END(SwJavaEditDialog, NextHdl)
119 :
120 0 : IMPL_LINK_NOARG(SwJavaEditDialog, OKHdl)
121 : {
122 0 : SetFld();
123 0 : EndDialog( RET_OK );
124 0 : return 0;
125 : }
126 :
127 0 : void SwJavaEditDialog::Apply()
128 : {
129 0 : }
130 :
131 0 : void SwJavaEditDialog::CheckTravel()
132 : {
133 0 : bool bTravel = false;
134 0 : bool bNext(false), bPrev(false);
135 :
136 0 : if(!bNew)
137 : {
138 : // Traveling only when more than one field
139 0 : pSh->StartAction();
140 0 : pSh->CreateCrsr();
141 :
142 0 : bNext = pMgr->GoNext();
143 0 : if( bNext )
144 0 : pMgr->GoPrev();
145 :
146 0 : if( ( bPrev = pMgr->GoPrev() ) )
147 0 : pMgr->GoNext();
148 0 : bTravel |= bNext || bPrev;
149 :
150 0 : pSh->DestroyCrsr();
151 0 : pSh->EndAction();
152 :
153 0 : if (pFld->IsCodeURL())
154 : {
155 0 : OUString sURL(pFld->GetPar2());
156 0 : if(!sURL.isEmpty())
157 : {
158 0 : INetURLObject aINetURL(sURL);
159 0 : if(INET_PROT_FILE == aINetURL.GetProtocol())
160 0 : sURL = aINetURL.PathToFileName();
161 : }
162 0 : m_pUrlED->SetText(sURL);
163 0 : m_pEditED->SetText(OUString());
164 0 : m_pUrlRB->Check();
165 : }
166 : else
167 : {
168 0 : m_pEditED->SetText(pFld->GetPar2());
169 0 : m_pUrlED->SetText(OUString());
170 0 : m_pEditRB->Check();
171 : }
172 0 : m_pTypeED->SetText(pFld->GetPar1());
173 : }
174 :
175 0 : if ( !bTravel )
176 : {
177 0 : m_pPrevBtn->Hide();
178 0 : m_pNextBtn->Hide();
179 : }
180 : else
181 : {
182 0 : m_pPrevBtn->Enable(bPrev);
183 0 : m_pNextBtn->Enable(bNext);
184 : }
185 0 : }
186 :
187 0 : void SwJavaEditDialog::SetFld()
188 : {
189 0 : if( !m_pOKBtn->IsEnabled() )
190 0 : return ;
191 :
192 0 : aType = m_pTypeED->GetText();
193 0 : bIsUrl = m_pUrlRB->IsChecked();
194 :
195 0 : if( bIsUrl )
196 : {
197 0 : aText = m_pUrlED->GetText();
198 0 : if (!aText.isEmpty())
199 : {
200 0 : SfxMedium* pMedium = pSh->GetView().GetDocShell()->GetMedium();
201 0 : INetURLObject aAbs;
202 0 : if( pMedium )
203 0 : aAbs = pMedium->GetURLObject();
204 :
205 0 : aText = URIHelper::SmartRel2Abs(
206 0 : aAbs, aText, URIHelper::GetMaybeFileHdl());
207 : }
208 : }
209 : else
210 0 : aText = m_pEditED->GetText();
211 :
212 0 : if( aType.isEmpty() )
213 0 : aType = "JavaScript";
214 : }
215 :
216 0 : bool SwJavaEditDialog::IsUpdate() const
217 : {
218 0 : return pFld && ( sal_uInt32(bIsUrl ? 1 : 0) != pFld->GetFormat() || pFld->GetPar2() != aType || pFld->GetPar1() != aText );
219 : }
220 :
221 0 : IMPL_LINK_NOARG(SwJavaEditDialog, RadioButtonHdl)
222 : {
223 0 : bool bEnable = m_pUrlRB->IsChecked();
224 0 : m_pUrlPB->Enable(bEnable);
225 0 : m_pUrlED->Enable(bEnable);
226 0 : m_pEditED->Enable(!bEnable);
227 :
228 0 : if( !bNew )
229 : {
230 0 : bEnable = !pSh->IsReadOnlyAvailable() || !pSh->HasReadonlySel();
231 0 : m_pOKBtn->Enable( bEnable );
232 0 : m_pUrlED->SetReadOnly( !bEnable );
233 0 : m_pEditED->SetReadOnly( !bEnable);
234 0 : m_pTypeED->SetReadOnly( !bEnable);
235 0 : if( m_pUrlPB->IsEnabled() && !bEnable )
236 0 : m_pUrlPB->Enable( false );
237 : }
238 0 : return 0;
239 : }
240 :
241 0 : IMPL_LINK( SwJavaEditDialog, InsertFileHdl, PushButton *, pBtn )
242 : {
243 0 : if ( !pFileDlg )
244 : {
245 0 : pOldDefDlgParent = Application::GetDefDialogParent();
246 0 : Application::SetDefDialogParent( pBtn );
247 :
248 : pFileDlg = new ::sfx2::FileDialogHelper(
249 : ui::dialogs::TemplateDescription::FILEOPEN_SIMPLE,
250 0 : SFXWB_INSERT, OUString("swriter") );
251 : }
252 :
253 0 : pFileDlg->StartExecuteModal( LINK( this, SwJavaEditDialog, DlgClosedHdl ) );
254 0 : return 0;
255 : }
256 :
257 0 : IMPL_LINK_NOARG(SwJavaEditDialog, DlgClosedHdl)
258 : {
259 0 : if ( pFileDlg->GetError() == ERRCODE_NONE )
260 : {
261 0 : OUString sFileName = pFileDlg->GetPath();
262 0 : if ( !sFileName.isEmpty() )
263 : {
264 0 : INetURLObject aINetURL( sFileName );
265 0 : if ( INET_PROT_FILE == aINetURL.GetProtocol() )
266 0 : sFileName = aINetURL.PathToFileName();
267 : }
268 0 : m_pUrlED->SetText( sFileName );
269 : }
270 :
271 0 : return 0;
272 0 : }
273 :
274 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|