2010-10-14 08:27:31 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2008-06-24 10:42:00 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2008-06-24 10:42:00 +00:00
|
|
|
*
|
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
|
|
*
|
|
|
|
* This file is part of OpenOffice.org.
|
|
|
|
*
|
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
// bootstrap stuff
|
2008-12-09 13:22:21 +00:00
|
|
|
#include <sal/main.h>
|
2008-06-24 10:42:00 +00:00
|
|
|
#include <rtl/bootstrap.hxx>
|
|
|
|
#include <rtl/ref.hxx>
|
|
|
|
#include <comphelper/processfactory.hxx>
|
|
|
|
#include <cppuhelper/servicefactory.hxx>
|
|
|
|
#include <cppuhelper/bootstrap.hxx>
|
|
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
|
|
|
#include <com/sun/star/lang/XInitialization.hpp>
|
|
|
|
#include <com/sun/star/registry/XSimpleRegistry.hpp>
|
|
|
|
#include <com/sun/star/util/Endianness.hpp>
|
|
|
|
#include <com/sun/star/rendering/ColorComponentTag.hpp>
|
|
|
|
#include <com/sun/star/rendering/ColorSpaceType.hpp>
|
|
|
|
#include <com/sun/star/rendering/RenderingIntent.hpp>
|
|
|
|
#include <com/sun/star/rendering/XIntegerReadOnlyBitmap.hpp>
|
|
|
|
#include <com/sun/star/rendering/XIntegerBitmapColorSpace.hpp>
|
|
|
|
#include <com/sun/star/rendering/XBitmapPalette.hpp>
|
|
|
|
|
|
|
|
#include <cppuhelper/compbase3.hxx>
|
|
|
|
|
|
|
|
#include <tools/diagnose_ex.h>
|
2008-12-09 13:22:21 +00:00
|
|
|
#include <tools/extendapplicationenvironment.hxx>
|
2008-06-24 10:42:00 +00:00
|
|
|
|
|
|
|
#include "vcl/svapp.hxx"
|
|
|
|
#include "vcl/canvastools.hxx"
|
2008-12-09 13:22:21 +00:00
|
|
|
#include "vcl/canvasbitmap.hxx"
|
2008-06-24 10:42:00 +00:00
|
|
|
#include "vcl/dialog.hxx"
|
|
|
|
#include "vcl/outdev.hxx"
|
|
|
|
#include "vcl/bmpacc.hxx"
|
|
|
|
#include "vcl/virdev.hxx"
|
|
|
|
#include "vcl/bitmapex.hxx"
|
|
|
|
|
|
|
|
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
using namespace ::vcl::unotools;
|
|
|
|
|
2008-12-09 13:22:21 +00:00
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void Main();
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
SAL_IMPLEMENT_MAIN()
|
|
|
|
{
|
|
|
|
tools::extendApplicationEnvironment();
|
|
|
|
|
|
|
|
uno::Reference< lang::XMultiServiceFactory > xMS;
|
|
|
|
xMS = cppu::createRegistryServiceFactory(
|
2012-06-02 13:13:21 -05:00
|
|
|
rtl::OUString( "applicat.rdb" ),
|
2008-12-09 13:22:21 +00:00
|
|
|
sal_True );
|
|
|
|
|
2012-10-31 09:22:53 +01:00
|
|
|
comphelper::setProcessServiceFactory( xMS );
|
|
|
|
|
|
|
|
InitVCL();
|
2008-12-09 13:22:21 +00:00
|
|
|
::Main();
|
|
|
|
DeInitVCL();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2008-06-24 10:42:00 +00:00
|
|
|
namespace com { namespace sun { namespace star { namespace rendering
|
|
|
|
{
|
|
|
|
|
|
|
|
bool operator==( const RGBColor& rLHS, const ARGBColor& rRHS )
|
|
|
|
{
|
|
|
|
return rLHS.Red == rRHS.Red && rLHS.Green == rRHS.Green && rLHS.Blue == rRHS.Blue;
|
|
|
|
}
|
|
|
|
bool operator==( const ARGBColor& rLHS, const RGBColor& rRHS )
|
|
|
|
{
|
|
|
|
return rLHS.Red == rRHS.Red && rLHS.Green == rRHS.Green && rLHS.Blue == rRHS.Blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
} } } }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
|
|
|
class TestApp : public Application
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void Main();
|
Merge commit 'ooo/DEV300_m101' into intm101
The following builds for me:
basebmp, basegfx, comphelper, dtrans, i18npool, i18nutil, l10ntools, o3tl,
psprint_config, regexp, rsc, sax, sot, tools, ucbhelper, unotools, vcl
The rest still needs fixing ;-)
Conflicts:
canvas/prj/build.lst
canvas/source/cairo/cairo_textlayout.cxx
canvas/source/directx/dx_winstuff.hxx
canvas/source/tools/image.cxx
canvas/source/vcl/canvashelper.cxx
comphelper/inc/comphelper/documentconstants.hxx
comphelper/inc/comphelper/optionalvalue.hxx
comphelper/inc/comphelper/querydeep.hxx
comphelper/prj/build.lst
comphelper/qa/complex/makefile.mk
comphelper/qa/string/test_string_noadditional.cxx
comphelper/source/misc/componentmodule.cxx
comphelper/source/misc/mimeconfighelper.cxx
comphelper/source/misc/querydeep.cxx
comphelper/source/misc/uieventslogger.cxx
comphelper/source/property/TypeGeneration.cxx
comphelper/test/uno_iterators/uno_iterators.cxx
comphelper/util/makefile.mk
cppcanvas/source/mtfrenderer/implrenderer.cxx
dtrans/prj/build.lst
dtrans/source/generic/dtrans.cxx
dtrans/source/win32/dtobj/FmtFilter.cxx
i18npool/prj/build.lst
i18npool/source/localedata/data/localedata_others.map
i18npool/source/localedata/data/makefile.mk
i18npool/source/localedata/localedata.cxx
i18npool/source/localedata/saxparser.cxx
i18npool/source/registerservices/registerservices.cxx
i18npool/source/search/textsearch.cxx
l10ntools/inc/cfgmerge.hxx
l10ntools/inc/export.hxx
l10ntools/inc/gsicheck.hxx
l10ntools/inc/l10ntools/vosapp.hxx
l10ntools/inc/tagtest.hxx
l10ntools/inc/xmlparse.hxx
l10ntools/layout/layoutparse.cxx
l10ntools/layout/tralay.cxx
l10ntools/source/cfgmerge.cxx
l10ntools/source/export.cxx
l10ntools/source/export2.cxx
l10ntools/source/gsicheck.cxx
l10ntools/source/help/HelpLinker.cxx
l10ntools/source/lngex.cxx
l10ntools/source/lngmerge.cxx
l10ntools/source/merge.cxx
l10ntools/source/tagtest.cxx
l10ntools/source/xmlparse.cxx
padmin/source/fontentry.cxx
padmin/source/padialog.cxx
padmin/source/padialog.src
padmin/source/pamain.cxx
rsc/inc/rscarray.hxx
rsc/inc/rscclass.hxx
rsc/inc/rscclobj.hxx
rsc/inc/rsccont.hxx
rsc/inc/rscdb.hxx
rsc/inc/rscdef.hxx
rsc/inc/rscmgr.hxx
rsc/inc/rscrange.hxx
rsc/inc/rsctop.hxx
rsc/inc/vclrsc.hxx
rsc/source/parser/rscdb.cxx
rsc/source/parser/rscicpx.cxx
rsc/source/parser/rscinit.cxx
rsc/source/prj/start.cxx
rsc/source/res/rscarray.cxx
rsc/source/res/rscclass.cxx
rsc/source/res/rscclobj.cxx
rsc/source/res/rsccont.cxx
rsc/source/res/rscmgr.cxx
rsc/source/res/rscrange.cxx
rsc/source/res/rsctop.cxx
rsc/source/rsc/rsc.cxx
rsc/source/tools/rscdef.cxx
rsc/source/tools/rsctools.cxx
sax/source/expatwrap/sax_expat.cxx
sax/source/fastparser/facreg.cxx
sax/source/tools/fastserializer.cxx
sot/inc/sot/filelist.hxx
sot/inc/sot/object.hxx
sot/source/base/factory.cxx
sot/source/base/filelist.cxx
sot/source/sdstor/stg.cxx
sot/source/sdstor/stgcache.cxx
sot/source/sdstor/stgole.cxx
sot/source/sdstor/stgstrms.cxx
sot/source/sdstor/storage.cxx
sot/source/sdstor/ucbstorage.cxx
svl/inc/svl/cenumitm.hxx
svl/inc/svl/cintitem.hxx
svl/inc/svl/cntwall.hxx
svl/inc/svl/ctypeitm.hxx
svl/inc/svl/custritm.hxx
svl/inc/svl/dateitem.hxx
svl/inc/svl/filerec.hxx
svl/inc/svl/globalnameitem.hxx
svl/inc/svl/ilstitem.hxx
svl/inc/svl/imageitm.hxx
svl/inc/svl/intitem.hxx
svl/inc/svl/itempool.hxx
svl/inc/svl/itemset.hxx
svl/inc/svl/lckbitem.hxx
svl/inc/svl/poolitem.hxx
svl/inc/svl/ptitem.hxx
svl/inc/svl/rectitem.hxx
svl/inc/svl/sfontitm.hxx
svl/inc/svl/slstitm.hxx
svl/inc/svl/srchitem.hxx
svl/inc/svl/svarray.hxx
svl/inc/svl/svdde.hxx
svl/inc/svl/svstdarr.hxx
svl/inc/svl/szitem.hxx
svl/inc/svl/visitem.hxx
svl/inc/svl/zforlist.hxx
svl/inc/svl/zformat.hxx
svl/prj/build.lst
svl/qa/complex/ConfigItems/helper/ConfigItemTest.cxx
svl/qa/complex/ConfigItems/helper/makefile.mk
svl/qa/makefile.mk
svl/source/filepicker/pickerhelper.cxx
svl/source/filerec/filerec.cxx
svl/source/items/cenumitm.cxx
svl/source/items/cintitem.cxx
svl/source/items/cntwall.cxx
svl/source/items/ctypeitm.cxx
svl/source/items/custritm.cxx
svl/source/items/dateitem.cxx
svl/source/items/globalnameitem.cxx
svl/source/items/ilstitem.cxx
svl/source/items/imageitm.cxx
svl/source/items/intitem.cxx
svl/source/items/itempool.cxx
svl/source/items/itemprop.cxx
svl/source/items/itemset.cxx
svl/source/items/lckbitem.cxx
svl/source/items/poolio.cxx
svl/source/items/poolitem.cxx
svl/source/items/ptitem.cxx
svl/source/items/rectitem.cxx
svl/source/items/slstitm.cxx
svl/source/items/srchitem.cxx
svl/source/items/style.cxx
svl/source/items/szitem.cxx
svl/source/items/visitem.cxx
svl/source/items/whiter.cxx
svl/source/memtools/svarray.cxx
svl/source/misc/PasswordHelper.cxx
svl/source/misc/adrparse.cxx
svl/source/misc/lngmisc.cxx
svl/source/notify/brdcst.cxx
svl/source/notify/listener.cxx
svl/source/notify/listenerbase.cxx
svl/source/numbers/makefile.mk
svl/source/numbers/nbdll.cxx
svl/source/numbers/zforfind.cxx
svl/source/numbers/zforlist.cxx
svl/source/numbers/zformat.cxx
svl/source/numbers/zforscan.cxx
svl/source/passwordcontainer/passwordcontainer.cxx
svl/source/svdde/ddecli.cxx
svl/source/svdde/ddeimp.hxx
svl/source/svdde/ddemlos2.h
svl/source/svdde/ddesvr.cxx
svl/source/undo/undo.cxx
svl/source/uno/registerservices.cxx
svl/util/makefile.mk
svtools/bmpmaker/bmpsum.cxx
svtools/bmpmaker/g2g.cxx
svtools/bmpmaker/makefile.mk
svtools/inc/borderhelper.hxx
svtools/inc/svtools/accessiblefactory.hxx
svtools/inc/svtools/apearcfg.hxx
svtools/inc/svtools/brwbox.hxx
svtools/inc/svtools/ctrlbox.hxx
svtools/inc/svtools/ctrltool.hxx
svtools/inc/svtools/editbrowsebox.hxx
svtools/inc/svtools/ehdl.hxx
svtools/inc/svtools/embedhlp.hxx
svtools/inc/svtools/filter.hxx
svtools/inc/svtools/ivctrl.hxx
svtools/inc/svtools/parhtml.hxx
svtools/inc/svtools/printdlg.hxx
svtools/inc/svtools/rtftoken.h
svtools/inc/svtools/ruler.hxx
svtools/inc/svtools/svicnvw.hxx
svtools/inc/svtools/svlbitm.hxx
svtools/inc/svtools/svlbox.hxx
svtools/inc/svtools/svtreebx.hxx
svtools/inc/svtools/tabbar.hxx
svtools/inc/svtools/table/abstracttablecontrol.hxx
svtools/inc/svtools/taskbar.hxx
svtools/inc/svtools/textview.hxx
svtools/inc/svtools/valueset.hxx
svtools/source/brwbox/brwbox1.cxx
svtools/source/brwbox/brwbox2.cxx
svtools/source/brwbox/datwin.cxx
svtools/source/brwbox/datwin.hxx
svtools/source/brwbox/makefile.mk
svtools/source/config/apearcfg.cxx
svtools/source/config/htmlcfg.cxx
svtools/source/config/menuoptions.cxx
svtools/source/config/miscopt.cxx
svtools/source/contnr/cont_pch.cxx
svtools/source/contnr/ctrdll.cxx
svtools/source/contnr/fileview.cxx
svtools/source/contnr/imivctl1.cxx
svtools/source/contnr/ivctrl.cxx
svtools/source/contnr/makefile.mk
svtools/source/contnr/svcontnr.src
svtools/source/contnr/svicnvw.cxx
svtools/source/contnr/svimpbox.cxx
svtools/source/contnr/svimpicn.cxx
svtools/source/contnr/svlbitm.cxx
svtools/source/contnr/svtreebx.cxx
svtools/source/contnr/templwin.cxx
svtools/source/contnr/templwin.hxx
svtools/source/control/asynclink.cxx
svtools/source/control/ctrlbox.cxx
svtools/source/control/ctrldll.cxx
svtools/source/control/ctrltool.cxx
svtools/source/control/filectrl.cxx
svtools/source/control/filectrl.src
svtools/source/control/headbar.cxx
svtools/source/control/inettbc.cxx
svtools/source/control/makefile.mk
svtools/source/control/prgsbar.cxx
svtools/source/control/roadmap.cxx
svtools/source/control/ruler.cxx
svtools/source/control/scriptedtext.cxx
svtools/source/control/stdmenu.cxx
svtools/source/control/tabbar.cxx
svtools/source/control/taskbar.cxx
svtools/source/control/taskbox.cxx
svtools/source/control/taskmisc.cxx
svtools/source/control/taskstat.cxx
svtools/source/control/valueacc.cxx
svtools/source/control/valueset.cxx
svtools/source/dialogs/addresstemplate.cxx
svtools/source/dialogs/addresstemplate.src
svtools/source/dialogs/colrdlg.src
svtools/source/dialogs/filedlg2.cxx
svtools/source/dialogs/filedlg2.hxx
svtools/source/dialogs/makefile.mk
svtools/source/dialogs/printdlg.cxx
svtools/source/dialogs/printdlg.src
svtools/source/dialogs/propctrl.cxx
svtools/source/dialogs/propctrl.hxx
svtools/source/dialogs/property.cxx
svtools/source/edit/makefile.mk
svtools/source/edit/sychconv.cxx
svtools/source/edit/syntaxhighlight.cxx
svtools/source/edit/textdoc.cxx
svtools/source/edit/texteng.cxx
svtools/source/edit/textundo.cxx
svtools/source/edit/textview.cxx
svtools/source/filter.vcl/filter/SvFilterOptionsDialog.cxx
svtools/source/filter.vcl/filter/dlgejpg.cxx
svtools/source/filter.vcl/filter/dlgejpg.hxx
svtools/source/filter.vcl/filter/dlgejpg.src
svtools/source/filter.vcl/filter/dlgepng.cxx
svtools/source/filter.vcl/filter/dlgepng.hxx
svtools/source/filter.vcl/filter/dlgepng.src
svtools/source/filter.vcl/filter/dlgexpor.cxx
svtools/source/filter.vcl/filter/dlgexpor.hxx
svtools/source/filter.vcl/filter/dlgexpor.src
svtools/source/filter.vcl/filter/filter2.cxx
svtools/source/filter.vcl/filter/makefile.mk
svtools/source/filter.vcl/filter/sgfbram.cxx
svtools/source/filter.vcl/filter/sgvmain.cxx
svtools/source/filter.vcl/filter/sgvspln.cxx
svtools/source/filter.vcl/filter/strings.src
svtools/source/filter.vcl/jpeg/makefile.mk
svtools/source/filter.vcl/wmf/emfwr.cxx
svtools/source/filter.vcl/wmf/emfwr.hxx
svtools/source/filter.vcl/wmf/enhwmf.cxx
svtools/source/filter.vcl/wmf/winmtf.hxx
svtools/source/filter.vcl/wmf/wmfwr.cxx
svtools/source/filter.vcl/wmf/wmfwr.hxx
svtools/source/graphic/grfcache.cxx
svtools/source/graphic/grfcache.hxx
svtools/source/graphic/grfmgr.cxx
svtools/source/graphic/makefile.mk
svtools/source/inc/accessibletableimp.hxx
svtools/source/inc/svimpbox.hxx
svtools/source/java/patchjavaerror.src
svtools/source/misc/ehdl.cxx
svtools/source/misc/errtxt.src
svtools/source/misc/helpagentwindow.cxx
svtools/source/misc/imagemgr.cxx
svtools/source/misc/imagemgr.src
svtools/source/misc/imageresourceaccess.cxx
svtools/source/misc/imap.cxx
svtools/source/misc/langtab.src
svtools/source/misc/makefile.mk
svtools/source/misc/svtdata.cxx
svtools/source/misc/templatefoldercache.cxx
svtools/source/misc/transfer2.cxx
svtools/source/misc/undo.src
svtools/source/plugapp/commtest.cxx
svtools/source/plugapp/commtest.src
svtools/source/plugapp/makefile.mk
svtools/source/plugapp/testtool.src
svtools/source/productregistration/productregistration.cxx
svtools/source/svhtml/htmlkywd.cxx
svtools/source/svhtml/parhtml.cxx
svtools/source/svrtf/rtfkey2.cxx
svtools/source/svrtf/rtfkeywd.cxx
svtools/source/table/defaultinputhandler.cxx
svtools/source/table/makefile.mk
svtools/source/table/tablecontrol.cxx
svtools/source/table/tablecontrol_impl.cxx
svtools/source/table/tablecontrol_impl.hxx
svtools/source/table/tabledatawindow.cxx
svtools/source/table/tablegeometry.cxx
svtools/source/table/tablegeometry.hxx
svtools/source/toolpanel/makefile.mk
svtools/source/toolpanel/toolpaneldrawer.cxx
svtools/source/uno/addrtempuno.cxx
svtools/source/uno/miscservices.cxx
svtools/source/uno/svtxgridcontrol.cxx
svtools/source/uno/svtxgridcontrol.hxx
svtools/source/uno/toolboxcontroller.cxx
svtools/source/uno/treecontrolpeer.cxx
svtools/source/uno/unocontroltablemodel.cxx
svtools/source/uno/unocontroltablemodel.hxx
svtools/source/uno/unoimap.cxx
svtools/source/urlobj/inetimg.cxx
svtools/util/makefile.mk
svtools/workben/browser.cxx
svtools/workben/cui/makefile.mk
svtools/workben/makefile.mk
svtools/workben/stest.cxx
svtools/workben/toolpanel/makefile.mk
svtools/workben/urange.cxx
toolkit/inc/toolkit/awt/vclxdevice.hxx
toolkit/inc/toolkit/awt/vclxgraphics.hxx
toolkit/inc/toolkit/awt/vclxwindows.hxx
toolkit/inc/toolkit/controls/dialogcontrol.hxx
toolkit/inc/toolkit/helper/property.hxx
toolkit/inc/toolkit/helper/servicenames.hxx
toolkit/inc/toolkit/helper/throbberimpl.hxx
toolkit/qa/complex/toolkit/accessibility/_XAccessibleComponent.java
toolkit/source/awt/asynccallback.cxx
toolkit/source/awt/vclxgraphics.cxx
toolkit/source/awt/vclxtoolkit.cxx
toolkit/source/awt/vclxwindow.cxx
toolkit/source/awt/xsimpleanimation.cxx
toolkit/source/awt/xthrobber.cxx
toolkit/source/controls/dialogcontrol.cxx
toolkit/source/controls/grid/defaultgridcolumnmodel.cxx
toolkit/source/controls/grid/defaultgriddatamodel.cxx
toolkit/source/controls/grid/gridcontrol.cxx
toolkit/source/controls/grid/initguard.hxx
toolkit/source/controls/unocontrol.cxx
toolkit/source/controls/unocontrolcontainer.cxx
toolkit/source/controls/unocontrols.cxx
toolkit/source/helper/listenermultiplexer.cxx
toolkit/source/helper/property.cxx
toolkit/source/helper/registerservices.cxx
toolkit/source/helper/servicenames.cxx
toolkit/source/helper/throbberimpl.cxx
toolkit/source/helper/tkresmgr.cxx
tools/StaticLibrary_ooopathutils.mk
tools/bootstrp/addexes/makefile.mk
tools/bootstrp/addexes2/makefile.mk
tools/bootstrp/addexes2/mkfilt.cxx
tools/bootstrp/command.cxx
tools/bootstrp/cppdep.cxx
tools/bootstrp/iserver.cxx
tools/bootstrp/makefile.mk
tools/bootstrp/mkcreate.cxx
tools/bootstrp/prj.cxx
tools/bootstrp/rscdep.cxx
tools/bootstrp/sstring.cxx
tools/inc/bootstrp/command.hxx
tools/inc/bootstrp/mkcreate.hxx
tools/inc/bootstrp/prj.hxx
tools/inc/bootstrp/sstring.hxx
tools/inc/tools/agapi.hxx
tools/inc/tools/agitem.hxx
tools/inc/tools/chapi.hxx
tools/inc/tools/download.hxx
tools/inc/tools/eacopier.hxx
tools/inc/tools/fract.hxx
tools/inc/tools/fsys.hxx
tools/inc/tools/geninfo.hxx
tools/inc/tools/globname.hxx
tools/inc/tools/inetmime.hxx
tools/inc/tools/multisel.hxx
tools/inc/tools/poly.hxx
tools/inc/tools/postsys.h
tools/inc/tools/postwin.h
tools/inc/tools/presys.h
tools/inc/tools/prewin.h
tools/inc/tools/pstm.hxx
tools/inc/tools/ref.hxx
tools/inc/tools/simplerm.hxx
tools/inc/tools/solar.h
tools/inc/tools/table.hxx
tools/inc/tools/urlkeys.hxx
tools/inc/tools/urlobj.hxx
tools/prj/build.lst
tools/prj/d.lst
tools/qa/makefile.mk
tools/source/communi/geninfo.cxx
tools/source/debug/debug.cxx
tools/source/fsys/dirent.cxx
tools/source/fsys/tdir.cxx
tools/source/fsys/unx.cxx
tools/source/fsys/urlobj.cxx
tools/source/generic/color.cxx
tools/source/generic/config.cxx
tools/source/generic/fract.cxx
tools/source/inet/inetmime.cxx
tools/source/memtools/multisel.cxx
tools/source/memtools/table.cxx
tools/source/rc/resmgr.cxx
tools/source/ref/globname.cxx
tools/source/ref/pstm.cxx
tools/source/solar/solar.c
tools/source/stream/strmos2.cxx
tools/source/stream/strmunx.cxx
tools/source/stream/strmwnt.cxx
tools/source/string/makefile.mk
tools/source/testtoolloader/testtoolloader.cxx
tools/test/makefile.mk
tools/util/makefile.mk
tools/win/inc/dll.hxx
tools/win/inc/parser.hxx
tools/win/inc/shellex.h
tools/win/inc/shutil.h
tools/win/inc/toolsdll.hxx
tools/win/inc/winshell.hxx
tools/workben/makefile.mk
ucbhelper/source/client/proxydecider.cxx
ucbhelper/workben/ucbexplorer/ucbexplorer.hrc
unotools/inc/unotools/unotunnelhelper.hxx
unotools/source/config/fltrcfg.cxx
unotools/source/config/lingucfg.cxx
unotools/source/config/misccfg.cxx
unotools/source/config/pathoptions.cxx
unotools/source/config/searchopt.cxx
unotools/source/i18n/localedatawrapper.cxx
unotools/source/ucbhelper/localfilehelper.cxx
unotools/source/ucbhelper/ucbhelper.cxx
unotools/source/ucbhelper/xtempfile.cxx
vcl/aqua/inc/salbmp.h
vcl/aqua/inc/salgdi.h
vcl/aqua/inc/salinst.h
vcl/aqua/source/app/salinst.cxx
vcl/aqua/source/gdi/aquaprintaccessoryview.mm
vcl/aqua/source/gdi/salgdi.cxx
vcl/aqua/source/gdi/salprn.cxx
vcl/aqua/source/window/salframeview.mm
vcl/aqua/source/window/salobj.cxx
vcl/inc/vcl/bitmap.hxx
vcl/inc/vcl/brdwin.hxx
vcl/inc/vcl/button.hxx
vcl/inc/vcl/cmdevt.hxx
vcl/inc/vcl/cvtgrf.hxx
vcl/inc/vcl/dialog.hxx
vcl/inc/vcl/dockwin.hxx
vcl/inc/vcl/event.hxx
vcl/inc/vcl/fixed.hxx
vcl/inc/vcl/fldunit.hxx
vcl/inc/vcl/floatwin.hxx
vcl/inc/vcl/gdimtf.hxx
vcl/inc/vcl/glyphcache.hxx
vcl/inc/vcl/graphite_adaptors.hxx
vcl/inc/vcl/graphite_features.hxx
vcl/inc/vcl/graphite_layout.hxx
vcl/inc/vcl/ilstbox.hxx
vcl/inc/vcl/image.h
vcl/inc/vcl/imgctrl.hxx
vcl/inc/vcl/impbmpconv.hxx
vcl/inc/vcl/impprn.hxx
vcl/inc/vcl/jobset.h
vcl/inc/vcl/keycodes.hxx
vcl/inc/vcl/lstbox.hxx
vcl/inc/vcl/mapunit.hxx
vcl/inc/vcl/menu.hxx
vcl/inc/vcl/msgbox.hxx
vcl/inc/vcl/outdev.hxx
vcl/inc/vcl/prndlg.hxx
vcl/inc/vcl/salatype.hxx
vcl/inc/vcl/salbmp.hxx
vcl/inc/vcl/salgdi.hxx
vcl/inc/vcl/salinst.hxx
vcl/inc/vcl/seleng.hxx
vcl/inc/vcl/settings.hxx
vcl/inc/vcl/smartid.hxx
vcl/inc/vcl/status.hxx
vcl/inc/vcl/strhelper.hxx
vcl/inc/vcl/svapp.hxx
vcl/inc/vcl/svdata.hxx
vcl/inc/vcl/syschild.hxx
vcl/inc/vcl/sysdata.hxx
vcl/inc/vcl/taskpanelist.hxx
vcl/inc/vcl/toolbox.hxx
vcl/inc/vcl/vclevent.hxx
vcl/inc/vcl/windata.hxx
vcl/inc/vcl/window.hxx
vcl/inc/vcl/wintypes.hxx
vcl/os2/source/app/salinst.cxx
vcl/os2/source/gdi/salgdi.cxx
vcl/os2/source/window/salmenu.cxx
vcl/os2/source/window/salobj.cxx
vcl/prj/build.lst
vcl/source/app/dbggui.cxx
vcl/source/app/help.cxx
vcl/source/app/idlemgr.cxx
vcl/source/app/settings.cxx
vcl/source/app/svapp.cxx
vcl/source/app/svdata.cxx
vcl/source/app/svmain.cxx
vcl/source/app/svmainhook.cxx
vcl/source/app/unohelp.cxx
vcl/source/app/vclevent.cxx
vcl/source/control/button.cxx
vcl/source/control/combobox.cxx
vcl/source/control/edit.cxx
vcl/source/control/field.cxx
vcl/source/control/fixed.cxx
vcl/source/control/ilstbox.cxx
vcl/source/control/imgctrl.cxx
vcl/source/control/makefile.mk
vcl/source/control/tabctrl.cxx
vcl/source/gdi/bitmap.cxx
vcl/source/gdi/bitmap2.cxx
vcl/source/gdi/bitmap4.cxx
vcl/source/gdi/bmpconv.cxx
vcl/source/gdi/cvtsvm.cxx
vcl/source/gdi/font.cxx
vcl/source/gdi/gdimtf.cxx
vcl/source/gdi/image.cxx
vcl/source/gdi/impimage.cxx
vcl/source/gdi/jobset.cxx
vcl/source/gdi/makefile.mk
vcl/source/gdi/metaact.cxx
vcl/source/gdi/outdev.cxx
vcl/source/gdi/outdev3.cxx
vcl/source/gdi/outdev4.cxx
vcl/source/gdi/outdevnative.cxx
vcl/source/gdi/pdfwriter.cxx
vcl/source/gdi/pdfwriter_impl.cxx
vcl/source/gdi/print3.cxx
vcl/source/gdi/salmisc.cxx
vcl/source/glyphs/gcach_ftyp.cxx
vcl/source/glyphs/gcach_ftyp.hxx
vcl/source/glyphs/glyphcache.cxx
vcl/source/glyphs/graphite_cache.cxx
vcl/source/glyphs/graphite_layout.cxx
vcl/source/glyphs/graphite_textsrc.hxx
vcl/source/helper/canvasbitmap.cxx
vcl/source/helper/smartid.cxx
vcl/source/helper/xconnection.cxx
vcl/source/src/btntext.src
vcl/source/src/images.src
vcl/source/src/print.src
vcl/source/window/accel.cxx
vcl/source/window/accmgr.cxx
vcl/source/window/brdwin.cxx
vcl/source/window/btndlg.cxx
vcl/source/window/dlgctrl.cxx
vcl/source/window/javachild.cxx
vcl/source/window/menu.cxx
vcl/source/window/msgbox.cxx
vcl/source/window/printdlg.cxx
vcl/source/window/status.cxx
vcl/source/window/syschild.cxx
vcl/source/window/toolbox.cxx
vcl/source/window/toolbox2.cxx
vcl/source/window/window.cxx
vcl/source/window/window2.cxx
vcl/source/window/wrkwin.cxx
vcl/unx/gtk/app/gtkdata.cxx
vcl/unx/gtk/app/gtkinst.cxx
vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
vcl/unx/gtk/window/gtkframe.cxx
vcl/unx/gtk/window/gtkobject.cxx
vcl/unx/headless/svpbmp.hxx
vcl/unx/headless/svpgdi.cxx
vcl/unx/headless/svpgdi.hxx
vcl/unx/headless/svpinst.cxx
vcl/unx/headless/svpinst.hxx
vcl/unx/headless/svpprn.cxx
vcl/unx/headless/svpprn.hxx
vcl/unx/headless/svppspgraphics.cxx
vcl/unx/headless/svppspgraphics.hxx
vcl/unx/headless/svptext.cxx
vcl/unx/inc/dtint.hxx
vcl/unx/inc/plugins/gtk/gtkdata.hxx
vcl/unx/inc/pspgraphics.h
vcl/unx/inc/salbmp.h
vcl/unx/inc/saldata.hxx
vcl/unx/inc/saldisp.hxx
vcl/unx/inc/salgdi.h
vcl/unx/inc/salinst.h
vcl/unx/inc/xfont.hxx
vcl/unx/kde/kdedata.cxx
vcl/unx/kde4/KDESalGraphics.cxx
vcl/unx/source/app/keysymnames.cxx
vcl/unx/source/app/saldata.cxx
vcl/unx/source/app/saldisp.cxx
vcl/unx/source/app/salinst.cxx
vcl/unx/source/app/wmadaptor.cxx
vcl/unx/source/dtrans/X11_selection.cxx
vcl/unx/source/dtrans/X11_service.cxx
vcl/unx/source/gdi/makefile.mk
vcl/unx/source/gdi/pspgraphics.cxx
vcl/unx/source/gdi/salgdi.cxx
vcl/unx/source/gdi/salgdi3.cxx
vcl/unx/source/gdi/salprnpsp.cxx
vcl/unx/source/gdi/xfont.cxx
vcl/unx/source/gdi/xlfd_attr.cxx
vcl/unx/source/gdi/xlfd_attr.hxx
vcl/unx/source/gdi/xlfd_extd.cxx
vcl/unx/source/gdi/xlfd_extd.hxx
vcl/unx/source/gdi/xlfd_smpl.cxx
vcl/unx/source/gdi/xlfd_smpl.hxx
vcl/unx/source/printer/ppdparser.cxx
vcl/unx/source/printer/printerinfomanager.cxx
vcl/unx/source/window/salframe.cxx
vcl/unx/source/window/salmenu.cxx
vcl/unx/source/window/salobj.cxx
vcl/util/makefile2.pmk
vcl/win/inc/salbmp.h
vcl/win/inc/saldata.hxx
vcl/win/inc/salgdi.h
vcl/win/inc/salinst.h
vcl/win/source/app/saldata.cxx
vcl/win/source/app/salinst.cxx
vcl/win/source/gdi/salgdi.cxx
vcl/win/source/gdi/salgdi3.cxx
vcl/win/source/gdi/salprn.cxx
vcl/win/source/gdi/winlayout.cxx
vcl/win/source/window/salframe.cxx
vcl/win/source/window/salobj.cxx
vcl/workben/outdevgrind.cxx
vos/inc/vos/execabl.hxx
vos/inc/vos/macros.hxx
vos/inc/vos/pipe.hxx
vos/inc/vos/process.hxx
vos/inc/vos/refernce.hxx
vos/inc/vos/signal.hxx
vos/inc/vos/socket.hxx
vos/inc/vos/stream.hxx
vos/inc/vos/thread.hxx
vos/source/pipe.cxx
vos/source/process.cxx
vos/source/signal.cxx
vos/source/thread.cxx
vos/source/timer.cxx
2011-03-11 14:24:23 +01:00
|
|
|
virtual sal_uInt16 Exception( sal_uInt16 nError );
|
2008-06-24 10:42:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class TestWindow : public Dialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TestWindow() : Dialog( (Window *) NULL )
|
|
|
|
{
|
2012-06-02 13:13:21 -05:00
|
|
|
SetText( rtl::OUString("CanvasBitmap test harness") );
|
2008-06-24 10:42:00 +00:00
|
|
|
SetSizePixel( Size( 1024, 1024 ) );
|
|
|
|
EnablePaint( true );
|
|
|
|
Show();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~TestWindow() {}
|
|
|
|
virtual void Paint( const Rectangle& rRect );
|
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static bool g_failure=false;
|
|
|
|
|
|
|
|
void test( bool bResult, const char* msg )
|
|
|
|
{
|
|
|
|
if( bResult )
|
|
|
|
{
|
|
|
|
OSL_TRACE("Testing: %s - PASSED", msg);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_failure = true;
|
|
|
|
OSL_TRACE("Testing: %s - FAILED", msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
bool rangeCheck( const rendering::RGBColor& rColor )
|
|
|
|
{
|
|
|
|
return rColor.Red < 0.0 || rColor.Red > 1.0 ||
|
|
|
|
rColor.Green < 0.0 || rColor.Green > 1.0 ||
|
|
|
|
rColor.Blue < 0.0 || rColor.Blue > 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void checkCanvasBitmap( const rtl::Reference<VclCanvasBitmap>& xBmp,
|
|
|
|
const char* msg,
|
|
|
|
int nOriginalDepth )
|
|
|
|
{
|
|
|
|
OSL_TRACE("-------------------------");
|
|
|
|
OSL_TRACE("Testing %s, with depth %d", msg, nOriginalDepth);
|
|
|
|
|
|
|
|
BitmapEx aContainedBmpEx( xBmp->getBitmapEx() );
|
|
|
|
Bitmap aContainedBmp( aContainedBmpEx.GetBitmap() );
|
|
|
|
int nDepth = nOriginalDepth;
|
|
|
|
|
|
|
|
{
|
2011-05-17 10:03:46 +02:00
|
|
|
Bitmap::ScopedReadAccess pAcc( aContainedBmp );
|
2008-06-24 10:42:00 +00:00
|
|
|
nDepth = pAcc->GetBitCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
test( aContainedBmp.GetSizePixel() == Size(200,200),
|
|
|
|
"Original bitmap size" );
|
|
|
|
|
|
|
|
test( xBmp->getSize().Width == 200 && xBmp->getSize().Height == 200,
|
|
|
|
"Original bitmap size via API" );
|
|
|
|
|
|
|
|
test( xBmp->hasAlpha() == aContainedBmpEx.IsTransparent(),
|
|
|
|
"Correct alpha state" );
|
|
|
|
|
|
|
|
test( xBmp->getScaledBitmap( geometry::RealSize2D(500,500), sal_False ).is(),
|
|
|
|
"getScaledBitmap()" );
|
|
|
|
|
|
|
|
rendering::IntegerBitmapLayout aLayout;
|
|
|
|
uno::Sequence<sal_Int8> aPixelData = xBmp->getData(aLayout, geometry::IntegerRectangle2D(0,0,1,1));
|
|
|
|
|
|
|
|
const sal_Int32 nExpectedBitsPerPixel(
|
|
|
|
aContainedBmpEx.IsTransparent() ? std::max(8,nDepth)+8 : nDepth);
|
|
|
|
test( aLayout.ScanLines == 1,
|
|
|
|
"# scanlines" );
|
|
|
|
test( aLayout.ScanLineBytes == (nExpectedBitsPerPixel+7)/8,
|
|
|
|
"# scanline bytes" );
|
|
|
|
test( aLayout.ScanLineStride == (nExpectedBitsPerPixel+7)/8 ||
|
|
|
|
aLayout.ScanLineStride == -(nExpectedBitsPerPixel+7)/8,
|
|
|
|
"# scanline stride" );
|
|
|
|
test( aLayout.PlaneStride == 0,
|
|
|
|
"# plane stride" );
|
|
|
|
|
|
|
|
test( aLayout.ColorSpace.is(),
|
|
|
|
"Color space there" );
|
|
|
|
|
|
|
|
test( aLayout.Palette.is() == (nDepth <= 8),
|
|
|
|
"Palette existance conforms to bitmap" );
|
|
|
|
|
|
|
|
uno::Sequence<sal_Int8> aPixelData2 = xBmp->getPixel( aLayout, geometry::IntegerPoint2D(0,0) );
|
|
|
|
|
|
|
|
test( aPixelData2.getLength() == aPixelData.getLength(),
|
|
|
|
"getData and getPixel return same amount of data" );
|
|
|
|
|
|
|
|
aPixelData = xBmp->getData(aLayout, geometry::IntegerRectangle2D(0,0,200,1));
|
|
|
|
test( aLayout.ScanLines == 1,
|
|
|
|
"# scanlines" );
|
|
|
|
test( aLayout.ScanLineBytes == (200*nExpectedBitsPerPixel+7)/8,
|
|
|
|
"# scanline bytes" );
|
|
|
|
test( aLayout.ScanLineStride == (200*nExpectedBitsPerPixel+7)/8 ||
|
|
|
|
aLayout.ScanLineStride == -(200*nExpectedBitsPerPixel+7)/8,
|
|
|
|
"# scanline stride" );
|
|
|
|
|
|
|
|
uno::Sequence< rendering::RGBColor > aRGBColors = xBmp->convertIntegerToRGB( aPixelData );
|
|
|
|
uno::Sequence< rendering::ARGBColor > aARGBColors = xBmp->convertIntegerToARGB( aPixelData );
|
|
|
|
|
|
|
|
const rendering::RGBColor* pRGBStart ( aRGBColors.getConstArray() );
|
|
|
|
const rendering::RGBColor* pRGBEnd ( aRGBColors.getConstArray()+aRGBColors.getLength() );
|
|
|
|
const rendering::ARGBColor* pARGBStart( aARGBColors.getConstArray() );
|
|
|
|
std::pair<const rendering::RGBColor*,
|
|
|
|
const rendering::ARGBColor*> aRes = std::mismatch( pRGBStart, pRGBEnd, pARGBStart );
|
|
|
|
test( aRes.first == pRGBEnd,
|
|
|
|
"argb and rgb colors are equal" );
|
|
|
|
|
|
|
|
test( std::find_if(pRGBStart,pRGBEnd,&rangeCheck) == pRGBEnd,
|
|
|
|
"rgb colors are within [0,1] range" );
|
|
|
|
|
|
|
|
test( pRGBStart[0].Red == 1.0 && pRGBStart[0].Green == 1.0 && pRGBStart[0].Blue == 1.0,
|
|
|
|
"First pixel is white" );
|
|
|
|
test( pARGBStart[1].Alpha == 1.0,
|
|
|
|
"Second pixel is opaque" );
|
|
|
|
if( aContainedBmpEx.IsTransparent() )
|
|
|
|
{
|
|
|
|
test( pARGBStart[0].Alpha == 0.0,
|
|
|
|
"First pixel is fully transparent" );
|
|
|
|
}
|
|
|
|
|
|
|
|
test( pRGBStart[1].Red == 0.0 && pRGBStart[1].Green == 0.0 && pRGBStart[1].Blue == 0.0,
|
|
|
|
"Second pixel is black" );
|
|
|
|
|
|
|
|
if( nOriginalDepth > 8 )
|
|
|
|
{
|
|
|
|
const Color aCol(COL_GREEN);
|
|
|
|
test( pRGBStart[5].Red == vcl::unotools::toDoubleColor(aCol.GetRed()) &&
|
|
|
|
pRGBStart[5].Green == vcl::unotools::toDoubleColor(aCol.GetGreen()) &&
|
|
|
|
pRGBStart[5].Blue == vcl::unotools::toDoubleColor(aCol.GetBlue()),
|
|
|
|
"Sixth pixel is green" );
|
|
|
|
}
|
|
|
|
else if( nDepth <= 8 )
|
|
|
|
{
|
|
|
|
uno::Reference<rendering::XBitmapPalette> xPal = xBmp->getPalette();
|
|
|
|
test( xPal.is(),
|
|
|
|
"8bit or less: needs palette" );
|
|
|
|
test( xPal->getNumberOfEntries() == 1L << nOriginalDepth,
|
|
|
|
"Palette has correct entry count" );
|
|
|
|
uno::Sequence<double> aIndex;
|
|
|
|
test( xPal->setIndex(aIndex,sal_True,0) == sal_False,
|
|
|
|
"Palette is read-only" );
|
|
|
|
test( xPal->getIndex(aIndex,0),
|
|
|
|
"Palette entry 0 is opaque" );
|
|
|
|
test( xPal->getColorSpace().is(),
|
|
|
|
"Palette has a valid color space" );
|
|
|
|
}
|
|
|
|
|
|
|
|
test( pRGBStart[150].Red == 1.0 && pRGBStart[150].Green == 1.0 && pRGBStart[150].Blue == 1.0,
|
|
|
|
"150th pixel is white" );
|
|
|
|
|
|
|
|
if( nOriginalDepth > 8 )
|
|
|
|
{
|
|
|
|
const uno::Sequence<sal_Int8> aComponentTags( xBmp->getComponentTags() );
|
2008-12-09 13:22:21 +00:00
|
|
|
uno::Sequence<rendering::ARGBColor> aARGBColor(1);
|
|
|
|
uno::Sequence<rendering::RGBColor> aRGBColor(1);
|
2008-06-24 10:42:00 +00:00
|
|
|
uno::Sequence<sal_Int8> aPixel3, aPixel4;
|
|
|
|
|
|
|
|
const Color aCol(COL_GREEN);
|
2008-12-09 13:22:21 +00:00
|
|
|
aARGBColor[0].Red = vcl::unotools::toDoubleColor(aCol.GetRed());
|
|
|
|
aARGBColor[0].Green = vcl::unotools::toDoubleColor(aCol.GetGreen());
|
|
|
|
aARGBColor[0].Blue = vcl::unotools::toDoubleColor(aCol.GetBlue());
|
|
|
|
aARGBColor[0].Alpha = 1.0;
|
2008-06-24 10:42:00 +00:00
|
|
|
|
2008-12-09 13:22:21 +00:00
|
|
|
aRGBColor[0].Red = vcl::unotools::toDoubleColor(aCol.GetRed());
|
|
|
|
aRGBColor[0].Green = vcl::unotools::toDoubleColor(aCol.GetGreen());
|
|
|
|
aRGBColor[0].Blue = vcl::unotools::toDoubleColor(aCol.GetBlue());
|
2008-06-24 10:42:00 +00:00
|
|
|
|
2008-12-09 13:22:21 +00:00
|
|
|
aPixel3 = xBmp->convertIntegerFromARGB( aARGBColor );
|
2008-06-24 10:42:00 +00:00
|
|
|
aPixel4 = xBmp->getPixel( aLayout, geometry::IntegerPoint2D(5,0) );
|
|
|
|
test( aPixel3 == aPixel4,
|
|
|
|
"Green pixel from bitmap matches with manually converted green pixel" );
|
|
|
|
|
|
|
|
if( !aContainedBmpEx.IsTransparent() )
|
|
|
|
{
|
2008-12-09 13:22:21 +00:00
|
|
|
aPixel3 = xBmp->convertIntegerFromRGB( aRGBColor );
|
2008-06-24 10:42:00 +00:00
|
|
|
test( aPixel3 == aPixel4,
|
|
|
|
"Green pixel from bitmap matches with manually RGB-converted green pixel" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void checkBitmapImport( const rtl::Reference<VclCanvasBitmap>& xBmp,
|
|
|
|
const char* msg,
|
|
|
|
int nOriginalDepth )
|
|
|
|
{
|
|
|
|
OSL_TRACE("-------------------------");
|
|
|
|
OSL_TRACE("Testing %s, with depth %d", msg, nOriginalDepth);
|
|
|
|
|
|
|
|
BitmapEx aContainedBmpEx( xBmp->getBitmapEx() );
|
|
|
|
Bitmap aContainedBmp( aContainedBmpEx.GetBitmap() );
|
|
|
|
int nDepth = nOriginalDepth;
|
|
|
|
|
|
|
|
{
|
2011-05-17 10:03:46 +02:00
|
|
|
Bitmap::ScopedReadAccess pAcc( aContainedBmp );
|
2008-06-24 10:42:00 +00:00
|
|
|
nDepth = pAcc->GetBitCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
test( aContainedBmp.GetSizePixel() == Size(200,200),
|
|
|
|
"Original bitmap size" );
|
|
|
|
|
|
|
|
test( xBmp->getSize().Width == 200 && xBmp->getSize().Height == 200,
|
|
|
|
"Original bitmap size via API" );
|
|
|
|
|
|
|
|
test( xBmp->hasAlpha() == aContainedBmpEx.IsTransparent(),
|
|
|
|
"Correct alpha state" );
|
|
|
|
|
|
|
|
test( xBmp->getScaledBitmap( geometry::RealSize2D(500,500), sal_False ).is(),
|
|
|
|
"getScaledBitmap()" );
|
|
|
|
|
|
|
|
rendering::IntegerBitmapLayout aLayout;
|
|
|
|
uno::Sequence<sal_Int8> aPixelData = xBmp->getData(aLayout, geometry::IntegerRectangle2D(0,0,1,1));
|
|
|
|
|
|
|
|
const sal_Int32 nExpectedBitsPerPixel(
|
|
|
|
aContainedBmpEx.IsTransparent() ? std::max(8,nDepth)+8 : nDepth);
|
|
|
|
test( aLayout.ScanLines == 1,
|
|
|
|
"# scanlines" );
|
|
|
|
test( aLayout.ScanLineBytes == (nExpectedBitsPerPixel+7)/8,
|
|
|
|
"# scanline bytes" );
|
|
|
|
test( aLayout.ScanLineStride == (nExpectedBitsPerPixel+7)/8 ||
|
|
|
|
aLayout.ScanLineStride == -(nExpectedBitsPerPixel+7)/8,
|
|
|
|
"# scanline stride" );
|
|
|
|
test( aLayout.PlaneStride == 0,
|
|
|
|
"# plane stride" );
|
|
|
|
|
|
|
|
test( aLayout.ColorSpace.is(),
|
|
|
|
"Color space there" );
|
|
|
|
|
|
|
|
test( aLayout.Palette.is() == (nDepth <= 8),
|
|
|
|
"Palette existance conforms to bitmap" );
|
|
|
|
|
|
|
|
uno::Sequence<sal_Int8> aPixelData2 = xBmp->getPixel( aLayout, geometry::IntegerPoint2D(0,0) );
|
|
|
|
|
|
|
|
test( aPixelData2.getLength() == aPixelData.getLength(),
|
|
|
|
"getData and getPixel return same amount of data" );
|
|
|
|
|
|
|
|
aPixelData = xBmp->getData(aLayout, geometry::IntegerRectangle2D(0,0,200,1));
|
|
|
|
test( aLayout.ScanLines == 1,
|
|
|
|
"# scanlines" );
|
|
|
|
test( aLayout.ScanLineBytes == (200*nExpectedBitsPerPixel+7)/8,
|
|
|
|
"# scanline bytes" );
|
|
|
|
test( aLayout.ScanLineStride == (200*nExpectedBitsPerPixel+7)/8 ||
|
|
|
|
aLayout.ScanLineStride == -(200*nExpectedBitsPerPixel+7)/8,
|
|
|
|
"# scanline stride" );
|
|
|
|
|
|
|
|
uno::Sequence< rendering::RGBColor > aRGBColors = xBmp->convertIntegerToRGB( aPixelData );
|
|
|
|
uno::Sequence< rendering::ARGBColor > aARGBColors = xBmp->convertIntegerToARGB( aPixelData );
|
|
|
|
|
|
|
|
const rendering::RGBColor* pRGBStart ( aRGBColors.getConstArray() );
|
|
|
|
const rendering::RGBColor* pRGBEnd ( aRGBColors.getConstArray()+aRGBColors.getLength() );
|
|
|
|
const rendering::ARGBColor* pARGBStart( aARGBColors.getConstArray() );
|
|
|
|
std::pair<const rendering::RGBColor*,
|
|
|
|
const rendering::ARGBColor*> aRes = std::mismatch( pRGBStart, pRGBEnd, pARGBStart );
|
|
|
|
test( aRes.first == pRGBEnd,
|
|
|
|
"argb and rgb colors are equal" );
|
|
|
|
|
|
|
|
test( std::find_if(pRGBStart,pRGBEnd,&rangeCheck) == pRGBEnd,
|
|
|
|
"rgb colors are within [0,1] range" );
|
|
|
|
|
|
|
|
test( pRGBStart[0].Red == 1.0 && pRGBStart[0].Green == 1.0 && pRGBStart[0].Blue == 1.0,
|
|
|
|
"First pixel is white" );
|
|
|
|
test( pARGBStart[1].Alpha == 1.0,
|
|
|
|
"Second pixel is opaque" );
|
|
|
|
if( aContainedBmpEx.IsTransparent() )
|
|
|
|
{
|
|
|
|
test( pARGBStart[0].Alpha == 0.0,
|
|
|
|
"First pixel is fully transparent" );
|
|
|
|
}
|
|
|
|
|
|
|
|
test( pRGBStart[1].Red == 0.0 && pRGBStart[1].Green == 0.0 && pRGBStart[1].Blue == 0.0,
|
|
|
|
"Second pixel is black" );
|
|
|
|
|
|
|
|
if( nOriginalDepth > 8 )
|
|
|
|
{
|
|
|
|
const Color aCol(COL_GREEN);
|
|
|
|
test( pRGBStart[5].Red == vcl::unotools::toDoubleColor(aCol.GetRed()) &&
|
|
|
|
pRGBStart[5].Green == vcl::unotools::toDoubleColor(aCol.GetGreen()) &&
|
|
|
|
pRGBStart[5].Blue == vcl::unotools::toDoubleColor(aCol.GetBlue()),
|
|
|
|
"Sixth pixel is green" );
|
|
|
|
}
|
|
|
|
else if( nDepth <= 8 )
|
|
|
|
{
|
|
|
|
uno::Reference<rendering::XBitmapPalette> xPal = xBmp->getPalette();
|
|
|
|
test( xPal.is(),
|
|
|
|
"8bit or less: needs palette" );
|
|
|
|
test( xPal->getNumberOfEntries() == 1L << nOriginalDepth,
|
|
|
|
"Palette has correct entry count" );
|
|
|
|
uno::Sequence<double> aIndex;
|
|
|
|
test( xPal->setIndex(aIndex,sal_True,0) == sal_False,
|
|
|
|
"Palette is read-only" );
|
|
|
|
test( xPal->getIndex(aIndex,0),
|
|
|
|
"Palette entry 0 is opaque" );
|
|
|
|
test( xPal->getColorSpace().is(),
|
|
|
|
"Palette has a valid color space" );
|
|
|
|
}
|
|
|
|
|
|
|
|
test( pRGBStart[150].Red == 1.0 && pRGBStart[150].Green == 1.0 && pRGBStart[150].Blue == 1.0,
|
|
|
|
"150th pixel is white" );
|
|
|
|
|
|
|
|
if( nOriginalDepth > 8 )
|
|
|
|
{
|
|
|
|
const uno::Sequence<sal_Int8> aComponentTags( xBmp->getComponentTags() );
|
2008-12-09 13:22:21 +00:00
|
|
|
uno::Sequence<rendering::ARGBColor> aARGBColor(1);
|
|
|
|
uno::Sequence<rendering::RGBColor> aRGBColor(1);
|
2008-06-24 10:42:00 +00:00
|
|
|
uno::Sequence<sal_Int8> aPixel3, aPixel4;
|
|
|
|
|
|
|
|
const Color aCol(COL_GREEN);
|
2008-12-09 13:22:21 +00:00
|
|
|
aARGBColor[0].Red = vcl::unotools::toDoubleColor(aCol.GetRed());
|
|
|
|
aARGBColor[0].Green = vcl::unotools::toDoubleColor(aCol.GetGreen());
|
|
|
|
aARGBColor[0].Blue = vcl::unotools::toDoubleColor(aCol.GetBlue());
|
|
|
|
aARGBColor[0].Alpha = 1.0;
|
2008-06-24 10:42:00 +00:00
|
|
|
|
2008-12-09 13:22:21 +00:00
|
|
|
aRGBColor[0].Red = vcl::unotools::toDoubleColor(aCol.GetRed());
|
|
|
|
aRGBColor[0].Green = vcl::unotools::toDoubleColor(aCol.GetGreen());
|
|
|
|
aRGBColor[0].Blue = vcl::unotools::toDoubleColor(aCol.GetBlue());
|
2008-06-24 10:42:00 +00:00
|
|
|
|
2008-12-09 13:22:21 +00:00
|
|
|
aPixel3 = xBmp->convertIntegerFromARGB( aARGBColor );
|
2008-06-24 10:42:00 +00:00
|
|
|
aPixel4 = xBmp->getPixel( aLayout, geometry::IntegerPoint2D(5,0) );
|
|
|
|
test( aPixel3 == aPixel4,
|
|
|
|
"Green pixel from bitmap matches with manually converted green pixel" );
|
|
|
|
|
|
|
|
if( !aContainedBmpEx.IsTransparent() )
|
|
|
|
{
|
2008-12-09 13:22:21 +00:00
|
|
|
aPixel3 = xBmp->convertIntegerFromRGB( aRGBColor );
|
2008-06-24 10:42:00 +00:00
|
|
|
test( aPixel3 == aPixel4,
|
|
|
|
"Green pixel from bitmap matches with manually RGB-converted green pixel" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class TestBitmap : public cppu::WeakImplHelper3< rendering::XIntegerReadOnlyBitmap,
|
|
|
|
rendering::XBitmapPalette,
|
|
|
|
rendering::XIntegerBitmapColorSpace >
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
geometry::IntegerSize2D maSize;
|
|
|
|
uno::Sequence<sal_Int8> maComponentTags;
|
|
|
|
uno::Sequence<sal_Int32> maComponentBitCounts;
|
|
|
|
rendering::IntegerBitmapLayout maLayout;
|
|
|
|
const sal_Int32 mnBitsPerPixel;
|
|
|
|
|
|
|
|
// XBitmap
|
|
|
|
virtual geometry::IntegerSize2D SAL_CALL getSize() throw (uno::RuntimeException) { return maSize; }
|
|
|
|
virtual ::sal_Bool SAL_CALL hasAlpha( ) throw (uno::RuntimeException) { return mnBitsPerPixel != 8; }
|
|
|
|
virtual uno::Reference< rendering::XBitmap > SAL_CALL getScaledBitmap( const geometry::RealSize2D&,
|
|
|
|
sal_Bool ) throw (uno::RuntimeException) { return this; }
|
|
|
|
|
|
|
|
// XIntegerReadOnlyBitmap
|
|
|
|
virtual uno::Sequence< ::sal_Int8 > SAL_CALL getData( rendering::IntegerBitmapLayout& bitmapLayout,
|
|
|
|
const geometry::IntegerRectangle2D& rect ) throw (lang::IndexOutOfBoundsException,
|
|
|
|
rendering::VolatileContentDestroyedException, uno::RuntimeException)
|
|
|
|
{
|
|
|
|
test( rect.X1 >= 0, "X1 within bounds" );
|
|
|
|
test( rect.Y1 >= 0, "Y1 within bounds" );
|
|
|
|
test( rect.X2 <= maSize.Width, "X2 within bounds" );
|
|
|
|
test( rect.Y2 <= maSize.Height, "Y2 within bounds" );
|
|
|
|
|
|
|
|
bitmapLayout = getMemoryLayout();
|
|
|
|
|
|
|
|
const sal_Int32 nWidth = rect.X2-rect.X1;
|
|
|
|
const sal_Int32 nHeight = rect.Y2-rect.Y1;
|
|
|
|
const sal_Int32 nScanlineLen = (nWidth * mnBitsPerPixel + 7)/8;
|
|
|
|
uno::Sequence<sal_Int8> aRes( nScanlineLen * nHeight );
|
|
|
|
sal_Int8* pOut = aRes.getArray();
|
|
|
|
|
|
|
|
bitmapLayout.ScanLines = nHeight;
|
|
|
|
bitmapLayout.ScanLineBytes =
|
|
|
|
bitmapLayout.ScanLineStride= nScanlineLen;
|
|
|
|
|
|
|
|
if( mnBitsPerPixel == 8 )
|
|
|
|
{
|
|
|
|
for( sal_Int32 y=0; y<nHeight; ++y )
|
|
|
|
{
|
|
|
|
for( sal_Int32 x=0; x<nWidth; ++x )
|
|
|
|
pOut[ y*nScanlineLen + x ] = sal_Int8(x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for( sal_Int32 y=0; y<nHeight; ++y )
|
|
|
|
{
|
|
|
|
for( sal_Int32 x=0; x<nWidth; ++x )
|
|
|
|
{
|
|
|
|
pOut[ y*nScanlineLen + 4*x ] = sal_Int8(rect.X1);
|
|
|
|
pOut[ y*nScanlineLen + 4*x + 1 ] = sal_Int8(rect.Y2);
|
|
|
|
pOut[ y*nScanlineLen + 4*x + 2 ] = sal_Int8(x);
|
|
|
|
pOut[ y*nScanlineLen + 4*x + 3 ] = sal_Int8(rect.Y1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return aRes;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual uno::Sequence< ::sal_Int8 > SAL_CALL getPixel( rendering::IntegerBitmapLayout&,
|
|
|
|
const geometry::IntegerPoint2D& ) throw (lang::IndexOutOfBoundsException,
|
|
|
|
rendering::VolatileContentDestroyedException, uno::RuntimeException)
|
|
|
|
{
|
|
|
|
test(false, "Method not implemented");
|
|
|
|
return uno::Sequence< sal_Int8 >();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual uno::Reference< rendering::XBitmapPalette > SAL_CALL getPalette( ) throw (uno::RuntimeException)
|
|
|
|
{
|
|
|
|
uno::Reference< XBitmapPalette > aRet;
|
|
|
|
if( mnBitsPerPixel == 8 )
|
|
|
|
aRet.set(this);
|
|
|
|
return aRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual rendering::IntegerBitmapLayout SAL_CALL getMemoryLayout( ) throw (uno::RuntimeException)
|
|
|
|
{
|
|
|
|
rendering::IntegerBitmapLayout aLayout( maLayout );
|
|
|
|
|
|
|
|
const sal_Int32 nScanlineLen = (maSize.Width * mnBitsPerPixel + 7)/8;
|
|
|
|
|
|
|
|
aLayout.ScanLines = maSize.Height;
|
|
|
|
aLayout.ScanLineBytes =
|
|
|
|
aLayout.ScanLineStride= nScanlineLen;
|
|
|
|
aLayout.Palette = getPalette();
|
|
|
|
aLayout.ColorSpace.set( this );
|
|
|
|
|
|
|
|
return aLayout;
|
|
|
|
}
|
|
|
|
|
|
|
|
// XBitmapPalette
|
|
|
|
virtual sal_Int32 SAL_CALL getNumberOfEntries() throw (uno::RuntimeException)
|
|
|
|
{
|
|
|
|
test( getPalette().is(),
|
|
|
|
"Got palette interface call without handing out palette?!" );
|
|
|
|
|
|
|
|
return 255;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ::sal_Bool SAL_CALL getIndex( uno::Sequence< double >& entry,
|
|
|
|
::sal_Int32 nIndex ) throw (lang::IndexOutOfBoundsException,
|
|
|
|
uno::RuntimeException)
|
|
|
|
{
|
|
|
|
test( getPalette().is(),
|
|
|
|
"Got palette interface call without handing out palette?!" );
|
|
|
|
test( nIndex >= 0 && nIndex < 256,
|
|
|
|
"Index out of range" );
|
|
|
|
entry = colorToStdColorSpaceSequence(
|
|
|
|
Color(UINT8(nIndex),
|
|
|
|
UINT8(nIndex),
|
|
|
|
UINT8(nIndex)) );
|
|
|
|
|
|
|
|
return sal_True; // no palette transparency here.
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ::sal_Bool SAL_CALL setIndex( const uno::Sequence< double >&,
|
|
|
|
::sal_Bool,
|
|
|
|
::sal_Int32 nIndex ) throw (lang::IndexOutOfBoundsException,
|
|
|
|
lang::IllegalArgumentException,
|
|
|
|
uno::RuntimeException)
|
|
|
|
{
|
|
|
|
test( getPalette().is(),
|
|
|
|
"Got palette interface call without handing out palette?!" );
|
|
|
|
test( nIndex >= 0 && nIndex < 256,
|
|
|
|
"Index out of range" );
|
|
|
|
return sal_False;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct PaletteColorSpaceHolder: public rtl::StaticWithInit<uno::Reference<rendering::XColorSpace>,
|
|
|
|
PaletteColorSpaceHolder>
|
|
|
|
{
|
|
|
|
uno::Reference<rendering::XColorSpace> operator()()
|
|
|
|
{
|
|
|
|
return vcl::unotools::createStandardColorSpace();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
virtual uno::Reference< rendering::XColorSpace > SAL_CALL getColorSpace( ) throw (uno::RuntimeException)
|
|
|
|
{
|
|
|
|
// this is the method from XBitmapPalette. Return palette color
|
|
|
|
// space here
|
|
|
|
return PaletteColorSpaceHolder::get();
|
|
|
|
}
|
|
|
|
|
|
|
|
// XIntegerBitmapColorSpace
|
|
|
|
virtual ::sal_Int8 SAL_CALL getType( ) throw (uno::RuntimeException)
|
|
|
|
{
|
|
|
|
return rendering::ColorSpaceType::RGB;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual uno::Sequence< sal_Int8 > SAL_CALL getComponentTags( ) throw (uno::RuntimeException)
|
|
|
|
{
|
|
|
|
return maComponentTags;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ::sal_Int8 SAL_CALL getRenderingIntent( ) throw (uno::RuntimeException)
|
|
|
|
{
|
|
|
|
return rendering::RenderingIntent::PERCEPTUAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual uno::Sequence< beans::PropertyValue > SAL_CALL getProperties( ) throw (uno::RuntimeException)
|
|
|
|
{
|
|
|
|
test(false, "Method not implemented");
|
|
|
|
return uno::Sequence< ::beans::PropertyValue >();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual uno::Sequence< double > SAL_CALL convertColorSpace( const uno::Sequence< double >&,
|
|
|
|
const uno::Reference< rendering::XColorSpace >& ) throw (uno::RuntimeException)
|
|
|
|
{
|
|
|
|
test(false, "Method not implemented");
|
|
|
|
return uno::Sequence< double >();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual uno::Sequence< rendering::RGBColor > SAL_CALL convertToRGB( const uno::Sequence< double >& ) throw (lang::IllegalArgumentException,
|
|
|
|
uno::RuntimeException)
|
|
|
|
{
|
|
|
|
test(false, "Method not implemented");
|
|
|
|
return uno::Sequence< rendering::RGBColor >();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual uno::Sequence< rendering::ARGBColor > SAL_CALL convertToARGB( const uno::Sequence< double >& ) throw (lang::IllegalArgumentException,
|
|
|
|
uno::RuntimeException)
|
|
|
|
{
|
|
|
|
test(false, "Method not implemented");
|
|
|
|
return uno::Sequence< rendering::ARGBColor >();
|
|
|
|
}
|
|
|
|
|
2008-12-09 13:22:21 +00:00
|
|
|
virtual uno::Sequence< rendering::ARGBColor > SAL_CALL convertToPARGB( const uno::Sequence< double >& ) throw (lang::IllegalArgumentException,
|
|
|
|
uno::RuntimeException)
|
|
|
|
{
|
|
|
|
test(false, "Method not implemented");
|
|
|
|
return uno::Sequence< rendering::ARGBColor >();
|
|
|
|
}
|
|
|
|
|
2008-06-24 10:42:00 +00:00
|
|
|
virtual uno::Sequence< double > SAL_CALL convertFromRGB( const uno::Sequence< rendering::RGBColor >& ) throw (lang::IllegalArgumentException,
|
|
|
|
uno::RuntimeException)
|
|
|
|
{
|
|
|
|
test(false, "Method not implemented");
|
|
|
|
return uno::Sequence< double >();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual uno::Sequence< double > SAL_CALL convertFromARGB( const uno::Sequence< rendering::ARGBColor >& ) throw (lang::IllegalArgumentException,
|
|
|
|
uno::RuntimeException)
|
|
|
|
{
|
|
|
|
test(false, "This method is not expected to be called!");
|
|
|
|
return uno::Sequence< double >();
|
|
|
|
}
|
|
|
|
|
2008-12-09 13:22:21 +00:00
|
|
|
virtual uno::Sequence< double > SAL_CALL convertFromPARGB( const uno::Sequence< rendering::ARGBColor >& ) throw (lang::IllegalArgumentException,
|
|
|
|
uno::RuntimeException)
|
|
|
|
{
|
|
|
|
test(false, "This method is not expected to be called!");
|
|
|
|
return uno::Sequence< double >();
|
|
|
|
}
|
|
|
|
|
2008-06-24 10:42:00 +00:00
|
|
|
virtual ::sal_Int32 SAL_CALL getBitsPerPixel( ) throw (uno::RuntimeException)
|
|
|
|
{
|
|
|
|
return mnBitsPerPixel;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual uno::Sequence< ::sal_Int32 > SAL_CALL getComponentBitCounts( ) throw (uno::RuntimeException)
|
|
|
|
{
|
|
|
|
return maComponentBitCounts;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ::sal_Int8 SAL_CALL getEndianness( ) throw (uno::RuntimeException)
|
|
|
|
{
|
|
|
|
return util::Endianness::LITTLE;
|
|
|
|
}
|
|
|
|
|
2008-12-09 13:22:21 +00:00
|
|
|
virtual uno::Sequence< double > SAL_CALL convertFromIntegerColorSpace( const uno::Sequence< ::sal_Int8 >& ,
|
|
|
|
const uno::Reference< rendering::XColorSpace >& ) throw (lang::IllegalArgumentException,
|
|
|
|
uno::RuntimeException)
|
|
|
|
{
|
|
|
|
test(false, "Method not implemented");
|
|
|
|
return uno::Sequence< double >();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual uno::Sequence< ::sal_Int8 > SAL_CALL convertToIntegerColorSpace( const uno::Sequence< ::sal_Int8 >& ,
|
|
|
|
const uno::Reference< rendering::XIntegerBitmapColorSpace >& ) throw (lang::IllegalArgumentException,
|
|
|
|
uno::RuntimeException)
|
2008-06-24 10:42:00 +00:00
|
|
|
{
|
|
|
|
test(false, "Method not implemented");
|
|
|
|
return uno::Sequence< sal_Int8 >();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual uno::Sequence< rendering::RGBColor > SAL_CALL convertIntegerToRGB( const uno::Sequence< ::sal_Int8 >& deviceColor ) throw (lang::IllegalArgumentException,
|
|
|
|
uno::RuntimeException)
|
|
|
|
{
|
|
|
|
const uno::Sequence< rendering::ARGBColor > aTemp( convertIntegerToARGB(deviceColor) );
|
|
|
|
const sal_Size nLen(aTemp.getLength());
|
|
|
|
uno::Sequence< rendering::RGBColor > aRes( nLen );
|
|
|
|
rendering::RGBColor* pOut = aRes.getArray();
|
|
|
|
for( sal_Size i=0; i<nLen; ++i )
|
|
|
|
{
|
|
|
|
*pOut++ = rendering::RGBColor(aTemp[i].Red,
|
|
|
|
aTemp[i].Green,
|
|
|
|
aTemp[i].Blue);
|
|
|
|
}
|
|
|
|
|
|
|
|
return aRes;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual uno::Sequence< rendering::ARGBColor > SAL_CALL convertIntegerToARGB( const uno::Sequence< ::sal_Int8 >& deviceColor ) throw (lang::IllegalArgumentException,
|
|
|
|
uno::RuntimeException)
|
|
|
|
{
|
|
|
|
const sal_Size nLen( deviceColor.getLength() );
|
|
|
|
const sal_Int32 nBytesPerPixel(mnBitsPerPixel == 8 ? 1 : 4);
|
|
|
|
test(nLen%nBytesPerPixel==0,
|
|
|
|
"number of channels no multiple of pixel element count");
|
|
|
|
|
|
|
|
uno::Sequence< rendering::ARGBColor > aRes( nLen / nBytesPerPixel );
|
|
|
|
rendering::ARGBColor* pOut( aRes.getArray() );
|
|
|
|
|
|
|
|
if( getPalette().is() )
|
|
|
|
{
|
|
|
|
for( sal_Size i=0; i<nLen; ++i )
|
|
|
|
{
|
|
|
|
*pOut++ = rendering::ARGBColor(
|
|
|
|
1.0,
|
|
|
|
vcl::unotools::toDoubleColor(deviceColor[i]),
|
|
|
|
vcl::unotools::toDoubleColor(deviceColor[i]),
|
|
|
|
vcl::unotools::toDoubleColor(deviceColor[i]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for( sal_Size i=0; i<nLen; i+=4 )
|
|
|
|
{
|
|
|
|
*pOut++ = rendering::ARGBColor(
|
|
|
|
vcl::unotools::toDoubleColor(deviceColor[i+3]),
|
|
|
|
vcl::unotools::toDoubleColor(deviceColor[i+0]),
|
|
|
|
vcl::unotools::toDoubleColor(deviceColor[i+1]),
|
|
|
|
vcl::unotools::toDoubleColor(deviceColor[i+2]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return aRes;
|
|
|
|
}
|
|
|
|
|
2008-12-09 13:22:21 +00:00
|
|
|
virtual uno::Sequence< rendering::ARGBColor > SAL_CALL convertIntegerToPARGB( const uno::Sequence< ::sal_Int8 >& deviceColor ) throw (lang::IllegalArgumentException,
|
|
|
|
uno::RuntimeException)
|
|
|
|
{
|
|
|
|
const sal_Size nLen( deviceColor.getLength() );
|
|
|
|
const sal_Int32 nBytesPerPixel(mnBitsPerPixel == 8 ? 1 : 4);
|
|
|
|
test(nLen%nBytesPerPixel==0,
|
|
|
|
"number of channels no multiple of pixel element count");
|
|
|
|
|
|
|
|
uno::Sequence< rendering::ARGBColor > aRes( nLen / nBytesPerPixel );
|
|
|
|
rendering::ARGBColor* pOut( aRes.getArray() );
|
|
|
|
|
|
|
|
if( getPalette().is() )
|
|
|
|
{
|
|
|
|
for( sal_Size i=0; i<nLen; ++i )
|
|
|
|
{
|
|
|
|
*pOut++ = rendering::ARGBColor(
|
|
|
|
1.0,
|
|
|
|
vcl::unotools::toDoubleColor(deviceColor[i]),
|
|
|
|
vcl::unotools::toDoubleColor(deviceColor[i]),
|
|
|
|
vcl::unotools::toDoubleColor(deviceColor[i]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for( sal_Size i=0; i<nLen; i+=4 )
|
|
|
|
{
|
|
|
|
const double fAlpha=vcl::unotools::toDoubleColor(deviceColor[i+3]);
|
|
|
|
*pOut++ = rendering::ARGBColor(
|
|
|
|
fAlpha,
|
|
|
|
fAlpha*vcl::unotools::toDoubleColor(deviceColor[i+0]),
|
|
|
|
fAlpha*vcl::unotools::toDoubleColor(deviceColor[i+1]),
|
|
|
|
fAlpha*vcl::unotools::toDoubleColor(deviceColor[i+2]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return aRes;
|
|
|
|
}
|
|
|
|
|
2008-06-24 10:42:00 +00:00
|
|
|
virtual uno::Sequence< ::sal_Int8 > SAL_CALL convertIntegerFromRGB( const uno::Sequence< rendering::RGBColor >& ) throw (lang::IllegalArgumentException,
|
|
|
|
uno::RuntimeException)
|
|
|
|
{
|
|
|
|
test(false, "Method not implemented");
|
|
|
|
return uno::Sequence< sal_Int8 >();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual uno::Sequence< ::sal_Int8 > SAL_CALL convertIntegerFromARGB( const uno::Sequence< rendering::ARGBColor >& ) throw (lang::IllegalArgumentException,
|
|
|
|
uno::RuntimeException)
|
|
|
|
{
|
|
|
|
test(false, "Method not implemented");
|
|
|
|
return uno::Sequence< sal_Int8 >();
|
|
|
|
}
|
|
|
|
|
2008-12-09 13:22:21 +00:00
|
|
|
virtual uno::Sequence< ::sal_Int8 > SAL_CALL convertIntegerFromPARGB( const uno::Sequence< rendering::ARGBColor >& ) throw (lang::IllegalArgumentException,
|
|
|
|
uno::RuntimeException)
|
|
|
|
{
|
|
|
|
test(false, "Method not implemented");
|
|
|
|
return uno::Sequence< sal_Int8 >();
|
|
|
|
}
|
|
|
|
|
2008-06-24 10:42:00 +00:00
|
|
|
public:
|
|
|
|
TestBitmap( const geometry::IntegerSize2D& rSize, bool bPalette ) :
|
|
|
|
maSize(rSize),
|
|
|
|
maComponentTags(),
|
|
|
|
maComponentBitCounts(),
|
|
|
|
maLayout(),
|
|
|
|
mnBitsPerPixel( bPalette ? 8 : 32 )
|
|
|
|
{
|
|
|
|
if( bPalette )
|
|
|
|
{
|
|
|
|
maComponentTags.realloc(1);
|
|
|
|
maComponentTags[0] = rendering::ColorComponentTag::INDEX;
|
|
|
|
|
|
|
|
maComponentBitCounts.realloc(1);
|
|
|
|
maComponentBitCounts[0] = 8;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
maComponentTags.realloc(4);
|
|
|
|
sal_Int8* pTags = maComponentTags.getArray();
|
|
|
|
pTags[0] = rendering::ColorComponentTag::RGB_BLUE;
|
|
|
|
pTags[1] = rendering::ColorComponentTag::RGB_GREEN;
|
|
|
|
pTags[2] = rendering::ColorComponentTag::RGB_RED;
|
|
|
|
pTags[3] = rendering::ColorComponentTag::ALPHA;
|
|
|
|
|
|
|
|
maComponentBitCounts.realloc(4);
|
|
|
|
sal_Int32* pCounts = maComponentBitCounts.getArray();
|
|
|
|
pCounts[0] = 8;
|
|
|
|
pCounts[1] = 8;
|
|
|
|
pCounts[2] = 8;
|
|
|
|
pCounts[3] = 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
maLayout.ScanLines = 0;
|
|
|
|
maLayout.ScanLineBytes = 0;
|
|
|
|
maLayout.ScanLineStride = 0;
|
|
|
|
maLayout.PlaneStride = 0;
|
|
|
|
maLayout.ColorSpace.clear();
|
|
|
|
maLayout.Palette.clear();
|
|
|
|
maLayout.IsMsbFirst = sal_False;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void TestWindow::Paint( const Rectangle& )
|
|
|
|
{
|
2008-12-09 13:22:21 +00:00
|
|
|
static sal_Int8 lcl_depths[]={1,4,8,16,24};
|
2008-06-24 10:42:00 +00:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// Testing VclCanvasBitmap wrapper
|
|
|
|
// ===============================
|
|
|
|
|
2012-01-10 16:00:18 +01:00
|
|
|
for( unsigned int i=0; i<SAL_N_ELEMENTS(lcl_depths); ++i )
|
2008-06-24 10:42:00 +00:00
|
|
|
{
|
|
|
|
const sal_Int8 nDepth( lcl_depths[i] );
|
|
|
|
Bitmap aBitmap(Size(200,200),nDepth);
|
|
|
|
aBitmap.Erase(COL_WHITE);
|
|
|
|
{
|
2011-05-17 10:03:46 +02:00
|
|
|
Bitmap::ScopedWriteAccess pAcc(aBitmap);
|
2008-06-24 10:42:00 +00:00
|
|
|
if( pAcc.get() )
|
|
|
|
{
|
2008-12-09 13:22:21 +00:00
|
|
|
BitmapColor aBlack(0);
|
|
|
|
BitmapColor aWhite(0);
|
2008-06-24 10:42:00 +00:00
|
|
|
if( pAcc->HasPalette() )
|
|
|
|
{
|
|
|
|
aBlack.SetIndex( sal::static_int_cast<BYTE>(pAcc->GetBestPaletteIndex(BitmapColor(0,0,0))) );
|
|
|
|
aWhite.SetIndex( sal::static_int_cast<BYTE>(pAcc->GetBestPaletteIndex(BitmapColor(255,255,255))) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
aBlack = Color(COL_BLACK);
|
|
|
|
aWhite = Color(COL_WHITE);
|
|
|
|
}
|
|
|
|
pAcc->SetFillColor(COL_GREEN);
|
|
|
|
pAcc->FillRect(Rectangle(0,0,100,100));
|
|
|
|
pAcc->SetPixel(0,0,aWhite);
|
|
|
|
pAcc->SetPixel(0,1,aBlack);
|
|
|
|
pAcc->SetPixel(0,2,aWhite);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rtl::Reference<VclCanvasBitmap> xBmp( new VclCanvasBitmap(aBitmap) );
|
|
|
|
|
|
|
|
checkCanvasBitmap( xBmp, "single bitmap", nDepth );
|
|
|
|
|
|
|
|
Bitmap aMask(Size(200,200),1);
|
|
|
|
aMask.Erase(COL_WHITE);
|
|
|
|
{
|
2011-05-17 10:03:46 +02:00
|
|
|
Bitmap::ScopedWriteAccess pAcc(aMask);
|
2008-06-24 10:42:00 +00:00
|
|
|
if( pAcc.get() )
|
|
|
|
{
|
|
|
|
pAcc->SetFillColor(COL_BLACK);
|
|
|
|
pAcc->FillRect(Rectangle(0,0,100,100));
|
|
|
|
pAcc->SetPixel(0,0,BitmapColor(1));
|
|
|
|
pAcc->SetPixel(0,1,BitmapColor(0));
|
|
|
|
pAcc->SetPixel(0,2,BitmapColor(1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
xBmp.set( new VclCanvasBitmap(BitmapEx(aBitmap,aMask)) );
|
|
|
|
|
|
|
|
checkCanvasBitmap( xBmp, "masked bitmap", nDepth );
|
|
|
|
|
|
|
|
AlphaMask aAlpha(Size(200,200));
|
|
|
|
aAlpha.Erase(255);
|
|
|
|
{
|
|
|
|
BitmapWriteAccess* pAcc = aAlpha.AcquireWriteAccess();
|
|
|
|
if( pAcc )
|
|
|
|
{
|
|
|
|
pAcc->SetFillColor(COL_BLACK);
|
|
|
|
pAcc->FillRect(Rectangle(0,0,100,100));
|
|
|
|
pAcc->SetPixel(0,0,BitmapColor(255));
|
|
|
|
pAcc->SetPixel(0,1,BitmapColor(0));
|
|
|
|
pAcc->SetPixel(0,2,BitmapColor(255));
|
|
|
|
aAlpha.ReleaseAccess(pAcc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
xBmp.set( new VclCanvasBitmap(BitmapEx(aBitmap,aAlpha)) );
|
|
|
|
|
|
|
|
checkCanvasBitmap( xBmp, "alpha bitmap", nDepth );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Testing XBitmap import
|
|
|
|
// ======================
|
|
|
|
uno::Reference< rendering::XIntegerReadOnlyBitmap > xTestBmp(
|
|
|
|
new TestBitmap( geometry::IntegerSize2D(10,10), true ));
|
|
|
|
|
|
|
|
BitmapEx aBmp = vcl::unotools::bitmapExFromXBitmap(xTestBmp);
|
|
|
|
test( aBmp.IsTransparent() == false,
|
|
|
|
"Palette bitmap is not transparent" );
|
|
|
|
test( aBmp.GetSizePixel() == Size(10,10),
|
|
|
|
"Bitmap has size (10,10)" );
|
|
|
|
test( aBmp.GetBitCount() == 8,
|
|
|
|
"Bitmap has bitcount of 8" );
|
|
|
|
{
|
|
|
|
BitmapReadAccess* pBmpAcc = aBmp.GetBitmap().AcquireReadAccess();
|
|
|
|
|
|
|
|
test( pBmpAcc,
|
|
|
|
"Bitmap has valid BitmapReadAccess" );
|
|
|
|
|
|
|
|
test(pBmpAcc->GetPixel(0,0) == BitmapColor(0),
|
|
|
|
"(0,0) correct content");
|
|
|
|
test(pBmpAcc->GetPixel(2,2) == BitmapColor(2),
|
|
|
|
"(2,2) correct content");
|
|
|
|
test(pBmpAcc->GetPixel(2,9) == BitmapColor(9),
|
|
|
|
"(9,2) correct content");
|
|
|
|
|
|
|
|
aBmp.GetBitmap().ReleaseAccess(pBmpAcc);
|
|
|
|
}
|
|
|
|
|
|
|
|
xTestBmp.set( new TestBitmap( geometry::IntegerSize2D(10,10), false ));
|
|
|
|
|
|
|
|
aBmp = vcl::unotools::bitmapExFromXBitmap(xTestBmp);
|
|
|
|
test( aBmp.IsTransparent() == TRUE,
|
|
|
|
"Palette bitmap is transparent" );
|
|
|
|
test( aBmp.IsAlpha() == TRUE,
|
|
|
|
"Palette bitmap has alpha" );
|
|
|
|
test( aBmp.GetSizePixel() == Size(10,10),
|
|
|
|
"Bitmap has size (10,10)" );
|
|
|
|
test( aBmp.GetBitCount() == 24,
|
|
|
|
"Bitmap has bitcount of 24" );
|
|
|
|
{
|
|
|
|
BitmapReadAccess* pBmpAcc = aBmp.GetBitmap().AcquireReadAccess();
|
|
|
|
BitmapReadAccess* pAlphaAcc = aBmp.GetAlpha().AcquireReadAccess();
|
|
|
|
|
|
|
|
test( pBmpAcc,
|
|
|
|
"Bitmap has valid BitmapReadAccess" );
|
|
|
|
test( pAlphaAcc,
|
|
|
|
"Bitmap has valid alpha BitmapReadAccess" );
|
|
|
|
|
|
|
|
test(pBmpAcc->GetPixel(0,0) == BitmapColor(0,1,0),
|
|
|
|
"(0,0) correct content");
|
|
|
|
test(pAlphaAcc->GetPixel(0,0) == BitmapColor(255),
|
|
|
|
"(0,0) correct alpha content");
|
|
|
|
test(pBmpAcc->GetPixel(2,2) == BitmapColor(0,3,2),
|
|
|
|
"(2,2) correct content");
|
|
|
|
test(pAlphaAcc->GetPixel(2,2) == BitmapColor(253),
|
|
|
|
"(2,2) correct alpha content");
|
|
|
|
test(pBmpAcc->GetPixel(2,9) == BitmapColor(0,3,9),
|
|
|
|
"(9,2) correct content");
|
|
|
|
test(pAlphaAcc->GetPixel(2,9) == BitmapColor(253),
|
|
|
|
"(9,2) correct alpha content");
|
|
|
|
|
|
|
|
aBmp.GetAlpha().ReleaseAccess(pAlphaAcc);
|
|
|
|
aBmp.GetBitmap().ReleaseAccess(pBmpAcc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch( uno::Exception& )
|
|
|
|
{
|
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
catch( std::exception& )
|
|
|
|
{
|
|
|
|
OSL_TRACE( "Caught std exception!" );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( g_failure )
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
|
2008-12-09 13:22:21 +00:00
|
|
|
} // namespace
|
2008-06-24 10:42:00 +00:00
|
|
|
|
2008-12-09 13:22:21 +00:00
|
|
|
void Main()
|
2008-06-24 10:42:00 +00:00
|
|
|
{
|
2008-12-09 13:22:21 +00:00
|
|
|
TestWindow aWindow;
|
|
|
|
aWindow.Execute();
|
2012-06-29 09:16:03 +01:00
|
|
|
aWindow.SetText( rtl::OUString( "VCL - canvasbitmaptest" ) );
|
2008-06-24 10:42:00 +00:00
|
|
|
|
2008-12-09 13:22:21 +00:00
|
|
|
Application::Execute();
|
2008-06-24 10:42:00 +00:00
|
|
|
}
|
|
|
|
|
2010-10-14 08:27:31 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|