bump product version to 7.6.3.2-android
[LibreOffice.git] / include / vcl / BitmapPalette.hxx
blob4f20970e15ec12cb5588b824c487fd5371b34ee1
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #pragma once
22 #include <vcl/dllapi.h>
23 #include <vcl/BitmapColor.hxx>
24 #include <vcl/checksum.hxx>
25 #include <o3tl/cow_wrapper.hxx>
27 #include <array>
29 class ImplBitmapPalette;
31 class VCL_DLLPUBLIC BitmapPalette
33 friend class SalBitmap;
34 friend class BitmapAccess;
36 public:
38 SAL_DLLPRIVATE const BitmapColor* ImplGetColorBuffer() const;
40 SAL_DLLPRIVATE BitmapColor* ImplGetColorBuffer();
42 BitmapChecksum GetChecksum() const;
44 BitmapPalette();
45 BitmapPalette( const BitmapPalette& );
46 BitmapPalette( BitmapPalette&& ) noexcept;
47 BitmapPalette(std::initializer_list<BitmapColor> aBitmapColor);
48 template <size_t N> BitmapPalette(const std::array<BitmapColor, N>& colors);
49 explicit BitmapPalette(sal_uInt16 nCount);
50 ~BitmapPalette();
52 BitmapPalette& operator=( const BitmapPalette& );
53 BitmapPalette& operator=( BitmapPalette&& ) noexcept;
55 bool operator==( const BitmapPalette& rBitmapPalette ) const;
56 bool operator!=(const BitmapPalette& rBitmapPalette) const
58 return !( *this == rBitmapPalette );
60 bool operator!() const;
62 sal_uInt16 GetEntryCount() const;
63 void SetEntryCount(sal_uInt16 nCount);
65 const BitmapColor& operator[](sal_uInt16 nIndex) const;
66 BitmapColor& operator[](sal_uInt16 nIndex);
68 sal_uInt16 GetBestIndex(const BitmapColor& rCol) const;
70 /// Returns true if the palette is 8-bit grey palette.
71 bool IsGreyPalette8Bit() const;
72 /// Returns true if the palette is a grey palette (may not be 8-bit).
73 bool IsGreyPaletteAny() const;
75 typedef o3tl::cow_wrapper< ImplBitmapPalette > ImplType;
77 private:
78 BitmapPalette(const BitmapColor* first, const BitmapColor* last);
80 ImplType mpImpl;
83 template <size_t N>
84 BitmapPalette::BitmapPalette(const std::array<BitmapColor, N>& colors)
85 : BitmapPalette(colors.data(), colors.data() + N)
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */