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 "informationdialog.hxx"
22 : #include "optimizationstats.hxx"
23 : #include <com/sun/star/graphic/GraphicProvider.hpp>
24 : #include <com/sun/star/graphic/XGraphicProvider.hpp>
25 : #include <com/sun/star/graphic/XGraphic.hpp>
26 : #include <com/sun/star/io/TempFile.hpp>
27 : #include <com/sun/star/ui/dialogs/ExecutableDialogResults.hpp>
28 : #include "com/sun/star/util/URL.hpp"
29 : #include "com/sun/star/util/URLTransformer.hpp"
30 : #include "com/sun/star/util/XURLTransformer.hpp"
31 : #include <rtl/ustrbuf.hxx>
32 : #include <sal/macros.h>
33 :
34 : #define DIALOG_WIDTH 240
35 : #define DIALOG_HEIGHT 80
36 : #define PAGE_POS_X 35
37 : #define PAGE_WIDTH ( DIALOG_WIDTH - PAGE_POS_X ) - 6
38 :
39 :
40 :
41 : // - INFORMATIONDIALOG -
42 :
43 :
44 : using namespace ::rtl;
45 : using namespace ::com::sun::star;
46 : using namespace ::com::sun::star::io;
47 : using namespace ::com::sun::star::ui;
48 : using namespace ::com::sun::star::awt;
49 : using namespace ::com::sun::star::uno;
50 : using namespace ::com::sun::star::util;
51 : using namespace ::com::sun::star::lang;
52 : using namespace ::com::sun::star::frame;
53 : using namespace ::com::sun::star::beans;
54 : using namespace ::com::sun::star::script;
55 : using namespace ::com::sun::star::container;
56 :
57 :
58 :
59 :
60 :
61 0 : OUString InsertFixedText( InformationDialog& rInformationDialog, const OUString& rControlName, const OUString& rLabel,
62 : sal_Int32 nXPos, sal_Int32 nYPos, sal_Int32 nWidth, sal_Int32 nHeight, sal_Bool bMultiLine, sal_Int16 nTabIndex )
63 : {
64 : OUString pNames[] = {
65 : OUString("Height"),
66 : OUString("Label"),
67 : OUString("MultiLine"),
68 : OUString("PositionX"),
69 : OUString("PositionY"),
70 : OUString("Step"),
71 : OUString("TabIndex"),
72 0 : OUString("Width") };
73 :
74 : Any pValues[] = {
75 : Any( nHeight ),
76 : Any( rLabel ),
77 : Any( bMultiLine ),
78 : Any( nXPos ),
79 : Any( nYPos ),
80 : Any( (sal_Int16)0 ),
81 : Any( nTabIndex ),
82 0 : Any( nWidth ) };
83 :
84 0 : sal_Int32 nCount = SAL_N_ELEMENTS( pNames );
85 :
86 0 : Sequence< OUString > aNames( pNames, nCount );
87 0 : Sequence< Any > aValues( pValues, nCount );
88 :
89 0 : rInformationDialog.insertFixedText( rControlName, aNames, aValues );
90 0 : return rControlName;
91 : }
92 :
93 0 : OUString InsertImage(
94 : InformationDialog& rInformationDialog,
95 : const OUString& rControlName,
96 : const OUString& rURL,
97 : sal_Int32 nPosX,
98 : sal_Int32 nPosY,
99 : sal_Int32 nWidth,
100 : sal_Int32 nHeight,
101 : sal_Bool bScale )
102 : {
103 : OUString pNames[] = {
104 : OUString("Border"),
105 : OUString("Height"),
106 : OUString("ImageURL"),
107 : OUString("PositionX"),
108 : OUString("PositionY"),
109 : OUString("ScaleImage"),
110 0 : OUString("Width") };
111 :
112 : Any pValues[] = {
113 : Any( sal_Int16( 0 ) ),
114 : Any( nHeight ),
115 : Any( rURL ),
116 : Any( nPosX ),
117 : Any( nPosY ),
118 : Any( bScale ),
119 0 : Any( nWidth ) };
120 0 : sal_Int32 nCount = SAL_N_ELEMENTS( pNames );
121 :
122 0 : Sequence< OUString > aNames( pNames, nCount );
123 0 : Sequence< Any > aValues( pValues, nCount );
124 :
125 0 : rInformationDialog.insertImage( rControlName, aNames, aValues );
126 0 : return rControlName;
127 : }
128 :
129 0 : OUString InsertCheckBox( InformationDialog& rInformationDialog, const OUString& rControlName,
130 : const Reference< XItemListener > xItemListener, const OUString& rLabel,
131 : sal_Int32 nXPos, sal_Int32 nYPos, sal_Int32 nWidth, sal_Int32 nHeight, sal_Int16 nTabIndex )
132 : {
133 : OUString pNames[] = {
134 : OUString("Enabled"),
135 : OUString("Height"),
136 : OUString("Label"),
137 : OUString("PositionX"),
138 : OUString("PositionY"),
139 : OUString("Step"),
140 : OUString("TabIndex"),
141 0 : OUString("Width") };
142 :
143 : Any pValues[] = {
144 : Any( sal_True ),
145 : Any( nHeight ),
146 : Any( rLabel ),
147 : Any( nXPos ),
148 : Any( nYPos ),
149 : Any( (sal_Int16)0 ),
150 : Any( nTabIndex ),
151 0 : Any( nWidth ) };
152 :
153 0 : sal_Int32 nCount = SAL_N_ELEMENTS( pNames );
154 :
155 0 : Sequence< OUString > aNames( pNames, nCount );
156 0 : Sequence< Any > aValues( pValues, nCount );
157 :
158 0 : Reference< XCheckBox > xCheckBox( rInformationDialog.insertCheckBox( rControlName, aNames, aValues ) );
159 0 : if ( xItemListener.is() )
160 0 : xCheckBox->addItemListener( xItemListener );
161 0 : return rControlName;
162 : }
163 :
164 0 : OUString InsertButton( InformationDialog& rInformationDialog, const OUString& rControlName, Reference< XActionListener >& xActionListener,
165 : sal_Int32 nXPos, sal_Int32 nYPos, sal_Int32 nWidth, sal_Int32 nHeight, sal_Int16 nTabIndex, PPPOptimizerTokenEnum nResID )
166 : {
167 : OUString pNames[] = {
168 : OUString("Enabled"),
169 : OUString("Height"),
170 : OUString("Label"),
171 : OUString("PositionX"),
172 : OUString("PositionY"),
173 : OUString("PushButtonType"),
174 : OUString("Step"),
175 : OUString("TabIndex"),
176 0 : OUString("Width") };
177 :
178 : Any pValues[] = {
179 : Any( sal_True ),
180 : Any( nHeight ),
181 : Any( rInformationDialog.getString( nResID ) ),
182 : Any( nXPos ),
183 : Any( nYPos ),
184 : Any( static_cast< sal_Int16 >( PushButtonType_OK ) ),
185 : Any( (sal_Int16)0 ),
186 : Any( nTabIndex ),
187 0 : Any( nWidth ) };
188 :
189 :
190 0 : sal_Int32 nCount = SAL_N_ELEMENTS( pNames );
191 :
192 0 : Sequence< OUString > aNames( pNames, nCount );
193 0 : Sequence< Any > aValues( pValues, nCount );
194 :
195 0 : rInformationDialog.insertButton( rControlName, xActionListener, aNames, aValues );
196 0 : return rControlName;
197 : }
198 :
199 :
200 0 : static OUString ImpValueOfInMB( const sal_Int64& rVal )
201 : {
202 0 : double fVal( static_cast<double>( rVal ) );
203 0 : fVal /= ( 1 << 20 );
204 0 : fVal += 0.05;
205 0 : OUStringBuffer aVal( OUString::number( fVal ) );
206 0 : sal_Int32 nX( OUString( aVal.getStr() ).indexOf( '.', 0 ) );
207 0 : if ( nX > 0 )
208 0 : aVal.setLength( nX + 2 );
209 0 : return aVal.makeStringAndClear();
210 : }
211 :
212 0 : void InformationDialog::InitDialog()
213 : {
214 0 : sal_Int32 nDialogHeight = DIALOG_HEIGHT;
215 0 : if ( maSaveAsURL.isEmpty() )
216 0 : nDialogHeight -= 22;
217 :
218 : // setting the dialog properties
219 : OUString pNames[] = {
220 : OUString("Closeable"),
221 : OUString("Height"),
222 : OUString("Moveable"),
223 : OUString("PositionX"),
224 : OUString("PositionY"),
225 : OUString("Title"),
226 0 : OUString("Width") };
227 :
228 : Any pValues[] = {
229 : Any( sal_True ),
230 : Any( nDialogHeight ),
231 : Any( sal_True ),
232 : Any( sal_Int32( 245 ) ),
233 : Any( sal_Int32( 115 ) ),
234 : Any( getString( STR_SUN_OPTIMIZATION_WIZARD2 ) ),
235 0 : Any( sal_Int32( DIALOG_WIDTH ) ) };
236 :
237 0 : sal_Int32 nCount = SAL_N_ELEMENTS( pNames );
238 :
239 0 : Sequence< OUString > aNames( pNames, nCount );
240 0 : Sequence< Any > aValues( pValues, nCount );
241 :
242 0 : mxDialogModelMultiPropertySet->setPropertyValues( aNames, aValues );
243 :
244 0 : sal_Int64 nSource = mnSourceSize;
245 0 : sal_Int64 nDest = mnDestSize;
246 :
247 0 : PPPOptimizerTokenEnum eInfoString( STR_INFO_1 );
248 0 : if ( mnSourceSize )
249 : {
250 0 : if ( mnDestSize )
251 0 : eInfoString = STR_INFO_1;
252 : else
253 : {
254 0 : eInfoString = STR_INFO_2;
255 0 : nDest = mnApproxSize;
256 : }
257 : }
258 0 : else if ( mnDestSize )
259 0 : eInfoString = STR_INFO_3;
260 : else
261 : {
262 0 : eInfoString = STR_INFO_4;
263 0 : nDest = mnApproxSize;
264 : }
265 :
266 0 : OUString aTitle;
267 0 : if ( !maSaveAsURL.isEmpty() )
268 : {
269 0 : Reference< XURLTransformer > xURLTransformer( URLTransformer::create(mxContext) );
270 0 : util::URL aURL, aPresentationURL;
271 0 : aURL.Complete = maSaveAsURL;
272 0 : xURLTransformer->parseSmart( aURL, OUString() );
273 :
274 0 : const OUString sFileProtocol( "file:///" );
275 0 : aPresentationURL.Complete = sFileProtocol.concat( aURL.Name );
276 0 : aTitle = xURLTransformer->getPresentation( aPresentationURL, sal_False );
277 :
278 0 : if ( aTitle.match( sFileProtocol, 0 ) )
279 0 : aTitle = aTitle.replaceAt( 0, sFileProtocol.getLength(), OUString() );
280 : }
281 :
282 0 : OUString aInfoString( getString( eInfoString ) );
283 0 : const OUString aOldSizePlaceholder( "%OLDFILESIZE" );
284 0 : const OUString aNewSizePlaceholder( "%NEWFILESIZE" );
285 0 : const OUString aTitlePlaceholder( !aTitle.isEmpty() ? OUString("%TITLE" )
286 0 : : OUString("'%TITLE'") );
287 :
288 0 : sal_Int32 i = aInfoString.indexOf( aOldSizePlaceholder, 0 );
289 0 : if ( i >= 0 )
290 0 : aInfoString = aInfoString.replaceAt( i, aOldSizePlaceholder.getLength(), ImpValueOfInMB( nSource ) );
291 :
292 0 : sal_Int32 j = aInfoString.indexOf( aNewSizePlaceholder, 0 );
293 0 : if ( j >= 0 )
294 0 : aInfoString = aInfoString.replaceAt( j, aNewSizePlaceholder.getLength(), ImpValueOfInMB( nDest ) );
295 :
296 0 : sal_Int32 k = aInfoString.indexOf( aTitlePlaceholder, 0 );
297 0 : if ( k >= 0 )
298 0 : aInfoString = aInfoString.replaceAt( k, aTitlePlaceholder.getLength(), aTitle );
299 :
300 0 : com::sun::star::uno::Reference< com::sun::star::awt::XItemListener > xItemListener;
301 : InsertImage( *this,
302 : OUString( "aboutimage" ),
303 : OUString( "private:standardimage/query" ),
304 0 : 5, 5, 25, 25, sal_False );
305 0 : InsertFixedText( *this, OUString("fixedtext"), aInfoString, PAGE_POS_X, 6, PAGE_WIDTH, 24, sal_True, 0 );
306 0 : if ( !maSaveAsURL.isEmpty() )
307 0 : InsertCheckBox( *this, "OpenNewDocument", xItemListener, getString( STR_AUTOMATICALLY_OPEN ), PAGE_POS_X, 42, PAGE_WIDTH, 8, 1 );
308 0 : InsertButton( *this, OUString("button"), mxActionListener, DIALOG_WIDTH / 2 - 25, nDialogHeight - 20, 50, 14, 2, STR_OK );
309 :
310 0 : sal_Bool bOpenNewDocument = mrbOpenNewDocument;
311 0 : setControlProperty( "OpenNewDocument", "State", Any( (sal_Int16)bOpenNewDocument ) );
312 0 : }
313 :
314 :
315 :
316 0 : InformationDialog::InformationDialog( const Reference< XComponentContext > &rxContext, Reference< XFrame >& rxFrame, const OUString& rSaveAsURL, sal_Bool& rbOpenNewDocument, const sal_Int64& rSourceSize, const sal_Int64& rDestSize, const sal_Int64& rApproxSize ) :
317 : UnoDialog( rxContext, rxFrame ),
318 : ConfigurationAccess( rxContext, NULL ),
319 : mxContext( rxContext ),
320 : mxFrame( rxFrame ),
321 0 : mxActionListener( new OKActionListener( *this ) ),
322 : mnSourceSize( rSourceSize ),
323 : mnDestSize( rDestSize ),
324 : mnApproxSize( rApproxSize ),
325 : mrbOpenNewDocument( rbOpenNewDocument ),
326 0 : maSaveAsURL( rSaveAsURL )
327 : {
328 0 : Reference< XFrame > xFrame( mxController->getFrame() );
329 0 : Reference< XWindow > xContainerWindow( xFrame->getContainerWindow() );
330 0 : Reference< XWindowPeer > xWindowPeer( xContainerWindow, UNO_QUERY_THROW );
331 0 : createWindowPeer( xWindowPeer );
332 :
333 0 : InitDialog();
334 0 : }
335 :
336 :
337 :
338 0 : InformationDialog::~InformationDialog()
339 : {
340 0 : }
341 :
342 :
343 :
344 0 : sal_Bool InformationDialog::execute()
345 : {
346 0 : UnoDialog::execute();
347 :
348 0 : if ( !maSaveAsURL.isEmpty() )
349 : {
350 0 : sal_Int16 nInt16 = 0;
351 0 : Any aAny( getControlProperty( "OpenNewDocument", "State" ) );
352 0 : if ( aAny >>= nInt16 )
353 : {
354 0 : sal_Bool bOpenNewDocument = static_cast< sal_Bool >( nInt16 );
355 0 : mrbOpenNewDocument = bOpenNewDocument;
356 0 : }
357 : }
358 0 : return mbStatus;
359 : }
360 :
361 :
362 :
363 0 : void OKActionListener::actionPerformed( const ActionEvent& rEvent )
364 : throw ( com::sun::star::uno::RuntimeException, std::exception )
365 : {
366 0 : if ( rEvent.ActionCommand == "button" )
367 : {
368 0 : mrInformationDialog.endExecute( sal_True );
369 : }
370 0 : }
371 0 : void OKActionListener::disposing( const ::com::sun::star::lang::EventObject& /* Source */ )
372 : throw ( com::sun::star::uno::RuntimeException, std::exception )
373 : {
374 0 : }
375 :
376 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|