2014-05-31 14:03:34 -05:00
|
|
|
/* -*- 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/.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-03-12 23:38:44 -05:00
|
|
|
#ifndef INCLUDED_VCL_INC_BITMAPDISABLEDIMAGEFILTER_HXX
|
|
|
|
#define INCLUDED_VCL_INC_BITMAPDISABLEDIMAGEFILTER_HXX
|
2014-05-31 14:03:34 -05:00
|
|
|
|
2018-03-12 23:38:44 -05:00
|
|
|
#include <vcl/BitmapFilter.hxx>
|
2014-05-31 14:03:34 -05:00
|
|
|
|
2019-11-27 10:53:47 -06:00
|
|
|
class VCL_DLLPUBLIC BitmapDisabledImageFilter final : public BitmapFilter
|
2014-05-31 14:03:34 -05:00
|
|
|
{
|
|
|
|
public:
|
2018-03-12 23:38:44 -05:00
|
|
|
BitmapDisabledImageFilter() {}
|
2014-09-28 07:33:50 -05:00
|
|
|
|
2018-09-07 10:39:58 -05:00
|
|
|
virtual BitmapEx execute(BitmapEx const& rBitmapEx) const override;
|
2014-05-31 14:03:34 -05:00
|
|
|
};
|
|
|
|
|
2016-12-01 09:02:12 -06:00
|
|
|
#endif
|
2014-05-31 14:03:34 -05:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|