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