2015-10-07 13:12:14 +02: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/.
|
|
|
|
*/
|
|
|
|
|
2016-12-27 12:22:43 +05:30
|
|
|
#ifndef VCL_INC_BITMAP_PROCESSOR_HXX
|
|
|
|
#define VCL_INC_BITMAP_PROCESSOR_HXX
|
2015-10-07 13:12:14 +02:00
|
|
|
|
|
|
|
#include <vcl/bitmapex.hxx>
|
|
|
|
|
|
|
|
class BitmapProcessor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static BitmapEx createLightImage(const BitmapEx& rBitmapEx);
|
2015-11-22 17:55:39 +01:00
|
|
|
static BitmapEx createDisabledImage(const BitmapEx& rBitmapEx);
|
2015-11-23 13:16:26 +01:00
|
|
|
static void colorizeImage(BitmapEx& rBitmapEx, Color aColor);
|
2015-10-07 13:12:14 +02:00
|
|
|
};
|
|
|
|
|
2016-12-27 12:22:43 +05:30
|
|
|
#endif // VCL_INC_BITMAP_PROCESSOR_HXX
|
2015-10-07 13:12:14 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|