Files
libreoffice/cui/source/dialogs/cuigrfflt.cxx
Caolán McNamara 7911b70e09 convert posterize dialog to .ui
Change-Id: If21e85cd0802c9f1b2bd244e6fb3715bef395e0a
2014-02-01 12:10:19 +00:00

636 lines
19 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <tools/shl.hxx>
#include <vcl/builder.hxx>
#include <vcl/msgbox.hxx>
#include <sfx2/viewfrm.hxx>
#include <sfx2/viewsh.hxx>
#include <sfx2/objsh.hxx>
#include <sfx2/request.hxx>
#include <dialmgr.hxx>
#include "cuigrfflt.hxx"
#include "grfflt.hrc"
#include <cuires.hrc>
#include <svx/dialogs.hrc>
oldGraphicFilterDialog::PreviewWindow::PreviewWindow( Window* pParent, const ResId& rResId ) :
Control( pParent, rResId )
{
}
// -----------------------------------------------------------------------------
void oldGraphicFilterDialog::PreviewWindow::Paint( const Rectangle& rRect )
{
Control::Paint( rRect );
const Size aOutputSize( GetOutputSizePixel() );
if( maGraphic.IsAnimated() )
{
const Size aGraphicSize( LogicToPixel( maGraphic.GetPrefSize(), maGraphic.GetPrefMapMode() ) );
const Point aGraphicPosition( ( aOutputSize.Width() - aGraphicSize.Width() ) >> 1,
( aOutputSize.Height() - aGraphicSize.Height() ) >> 1 );
maGraphic.StartAnimation( this, aGraphicPosition, aGraphicSize );
}
else
{
const Size aGraphicSize( maGraphic.GetSizePixel() );
const Point aGraphicPosition( ( aOutputSize.Width() - aGraphicSize.Width() ) >> 1,
( aOutputSize.Height() - aGraphicSize.Height() ) >> 1 );
maGraphic.Draw( this, aGraphicPosition, aGraphicSize );
}
}
// -----------------------------------------------------------------------------
void oldGraphicFilterDialog::PreviewWindow::SetGraphic( const Graphic& rGraphic )
{
maGraphic = rGraphic;
if( maGraphic.IsAnimated() || maGraphic.IsTransparent() )
Invalidate();
else
Paint( Rectangle( Point(), GetOutputSizePixel() ) );
}
oldGraphicFilterDialog::oldGraphicFilterDialog( Window* pParent, const ResId& rResId, const Graphic& rGraphic ) :
ModalDialog ( pParent, rResId ),
maModifyHdl ( LINK( this, oldGraphicFilterDialog, ImplModifyHdl ) ),
mfScaleX ( 0.0 ),
mfScaleY ( 0.0 ),
maSizePixel ( LogicToPixel( rGraphic.GetPrefSize(), rGraphic.GetPrefMapMode() ) ),
maPreview ( this, CUI_RES( CTL_PREVIEW ) ),
maBtnOK ( this, CUI_RES( BTN_OK ) ),
maBtnCancel ( this, CUI_RES( BTN_CANCEL ) ),
maBtnHelp ( this, CUI_RES( BTN_HELP ) ),
maFlParameter ( this, CUI_RES( FL_PARAMETER ) )
{
const Size aPreviewSize( maPreview.GetOutputSizePixel() );
Size aGrfSize( maSizePixel );
if( rGraphic.GetType() == GRAPHIC_BITMAP &&
aPreviewSize.Width() && aPreviewSize.Height() &&
aGrfSize.Width() && aGrfSize.Height() )
{
const double fGrfWH = (double) aGrfSize.Width() / aGrfSize.Height();
const double fPreWH = (double) aPreviewSize.Width() / aPreviewSize.Height();
if( fGrfWH < fPreWH )
{
aGrfSize.Width() = (long) ( aPreviewSize.Height() * fGrfWH );
aGrfSize.Height() = aPreviewSize.Height();
}
else
{
aGrfSize.Width() = aPreviewSize.Width();
aGrfSize.Height() = (long) ( aPreviewSize.Width() / fGrfWH );
}
mfScaleX = (double) aGrfSize.Width() / maSizePixel.Width();
mfScaleY = (double) aGrfSize.Height() / maSizePixel.Height();
if( !rGraphic.IsAnimated() )
{
BitmapEx aBmpEx( rGraphic.GetBitmapEx() );
if( aBmpEx.Scale( aGrfSize, BMP_SCALE_DEFAULT ) )
maGraphic = aBmpEx;
}
}
maTimer.SetTimeoutHdl( LINK( this, oldGraphicFilterDialog, ImplPreviewTimeoutHdl ) );
maTimer.SetTimeout( 100 );
ImplModifyHdl( NULL );
}
// -----------------------------------------------------------------------------
IMPL_LINK_NOARG(oldGraphicFilterDialog, ImplPreviewTimeoutHdl)
{
maTimer.Stop();
maPreview.SetGraphic( GetFilteredGraphic( maGraphic, mfScaleX, mfScaleY ) );
return 0;
}
// -----------------------------------------------------------------------------
IMPL_LINK_NOARG(oldGraphicFilterDialog, ImplModifyHdl)
{
if( maGraphic.GetType() == GRAPHIC_BITMAP )
{
maTimer.Stop();
maTimer.Start();
}
return 0;
}
GraphicPreviewWindow::GraphicPreviewWindow(Window* pParent,
const WinBits nStyle)
: Control(pParent, nStyle)
, mpOrigGraphic(NULL)
, mfScaleX(0.0)
, mfScaleY(0.0)
{
}
extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeGraphicPreviewWindow(Window *pParent, VclBuilder::stringmap &rMap)
{
WinBits nWinBits = WB_TABSTOP;
OString sBorder = VclBuilder::extractCustomProperty(rMap);
if (!sBorder.isEmpty())
nWinBits |= WB_BORDER;
return new GraphicPreviewWindow(pParent, nWinBits);
}
Size GraphicPreviewWindow::GetOptimalSize() const
{
return LogicToPixel(Size(81, 73), MAP_APPFONT);
}
// -----------------------------------------------------------------------------
void GraphicPreviewWindow::Paint( const Rectangle& rRect )
{
Control::Paint( rRect );
const Size aOutputSize( GetOutputSizePixel() );
if( maPreview.IsAnimated() )
{
const Size aGraphicSize( LogicToPixel( maPreview.GetPrefSize(), maPreview.GetPrefMapMode() ) );
const Point aGraphicPosition( ( aOutputSize.Width() - aGraphicSize.Width() ) >> 1,
( aOutputSize.Height() - aGraphicSize.Height() ) >> 1 );
maPreview.StartAnimation( this, aGraphicPosition, aGraphicSize );
}
else
{
const Size aGraphicSize( maPreview.GetSizePixel() );
const Point aGraphicPosition( ( aOutputSize.Width() - aGraphicSize.Width() ) >> 1,
( aOutputSize.Height() - aGraphicSize.Height() ) >> 1 );
maPreview.Draw( this, aGraphicPosition, aGraphicSize );
}
}
// -----------------------------------------------------------------------------
void GraphicPreviewWindow::SetPreview( const Graphic& rGraphic )
{
maPreview = rGraphic;
Invalidate();
}
void GraphicPreviewWindow::ScaleImageToFit()
{
if (!mpOrigGraphic)
return;
maScaledOrig = *mpOrigGraphic;
const Size aPreviewSize( GetOutputSizePixel() );
Size aSizePixel(LogicToPixel(mpOrigGraphic->GetPrefSize(),
mpOrigGraphic->GetPrefMapMode()));
Size aGrfSize(aSizePixel);
if( mpOrigGraphic->GetType() == GRAPHIC_BITMAP &&
aPreviewSize.Width() && aPreviewSize.Height() &&
aGrfSize.Width() && aGrfSize.Height() )
{
const double fGrfWH = (double) aGrfSize.Width() / aGrfSize.Height();
const double fPreWH = (double) aPreviewSize.Width() / aPreviewSize.Height();
if( fGrfWH < fPreWH )
{
aGrfSize.Width() = (long) ( aPreviewSize.Height() * fGrfWH );
aGrfSize.Height() = aPreviewSize.Height();
}
else
{
aGrfSize.Width() = aPreviewSize.Width();
aGrfSize.Height() = (long) ( aPreviewSize.Width() / fGrfWH );
}
mfScaleX = (double) aGrfSize.Width() / aSizePixel.Width();
mfScaleY = (double) aGrfSize.Height() / aSizePixel.Height();
if( !mpOrigGraphic->IsAnimated() )
{
BitmapEx aBmpEx( mpOrigGraphic->GetBitmapEx() );
if( aBmpEx.Scale( aGrfSize, BMP_SCALE_DEFAULT ) )
maScaledOrig = aBmpEx;
}
}
maModifyHdl.Call(this);
}
void GraphicPreviewWindow::Resize()
{
Control::Resize();
ScaleImageToFit();
}
GraphicFilterDialog::GraphicFilterDialog(Window* pParent,
const OString& rID, const OUString& rUIXMLDescription,
const Graphic& rGraphic)
: ModalDialog(pParent, rID, rUIXMLDescription)
, maModifyHdl(LINK( this, GraphicFilterDialog, ImplModifyHdl))
, maSizePixel(LogicToPixel(rGraphic.GetPrefSize(),
rGraphic.GetPrefMapMode()))
{
bIsBitmap = rGraphic.GetType() == GRAPHIC_BITMAP;
maTimer.SetTimeoutHdl( LINK( this, GraphicFilterDialog, ImplPreviewTimeoutHdl ) );
maTimer.SetTimeout( 5 );
get(mpPreview, "preview");
mpPreview->init(&rGraphic, maModifyHdl);
}
// -----------------------------------------------------------------------------
IMPL_LINK_NOARG(GraphicFilterDialog, ImplPreviewTimeoutHdl)
{
maTimer.Stop();
mpPreview->SetPreview(GetFilteredGraphic(mpPreview->GetScaledOriginal(),
mpPreview->GetScaleX(), mpPreview->GetScaleY()));
return 0;
}
// -----------------------------------------------------------------------------
IMPL_LINK_NOARG(GraphicFilterDialog, ImplModifyHdl)
{
if (bIsBitmap)
{
maTimer.Stop();
maTimer.Start();
}
return 0;
}
// ----------------
// - FilterMosaic -
// ----------------
GraphicFilterMosaic::GraphicFilterMosaic( Window* pParent, const Graphic& rGraphic,
sal_uInt16 nTileWidth, sal_uInt16 nTileHeight, sal_Bool bEnhanceEdges ) :
oldGraphicFilterDialog( pParent, CUI_RES( RID_SVX_GRFFILTER_DLG_MOSAIC ), rGraphic ),
maFtWidth ( this, CUI_RES( DLG_FILTERMOSAIC_FT_WIDTH ) ),
maMtrWidth ( this, CUI_RES( DLG_FILTERMOSAIC_MTR_WIDTH ) ),
maFtHeight ( this, CUI_RES( DLG_FILTERMOSAIC_FT_HEIGHT ) ),
maMtrHeight ( this, CUI_RES( DLG_FILTERMOSAIC_MTR_HEIGHT ) ),
maCbxEdges ( this, CUI_RES( DLG_FILTERMOSAIC_CBX_EDGES ) )
{
FreeResource();
maMtrWidth.SetValue( nTileWidth );
maMtrWidth.SetLast( GetGraphicSizePixel().Width() );
maMtrWidth.SetModifyHdl( GetModifyHdl() );
maMtrHeight.SetValue( nTileHeight );
maMtrHeight.SetLast( GetGraphicSizePixel().Height() );
maMtrHeight.SetModifyHdl( GetModifyHdl() );
maCbxEdges.Check( bEnhanceEdges );
maCbxEdges.SetToggleHdl( GetModifyHdl() );
maMtrWidth.GrabFocus();
maFtWidth.SetAccessibleRelationMemberOf(&maFlParameter);
maMtrWidth.SetAccessibleRelationMemberOf(&maFlParameter);
maFtHeight.SetAccessibleRelationMemberOf(&maFlParameter);
maMtrHeight.SetAccessibleRelationMemberOf(&maFlParameter);
maCbxEdges.SetAccessibleRelationMemberOf(&maFlParameter);
}
// -----------------------------------------------------------------------------
GraphicFilterMosaic::~GraphicFilterMosaic()
{
}
// -----------------------------------------------------------------------------
Graphic GraphicFilterMosaic::GetFilteredGraphic( const Graphic& rGraphic,
double fScaleX, double fScaleY )
{
Graphic aRet;
const Size aSize( std::max( FRound( GetTileWidth() * fScaleX ), 1L ),
std::max( FRound( GetTileHeight() * fScaleY ), 1L ) );
BmpFilterParam aParam( aSize );
if( rGraphic.IsAnimated() )
{
Animation aAnim( rGraphic.GetAnimation() );
if( aAnim.Filter( BMP_FILTER_MOSAIC, &aParam ) )
{
if( IsEnhanceEdges() )
aAnim.Filter( BMP_FILTER_SHARPEN );
aRet = aAnim;
}
}
else
{
BitmapEx aBmpEx( rGraphic.GetBitmapEx() );
if( aBmpEx.Filter( BMP_FILTER_MOSAIC, &aParam ) )
{
if( IsEnhanceEdges() )
aBmpEx.Filter( BMP_FILTER_SHARPEN );
aRet = aBmpEx;
}
}
return aRet;
}
// ------------------
// - GraphicFilterSmooth -
// ------------------
GraphicFilterSmooth::GraphicFilterSmooth( Window* pParent, const Graphic& rGraphic, double nRadius)
: GraphicFilterDialog(pParent, "SmoothDialog",
"cui/ui/smoothdialog.ui", rGraphic)
{
get(mpMtrRadius, "radius");
mpMtrRadius->SetValue( nRadius* 10 );
mpMtrRadius->SetModifyHdl( GetModifyHdl() );
mpMtrRadius->GrabFocus();
}
// -----------------------------------------------------------------------------
Graphic GraphicFilterSmooth::GetFilteredGraphic( const Graphic& rGraphic, double /*fScaleX*/, double /*fScaleY*/ )
{
Graphic aRet;
BmpFilterParam aParam( GetRadius() );
if( rGraphic.IsAnimated() )
{
Animation aAnim( rGraphic.GetAnimation() );
if( aAnim.Filter( BMP_FILTER_SMOOTH, &aParam ) )
{
aRet = aAnim;
}
}
else
{
BitmapEx aBmpEx( rGraphic.GetBitmapEx() );
if( aBmpEx.Filter( BMP_FILTER_SMOOTH, &aParam ) )
{
aRet = aBmpEx;
}
}
return aRet;
}
// ------------------
// - GraphicFilterSolarize -
// ------------------
GraphicFilterSolarize::GraphicFilterSolarize( Window* pParent, const Graphic& rGraphic,
sal_uInt8 cGreyThreshold, sal_Bool bInvert )
: GraphicFilterDialog(pParent, "SolarizeDialog",
"cui/ui/solarizedialog.ui", rGraphic)
{
get(mpMtrThreshold, "value");
get(mpCbxInvert, "invert");
mpMtrThreshold->SetValue( FRound( cGreyThreshold / 2.55 ) );
mpMtrThreshold->SetModifyHdl( GetModifyHdl() );
mpCbxInvert->Check( bInvert );
mpCbxInvert->SetToggleHdl( GetModifyHdl() );
}
// -----------------------------------------------------------------------------
Graphic GraphicFilterSolarize::GetFilteredGraphic( const Graphic& rGraphic,
double /*fScaleX*/, double /*fScaleY*/ )
{
Graphic aRet;
BmpFilterParam aParam( GetGreyThreshold() );
if( rGraphic.IsAnimated() )
{
Animation aAnim( rGraphic.GetAnimation() );
if( aAnim.Filter( BMP_FILTER_SOLARIZE, &aParam ) )
{
if( IsInvert() )
aAnim.Invert();
aRet = aAnim;
}
}
else
{
BitmapEx aBmpEx( rGraphic.GetBitmapEx() );
if( aBmpEx.Filter( BMP_FILTER_SOLARIZE, &aParam ) )
{
if( IsInvert() )
aBmpEx.Invert();
aRet = aBmpEx;
}
}
return aRet;
}
// ----------------------
// - GraphicFilterSepia -
// ----------------------
GraphicFilterSepia::GraphicFilterSepia( Window* pParent, const Graphic& rGraphic,
sal_uInt16 nSepiaPercent )
: GraphicFilterDialog(pParent, "AgingDialog",
"cui/ui/agingdialog.ui", rGraphic)
{
get(mpMtrSepia, "value");
mpMtrSepia->SetValue( nSepiaPercent );
mpMtrSepia->SetModifyHdl( GetModifyHdl() );
}
// -----------------------------------------------------------------------------
Graphic GraphicFilterSepia::GetFilteredGraphic( const Graphic& rGraphic,
double /*fScaleX*/, double /*fScaleY*/ )
{
Graphic aRet;
BmpFilterParam aParam( GetSepiaPercent() );
if( rGraphic.IsAnimated() )
{
Animation aAnim( rGraphic.GetAnimation() );
if( aAnim.Filter( BMP_FILTER_SEPIA, &aParam ) )
aRet = aAnim;
}
else
{
BitmapEx aBmpEx( rGraphic.GetBitmapEx() );
if( aBmpEx.Filter( BMP_FILTER_SEPIA, &aParam ) )
aRet = aBmpEx;
}
return aRet;
}
// -----------------------
// - GraphicFilterPoster -
// -----------------------
GraphicFilterPoster::GraphicFilterPoster(Window* pParent, const Graphic& rGraphic,
sal_uInt16 nPosterCount)
: GraphicFilterDialog(pParent, "PosterDialog",
"cui/ui/posterdialog.ui", rGraphic)
{
get(mpNumPoster, "value");
mpNumPoster->SetFirst( 2 );
mpNumPoster->SetLast( rGraphic.GetBitmapEx().GetBitCount() );
mpNumPoster->SetValue( nPosterCount );
mpNumPoster->SetModifyHdl( GetModifyHdl() );
}
// -----------------------------------------------------------------------------
Graphic GraphicFilterPoster::GetFilteredGraphic( const Graphic& rGraphic,
double /*fScaleX*/, double /*fScaleY*/ )
{
Graphic aRet;
const sal_uInt16 nPosterCount = GetPosterColorCount();
if( rGraphic.IsAnimated() )
{
Animation aAnim( rGraphic.GetAnimation() );
if( aAnim.ReduceColors( nPosterCount, BMP_REDUCE_POPULAR ) )
aRet = aAnim;
}
else
{
BitmapEx aBmpEx( rGraphic.GetBitmapEx() );
if( aBmpEx.ReduceColors( nPosterCount, BMP_REDUCE_POPULAR ) )
aRet = aBmpEx;
}
return aRet;
}
// -----------------------
// - GraphicFilterEmboss -
// -----------------------
void GraphicFilterEmboss::EmbossControl::MouseButtonDown( const MouseEvent& rEvt )
{
const RECT_POINT eOldRP = GetActualRP();
SvxRectCtl::MouseButtonDown( rEvt );
if( GetActualRP() != eOldRP )
maModifyHdl.Call( this );
}
// -----------------------------------------------------------------------------
GraphicFilterEmboss::GraphicFilterEmboss( Window* pParent, const Graphic& rGraphic,
RECT_POINT eLightSource ) :
oldGraphicFilterDialog ( pParent, CUI_RES( RID_SVX_GRFFILTER_DLG_EMBOSS ), rGraphic ),
maFtLight ( this, CUI_RES( DLG_FILTEREMBOSS_FT_LIGHT ) ),
maCtlLight ( this, CUI_RES( DLG_FILTEREMBOSS_CTL_LIGHT ), eLightSource )
{
FreeResource();
maCtlLight.SetModifyHdl( GetModifyHdl() );
maCtlLight.GrabFocus();
}
// -----------------------------------------------------------------------------
GraphicFilterEmboss::~GraphicFilterEmboss()
{
}
// -----------------------------------------------------------------------------
Graphic GraphicFilterEmboss::GetFilteredGraphic( const Graphic& rGraphic,
double /*fScaleX*/, double /*fScaleY*/ )
{
Graphic aRet;
sal_uInt16 nAzim, nElev;
switch( maCtlLight.GetActualRP() )
{
default: OSL_FAIL("svx::GraphicFilterEmboss::GetFilteredGraphic(), unknown Reference Point!" );
/* Fall through */
case( RP_LT ): nAzim = 4500, nElev = 4500; break;
case( RP_MT ): nAzim = 9000, nElev = 4500; break;
case( RP_RT ): nAzim = 13500, nElev = 4500; break;
case( RP_LM ): nAzim = 0, nElev = 4500; break;
case( RP_MM ): nAzim = 0, nElev = 9000; break;
case( RP_RM ): nAzim = 18000, nElev = 4500; break;
case( RP_LB ): nAzim = 31500, nElev = 4500; break;
case( RP_MB ): nAzim = 27000, nElev = 4500; break;
case( RP_RB ): nAzim = 22500, nElev = 4500; break;
}
BmpFilterParam aParam( nAzim, nElev );
if( rGraphic.IsAnimated() )
{
Animation aAnim( rGraphic.GetAnimation() );
if( aAnim.Filter( BMP_FILTER_EMBOSS_GREY, &aParam ) )
aRet = aAnim;
}
else
{
BitmapEx aBmpEx( rGraphic.GetBitmapEx() );
if( aBmpEx.Filter( BMP_FILTER_EMBOSS_GREY, &aParam ) )
aRet = aBmpEx;
}
return aRet;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */