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 : #ifdef SD_DLLIMPLEMENTATION
22 : #undef SD_DLLIMPLEMENTATION
23 : #endif
24 : #include <vcl/vclenum.hxx>
25 : #include <vcl/wrkwin.hxx>
26 :
27 : #include "strings.hrc"
28 : #include "sdresid.hxx"
29 : #include "DrawDocShell.hxx"
30 : #include "sdmod.hxx"
31 : #include "sdiocmpt.hxx"
32 : #include "vectdlg.hxx"
33 : #include "vectdlg.hrc"
34 : #include <vcl/bmpacc.hxx>
35 : #include <vcl/msgbox.hxx>
36 : #include <vcl/metaact.hxx>
37 :
38 : // -----------
39 : // - Defines -
40 : // -----------
41 :
42 : #define VECTORIZE_MAX_EXTENT 512
43 :
44 : // ------------------
45 : // - SdVectorizeDlg -
46 : // ------------------
47 :
48 0 : SdVectorizeDlg::SdVectorizeDlg(
49 : Window* pParent, const Bitmap& rBmp, ::sd::DrawDocShell* pDocShell ) :
50 : ModalDialog ( pParent, SdResId( DLG_VECTORIZE ) ),
51 : mpDocSh ( pDocShell ),
52 : aGrpSettings ( this, SdResId( GRP_SETTINGS ) ),
53 : aFtLayers ( this, SdResId( FT_LAYERS ) ),
54 : aNmLayers ( this, SdResId( NM_LAYERS ) ),
55 : aFtReduce ( this, SdResId( FT_REDUCE ) ),
56 : aMtReduce ( this, SdResId( MT_REDUCE ) ),
57 : aFtFillHoles ( this, SdResId( FT_FILLHOLES ) ),
58 : aMtFillHoles ( this, SdResId( MT_FILLHOLES ) ),
59 : aCbFillHoles ( this, SdResId( CB_FILLHOLES ) ),
60 : aFtOriginal ( this, SdResId( FT_ORIGINAL ) ),
61 : aBmpWin ( this, SdResId( CTL_BMP ) ),
62 : aFtVectorized ( this, SdResId( FT_VECTORIZED ) ),
63 : aMtfWin ( this, SdResId( CTL_WMF ) ),
64 : aGrpPrgs ( this, SdResId( GRP_PRGS ) ),
65 : aPrgs ( this, SdResId( WND_PRGS ) ),
66 : aBtnOK ( this, SdResId( BTN_OK ) ),
67 : aBtnCancel ( this, SdResId( BTN_CANCEL ) ),
68 : aBtnHelp ( this, SdResId( BTN_HELP ) ),
69 : aBtnPreview ( this, SdResId( BTN_PREVIEW ) ),
70 0 : aBmp ( rBmp )
71 : {
72 0 : FreeResource();
73 :
74 0 : aBtnPreview.SetClickHdl( LINK( this, SdVectorizeDlg, ClickPreviewHdl ) );
75 0 : aBtnOK.SetClickHdl( LINK( this, SdVectorizeDlg, ClickOKHdl ) );
76 0 : aNmLayers.SetModifyHdl( LINK( this, SdVectorizeDlg, ModifyHdl ) );
77 0 : aMtReduce.SetModifyHdl( LINK( this, SdVectorizeDlg, ModifyHdl ) );
78 0 : aMtFillHoles.SetModifyHdl( LINK( this, SdVectorizeDlg, ModifyHdl ) );
79 0 : aCbFillHoles.SetToggleHdl( LINK( this, SdVectorizeDlg, ToggleHdl ) );
80 :
81 : // disable 3D border
82 0 : aBmpWin.SetBorderStyle(WINDOW_BORDER_MONO);
83 0 : aMtfWin.SetBorderStyle(WINDOW_BORDER_MONO);
84 :
85 0 : LoadSettings();
86 0 : InitPreviewBmp();
87 0 : }
88 :
89 : // -----------------------------------------------------------------------------
90 :
91 0 : SdVectorizeDlg::~SdVectorizeDlg()
92 : {
93 0 : }
94 :
95 : // -----------------------------------------------------------------------------
96 :
97 0 : Rectangle SdVectorizeDlg::GetRect( const Size& rDispSize, const Size& rBmpSize ) const
98 : {
99 0 : Rectangle aRect;
100 :
101 0 : if( rBmpSize.Width() && rBmpSize.Height() && rDispSize.Width() && rDispSize.Height() )
102 : {
103 0 : Size aBmpSize( rBmpSize );
104 0 : const double fGrfWH = (double) aBmpSize.Width() / aBmpSize.Height();
105 0 : const double fWinWH = (double) rDispSize.Width() / rDispSize.Height();
106 :
107 0 : if( fGrfWH < fWinWH )
108 : {
109 0 : aBmpSize.Width() = (long) ( rDispSize.Height() * fGrfWH );
110 0 : aBmpSize.Height()= rDispSize.Height();
111 : }
112 : else
113 : {
114 0 : aBmpSize.Width() = rDispSize.Width();
115 0 : aBmpSize.Height()= (long) ( rDispSize.Width() / fGrfWH);
116 : }
117 :
118 0 : const Point aBmpPos( ( rDispSize.Width() - aBmpSize.Width() ) >> 1,
119 0 : ( rDispSize.Height() - aBmpSize.Height() ) >> 1 );
120 :
121 0 : aRect = Rectangle( aBmpPos, aBmpSize );
122 : }
123 :
124 0 : return aRect;
125 : }
126 :
127 : // -----------------------------------------------------------------------------
128 :
129 0 : void SdVectorizeDlg::InitPreviewBmp()
130 : {
131 0 : const Rectangle aRect( GetRect( aBmpWin.GetSizePixel(), aBmp.GetSizePixel() ) );
132 :
133 0 : aPreviewBmp = aBmp;
134 0 : aPreviewBmp.Scale( aRect.GetSize() );
135 0 : aBmpWin.SetGraphic( aPreviewBmp );
136 0 : }
137 :
138 : // -----------------------------------------------------------------------------
139 :
140 0 : Bitmap SdVectorizeDlg::GetPreparedBitmap( Bitmap& rBmp, Fraction& rScale )
141 : {
142 0 : Bitmap aNew( rBmp );
143 0 : const Size aSizePix( aNew.GetSizePixel() );
144 :
145 0 : if( aSizePix.Width() > VECTORIZE_MAX_EXTENT || aSizePix.Height() > VECTORIZE_MAX_EXTENT )
146 : {
147 0 : const Rectangle aRect( GetRect( Size( VECTORIZE_MAX_EXTENT, VECTORIZE_MAX_EXTENT ), aSizePix ) );
148 0 : rScale = Fraction( aSizePix.Width(), aRect.GetWidth() );
149 0 : aNew.Scale( aRect.GetSize() );
150 : }
151 : else
152 0 : rScale = Fraction( 1, 1 );
153 :
154 0 : aNew.ReduceColors( (sal_uInt16) aNmLayers.GetValue(), BMP_REDUCE_SIMPLE );
155 :
156 0 : return aNew;
157 : }
158 :
159 : // -----------------------------------------------------------------------------
160 :
161 0 : void SdVectorizeDlg::Calculate( Bitmap& rBmp, GDIMetaFile& rMtf )
162 : {
163 0 : mpDocSh->SetWaitCursor( sal_True );
164 0 : aPrgs.SetValue( 0 );
165 :
166 0 : Fraction aScale;
167 0 : Bitmap aTmp( GetPreparedBitmap( rBmp, aScale ) );
168 :
169 0 : if( !!aTmp )
170 : {
171 0 : const Link aPrgsHdl( LINK( this, SdVectorizeDlg, ProgressHdl ) );
172 0 : aTmp.Vectorize( rMtf, (sal_uInt8) aMtReduce.GetValue(), BMP_VECTORIZE_OUTER | BMP_VECTORIZE_REDUCE_EDGES, &aPrgsHdl );
173 :
174 0 : if( aCbFillHoles.IsChecked() )
175 : {
176 0 : GDIMetaFile aNewMtf;
177 0 : BitmapReadAccess* pRAcc = aTmp.AcquireReadAccess();
178 :
179 0 : if( pRAcc )
180 : {
181 0 : const long nWidth = pRAcc->Width();
182 0 : const long nHeight = pRAcc->Height();
183 0 : const long nTileX = static_cast<long>(aMtFillHoles.GetValue());
184 0 : const long nTileY = static_cast<long>(aMtFillHoles.GetValue());
185 0 : const long nCountX = nWidth / nTileX;
186 0 : const long nCountY = nHeight / nTileY;
187 0 : const long nRestX = nWidth % nTileX;
188 0 : const long nRestY = nHeight % nTileY;
189 :
190 0 : MapMode aMap( rMtf.GetPrefMapMode() );
191 0 : aNewMtf.SetPrefSize( rMtf.GetPrefSize() );
192 0 : aNewMtf.SetPrefMapMode( aMap );
193 :
194 0 : for( long nTY = 0; nTY < nCountY; nTY++ )
195 : {
196 0 : const long nY = nTY * nTileY;
197 :
198 0 : for( long nTX = 0; nTX < nCountX; nTX++ )
199 0 : AddTile( pRAcc, aNewMtf, nTX * nTileX, nTY * nTileY, nTileX, nTileY );
200 :
201 0 : if( nRestX )
202 0 : AddTile( pRAcc, aNewMtf, nCountX * nTileX, nY, nRestX, nTileY );
203 : }
204 :
205 0 : if( nRestY )
206 : {
207 0 : const long nY = nCountY * nTileY;
208 :
209 0 : for( long nTX = 0; nTX < nCountX; nTX++ )
210 0 : AddTile( pRAcc, aNewMtf, nTX * nTileX, nY, nTileX, nRestY );
211 :
212 0 : if( nRestX )
213 0 : AddTile( pRAcc, aNewMtf, nCountX * nTileX, nCountY * nTileY, nRestX, nRestY );
214 : }
215 :
216 :
217 0 : aTmp.ReleaseAccess( pRAcc );
218 :
219 0 : for( size_t n = 0, nCount = rMtf.GetActionSize(); n < nCount; n++ )
220 0 : aNewMtf.AddAction( rMtf.GetAction( n )->Clone() );
221 :
222 0 : aMap.SetScaleX( aMap.GetScaleX() * aScale );
223 0 : aMap.SetScaleY( aMap.GetScaleY() * aScale );
224 0 : aNewMtf.SetPrefMapMode( aMap );
225 0 : rMtf = aNewMtf;
226 0 : }
227 : }
228 : }
229 :
230 0 : aPrgs.SetValue( 0 );
231 0 : mpDocSh->SetWaitCursor( sal_False );
232 0 : }
233 :
234 : // -----------------------------------------------------------------------------
235 :
236 0 : void SdVectorizeDlg::AddTile( BitmapReadAccess* pRAcc, GDIMetaFile& rMtf,
237 : long nPosX, long nPosY, long nWidth, long nHeight )
238 : {
239 0 : sal_uLong nSumR = 0UL, nSumG = 0UL, nSumB = 0UL;
240 0 : const long nRight = nPosX + nWidth - 1L;
241 0 : const long nBottom = nPosY + nHeight - 1L;
242 0 : const double fMult = 1.0 / ( nWidth * nHeight );
243 :
244 0 : for( long nY = nPosY; nY <= nBottom; nY++ )
245 : {
246 0 : for( long nX = nPosX; nX <= nRight; nX++ )
247 : {
248 0 : const BitmapColor aPixel( pRAcc->GetColor( nY, nX ) );
249 :
250 0 : nSumR += aPixel.GetRed();
251 0 : nSumG += aPixel.GetGreen();
252 0 : nSumB += aPixel.GetBlue();
253 0 : }
254 : }
255 :
256 0 : const Color aColor( (sal_uInt8) FRound( nSumR * fMult ),
257 0 : (sal_uInt8) FRound( nSumG * fMult ),
258 0 : (sal_uInt8) FRound( nSumB * fMult ) );
259 :
260 0 : Rectangle aRect( Point( nPosX, nPosY ), Size( nWidth + 1, nHeight + 1 ) );
261 0 : const Size& rMaxSize = rMtf.GetPrefSize();
262 :
263 0 : aRect = PixelToLogic( aRect, rMtf.GetPrefMapMode() );
264 :
265 0 : if( aRect.Right() > ( rMaxSize.Width() - 1L ) )
266 0 : aRect.Right() = rMaxSize.Width() - 1L;
267 :
268 0 : if( aRect.Bottom() > ( rMaxSize.Height() - 1L ) )
269 0 : aRect.Bottom() = rMaxSize.Height() - 1L;
270 :
271 0 : rMtf.AddAction( new MetaLineColorAction( aColor, sal_True ) );
272 0 : rMtf.AddAction( new MetaFillColorAction( aColor, sal_True ) );
273 0 : rMtf.AddAction( new MetaRectAction( aRect ) );
274 0 : }
275 :
276 : // -----------------------------------------------------------------------------
277 :
278 0 : IMPL_LINK( SdVectorizeDlg, ProgressHdl, void*, pData )
279 : {
280 0 : aPrgs.SetValue( (sal_uInt16)(sal_uLong) pData );
281 0 : return 0L;
282 : }
283 :
284 : // -----------------------------------------------------------------------------
285 :
286 0 : IMPL_LINK_NOARG(SdVectorizeDlg, ClickPreviewHdl)
287 : {
288 0 : Calculate( aBmp, aMtf );
289 0 : aMtfWin.SetGraphic( aMtf );
290 0 : aBtnPreview.Disable();
291 :
292 0 : return 0L;
293 : }
294 :
295 : // -----------------------------------------------------------------------------
296 :
297 0 : IMPL_LINK_NOARG(SdVectorizeDlg, ClickOKHdl)
298 : {
299 0 : if( aBtnPreview.IsEnabled() )
300 0 : Calculate( aBmp, aMtf );
301 :
302 0 : SaveSettings();
303 0 : EndDialog( RET_OK );
304 :
305 0 : return 0L;
306 : }
307 :
308 : // -----------------------------------------------------------------------------
309 :
310 0 : IMPL_LINK( SdVectorizeDlg, ToggleHdl, CheckBox*, pCb )
311 : {
312 0 : if( pCb->IsChecked() )
313 : {
314 0 : aFtFillHoles.Enable();
315 0 : aMtFillHoles.Enable();
316 : }
317 : else
318 : {
319 0 : aFtFillHoles.Disable();
320 0 : aMtFillHoles.Disable();
321 : }
322 :
323 0 : ModifyHdl( NULL );
324 :
325 0 : return 0L;
326 : }
327 :
328 : // -----------------------------------------------------------------------------
329 :
330 0 : IMPL_LINK_NOARG(SdVectorizeDlg, ModifyHdl)
331 : {
332 0 : aBtnPreview.Enable();
333 0 : return 0L;
334 : }
335 :
336 : // -----------------------------------------------------------------------------
337 :
338 0 : void SdVectorizeDlg::LoadSettings()
339 : {
340 0 : SvStorageStreamRef xIStm( SD_MOD()->GetOptionStream(
341 : rtl::OUString( SD_OPTION_VECTORIZE ) ,
342 0 : SD_OPTION_LOAD ) );
343 : sal_uInt16 nLayers;
344 : sal_uInt16 nReduce;
345 : sal_uInt16 nFillHoles;
346 : sal_Bool bFillHoles;
347 :
348 0 : if( xIStm.Is() )
349 : {
350 0 : SdIOCompat aCompat( *xIStm, STREAM_READ );
351 0 : *xIStm >> nLayers >> nReduce >> nFillHoles >> bFillHoles;
352 : }
353 : else
354 : {
355 0 : nLayers = 8;
356 0 : nReduce = 0;
357 0 : nFillHoles = 32;
358 0 : bFillHoles = sal_False;
359 : }
360 :
361 0 : aNmLayers.SetValue( nLayers );
362 0 : aMtReduce.SetValue( nReduce );
363 0 : aMtFillHoles.SetValue( nFillHoles );
364 0 : aCbFillHoles.Check( bFillHoles );
365 :
366 0 : ToggleHdl( &aCbFillHoles );
367 0 : }
368 :
369 : // -----------------------------------------------------------------------------
370 :
371 0 : void SdVectorizeDlg::SaveSettings() const
372 : {
373 0 : SvStorageStreamRef xOStm( SD_MOD()->GetOptionStream(
374 : rtl::OUString(SD_OPTION_VECTORIZE) ,
375 0 : SD_OPTION_STORE ) );
376 :
377 0 : if( xOStm.Is() )
378 : {
379 0 : SdIOCompat aCompat( *xOStm, STREAM_WRITE, 1 );
380 0 : *xOStm << (sal_uInt16) aNmLayers.GetValue() << (sal_uInt16) aMtReduce.GetValue();
381 0 : *xOStm << (sal_uInt16) aMtFillHoles.GetValue() << aCbFillHoles.IsChecked();
382 0 : }
383 0 : }
384 :
385 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|