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 :
21 : #include <cppuhelper/implbase2.hxx>
22 : #include <cppuhelper/implementationentry.hxx>
23 : #include <unotools/configmgr.hxx>
24 : #include <comphelper/servicedecl.hxx>
25 : #include <comphelper/unwrapargs.hxx>
26 : #include <i18nlangtag/mslangid.hxx>
27 : #include <vcl/svapp.hxx>
28 : #include <vcl/msgbox.hxx>
29 : #include <toolkit/helper/vclunohelper.hxx>
30 : #include <com/sun/star/lang/XServiceInfo.hpp>
31 : #include <svtools/svmedit.hxx>
32 : #include <svl/lstner.hxx>
33 : #include <vcl/xtextedt.hxx>
34 : #include <vcl/scrbar.hxx>
35 : #include <vcl/threadex.hxx>
36 : #include <vcl/builderfactory.hxx>
37 :
38 : #include <boost/bind.hpp>
39 : #include "dp_gui_shared.hxx"
40 : #include "license_dialog.hxx"
41 : #include "dp_gui.hrc"
42 :
43 : using namespace ::dp_misc;
44 : namespace cssu = ::com::sun::star::uno;
45 : using namespace ::com::sun::star;
46 : using namespace ::com::sun::star::uno;
47 :
48 : namespace dp_gui {
49 :
50 : class LicenseView : public MultiLineEdit, public SfxListener
51 : {
52 : bool mbEndReached;
53 : Link<> maEndReachedHdl;
54 : Link<> maScrolledHdl;
55 :
56 : public:
57 : LicenseView( vcl::Window* pParent, WinBits nStyle );
58 : virtual ~LicenseView();
59 : virtual void dispose() SAL_OVERRIDE;
60 :
61 : void ScrollDown( ScrollType eScroll );
62 :
63 : bool IsEndReached() const;
64 0 : bool EndReached() const { return mbEndReached; }
65 :
66 0 : void SetEndReachedHdl( const Link<>& rHdl ) { maEndReachedHdl = rHdl; }
67 :
68 0 : void SetScrolledHdl( const Link<>& rHdl ) { maScrolledHdl = rHdl; }
69 :
70 : virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) SAL_OVERRIDE;
71 :
72 : protected:
73 : using MultiLineEdit::Notify;
74 : };
75 :
76 : struct LicenseDialogImpl : public ModalDialog
77 : {
78 : cssu::Reference<cssu::XComponentContext> m_xComponentContext;
79 : VclPtr<FixedText> m_pFtHead;
80 : VclPtr<FixedImage> m_pArrow1;
81 : VclPtr<FixedImage> m_pArrow2;
82 : VclPtr<LicenseView> m_pLicense;
83 : VclPtr<PushButton> m_pDown;
84 :
85 : VclPtr<PushButton> m_pAcceptButton;
86 : VclPtr<PushButton> m_pDeclineButton;
87 :
88 : DECL_LINK(PageDownHdl, void *);
89 : DECL_LINK(ScrolledHdl, void *);
90 : DECL_LINK(EndReachedHdl, void *);
91 : DECL_LINK(CancelHdl, void *);
92 : DECL_LINK(AcceptHdl, void *);
93 :
94 : bool m_bLicenseRead;
95 :
96 : LicenseDialogImpl(
97 : vcl::Window * pParent,
98 : css::uno::Reference< css::uno::XComponentContext > const & xContext,
99 : const OUString & sExtensionName,
100 : const OUString & sLicenseText);
101 0 : virtual ~LicenseDialogImpl() { disposeOnce(); }
102 : virtual void dispose() SAL_OVERRIDE;
103 :
104 : virtual void Activate() SAL_OVERRIDE;
105 :
106 : };
107 :
108 0 : void LicenseDialogImpl::dispose()
109 : {
110 0 : m_pFtHead.clear();
111 0 : m_pArrow1.clear();
112 0 : m_pArrow2.clear();
113 0 : m_pLicense.clear();
114 0 : m_pDown.clear();
115 0 : m_pAcceptButton.clear();
116 0 : m_pDeclineButton.clear();
117 0 : ModalDialog::dispose();
118 0 : }
119 :
120 :
121 0 : LicenseView::LicenseView( vcl::Window* pParent, WinBits nStyle )
122 0 : : MultiLineEdit( pParent, nStyle )
123 : {
124 0 : SetLeftMargin( 5 );
125 0 : mbEndReached = IsEndReached();
126 0 : StartListening( *GetTextEngine() );
127 0 : }
128 :
129 0 : VCL_BUILDER_DECL_FACTORY(LicenseView)
130 : {
131 0 : WinBits nWinStyle = WB_CLIPCHILDREN|WB_LEFT;
132 0 : OString sBorder = VclBuilder::extractCustomProperty(rMap);
133 0 : if (!sBorder.isEmpty())
134 0 : nWinStyle |= WB_BORDER;
135 0 : rRet = VclPtr<LicenseView>::Create(pParent, nWinStyle | WB_VSCROLL);
136 0 : }
137 :
138 0 : LicenseView::~LicenseView()
139 : {
140 0 : disposeOnce();
141 0 : }
142 :
143 0 : void LicenseView::dispose()
144 : {
145 0 : maEndReachedHdl = Link<>();
146 0 : maScrolledHdl = Link<>();
147 0 : EndListeningAll();
148 0 : MultiLineEdit::dispose();
149 0 : }
150 :
151 0 : void LicenseView::ScrollDown( ScrollType eScroll )
152 : {
153 0 : ScrollBar* pScroll = GetVScrollBar();
154 0 : if ( pScroll )
155 0 : pScroll->DoScrollAction( eScroll );
156 0 : }
157 :
158 0 : bool LicenseView::IsEndReached() const
159 : {
160 : bool bEndReached;
161 :
162 0 : ExtTextView* pView = GetTextView();
163 0 : ExtTextEngine* pEdit = GetTextEngine();
164 0 : sal_uLong nHeight = pEdit->GetTextHeight();
165 0 : Size aOutSize = pView->GetWindow()->GetOutputSizePixel();
166 0 : Point aBottom( 0, aOutSize.Height() );
167 :
168 0 : if ( (sal_uLong) pView->GetDocPos( aBottom ).Y() >= nHeight - 1 )
169 0 : bEndReached = true;
170 : else
171 0 : bEndReached = false;
172 :
173 0 : return bEndReached;
174 : }
175 :
176 0 : void LicenseView::Notify( SfxBroadcaster&, const SfxHint& rHint )
177 : {
178 0 : const TextHint* pTextHint = dynamic_cast<const TextHint*>(&rHint);
179 0 : if ( pTextHint )
180 : {
181 0 : bool bLastVal = EndReached();
182 0 : sal_uLong nId = pTextHint->GetId();
183 :
184 0 : if ( nId == TEXT_HINT_PARAINSERTED )
185 : {
186 0 : if ( bLastVal )
187 0 : mbEndReached = IsEndReached();
188 : }
189 0 : else if ( nId == TEXT_HINT_VIEWSCROLLED )
190 : {
191 0 : if ( ! mbEndReached )
192 0 : mbEndReached = IsEndReached();
193 0 : maScrolledHdl.Call( this );
194 : }
195 :
196 0 : if ( EndReached() && !bLastVal )
197 : {
198 0 : maEndReachedHdl.Call( this );
199 : }
200 : }
201 0 : }
202 :
203 :
204 :
205 0 : LicenseDialogImpl::LicenseDialogImpl(
206 : vcl::Window * pParent,
207 : cssu::Reference< cssu::XComponentContext > const & xContext,
208 : const OUString & sExtensionName,
209 : const OUString & sLicenseText)
210 : : ModalDialog(pParent, "LicenseDialog", "desktop/ui/licensedialog.ui")
211 : , m_xComponentContext(xContext)
212 0 : , m_bLicenseRead(false)
213 : {
214 0 : get(m_pFtHead, "head");
215 0 : get(m_pArrow1, "arrow1");
216 0 : get(m_pArrow2, "arrow2");
217 0 : get(m_pDown, "down");
218 0 : get(m_pAcceptButton, "accept");
219 0 : get(m_pDeclineButton, "decline");
220 0 : m_pArrow1->Show(true);
221 0 : m_pArrow2->Show(false);
222 0 : get(m_pLicense, "textview");
223 :
224 0 : Size aSize(m_pLicense->LogicToPixel(Size(290, 170), MAP_APPFONT));
225 0 : m_pLicense->set_width_request(aSize.Width());
226 0 : m_pLicense->set_height_request(aSize.Height());
227 :
228 0 : m_pLicense->SetText(sLicenseText);
229 0 : m_pFtHead->SetText(m_pFtHead->GetText() + "\n" + sExtensionName);
230 :
231 0 : m_pAcceptButton->SetClickHdl( LINK(this, LicenseDialogImpl, AcceptHdl) );
232 0 : m_pDeclineButton->SetClickHdl( LINK(this, LicenseDialogImpl, CancelHdl) );
233 :
234 0 : m_pLicense->SetEndReachedHdl( LINK(this, LicenseDialogImpl, EndReachedHdl) );
235 0 : m_pLicense->SetScrolledHdl( LINK(this, LicenseDialogImpl, ScrolledHdl) );
236 0 : m_pDown->SetClickHdl( LINK(this, LicenseDialogImpl, PageDownHdl) );
237 :
238 : // We want a automatic repeating page down button
239 0 : WinBits aStyle = m_pDown->GetStyle();
240 0 : aStyle |= WB_REPEAT;
241 0 : m_pDown->SetStyle( aStyle );
242 0 : }
243 :
244 0 : IMPL_LINK_NOARG(LicenseDialogImpl, AcceptHdl)
245 : {
246 0 : EndDialog(RET_OK);
247 0 : return 0;
248 : }
249 :
250 0 : IMPL_LINK_NOARG(LicenseDialogImpl, CancelHdl)
251 : {
252 0 : EndDialog(RET_CANCEL);
253 0 : return 0;
254 : }
255 :
256 0 : void LicenseDialogImpl::Activate()
257 : {
258 0 : if (!m_bLicenseRead)
259 : {
260 : //Only enable the scroll down button if the license text does not fit into the window
261 0 : if (m_pLicense->IsEndReached())
262 : {
263 0 : m_pDown->Disable();
264 0 : m_pAcceptButton->Enable();
265 0 : m_pAcceptButton->GrabFocus();
266 : }
267 : else
268 : {
269 0 : m_pDown->Enable();
270 0 : m_pDown->GrabFocus();
271 0 : m_pAcceptButton->Disable();
272 : }
273 : }
274 0 : }
275 :
276 0 : IMPL_LINK_NOARG(LicenseDialogImpl, ScrolledHdl)
277 : {
278 :
279 0 : if (m_pLicense->IsEndReached())
280 0 : m_pDown->Disable();
281 : else
282 0 : m_pDown->Enable();
283 :
284 0 : return 0;
285 : }
286 :
287 0 : IMPL_LINK_NOARG(LicenseDialogImpl, PageDownHdl)
288 : {
289 0 : m_pLicense->ScrollDown( SCROLL_PAGEDOWN );
290 0 : return 0;
291 : }
292 :
293 0 : IMPL_LINK_NOARG(LicenseDialogImpl, EndReachedHdl)
294 : {
295 0 : m_pAcceptButton->Enable();
296 0 : m_pAcceptButton->GrabFocus();
297 0 : m_pArrow1->Show(false);
298 0 : m_pArrow2->Show(true);
299 0 : m_bLicenseRead = true;
300 0 : return 0;
301 : }
302 :
303 :
304 :
305 :
306 :
307 :
308 0 : LicenseDialog::LicenseDialog( Sequence<Any> const& args,
309 : Reference<XComponentContext> const& xComponentContext)
310 0 : : m_xComponentContext(xComponentContext)
311 : {
312 0 : comphelper::unwrapArgs( args, m_parent, m_sExtensionName, m_sLicenseText );
313 0 : }
314 :
315 : // XExecutableDialog
316 :
317 0 : void LicenseDialog::setTitle( OUString const & ) throw (RuntimeException, std::exception)
318 : {
319 :
320 0 : }
321 :
322 :
323 0 : sal_Int16 LicenseDialog::execute() throw (RuntimeException, std::exception)
324 : {
325 : return vcl::solarthread::syncExecute(
326 0 : boost::bind( &LicenseDialog::solar_execute, this));
327 : }
328 :
329 0 : sal_Int16 LicenseDialog::solar_execute()
330 : {
331 : VclPtr<LicenseDialogImpl> dlg(
332 : VclPtr<LicenseDialogImpl>::Create(
333 :
334 : VCLUnoHelper::GetWindow(m_parent),
335 0 : m_xComponentContext, m_sExtensionName, m_sLicenseText));
336 :
337 0 : return dlg->Execute();
338 : }
339 :
340 3 : } // namespace dp_gui
341 :
342 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|