LanguageTool: don't crash if REST protocol isn't set
[LibreOffice.git] / include / vcl / BitmapPalette.hxx
blob53de5276b28271369a47c38d92c20f947b9801fd
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 <vector>
26 #include <o3tl/cow_wrapper.hxx>
28 class ImplBitmapPalette;
30 class VCL_DLLPUBLIC BitmapPalette
32 friend class SalBitmap;
33 friend class BitmapAccess;
35 public:
37 SAL_DLLPRIVATE const BitmapColor* ImplGetColorBuffer() const;
39 SAL_DLLPRIVATE BitmapColor* ImplGetColorBuffer();
41 BitmapChecksum GetChecksum() const;
43 BitmapPalette();
44 BitmapPalette( const BitmapPalette& );
45 BitmapPalette( BitmapPalette&& ) noexcept;
46 BitmapPalette(std::initializer_list<BitmapColor> aBitmapColor);
47 explicit BitmapPalette(sal_uInt16 nCount);
48 ~BitmapPalette();
50 BitmapPalette& operator=( const BitmapPalette& );
51 BitmapPalette& operator=( BitmapPalette&& ) noexcept;
53 bool operator==( const BitmapPalette& rBitmapPalette ) const;
54 bool operator!=(const BitmapPalette& rBitmapPalette) const
56 return !( *this == rBitmapPalette );
58 bool operator!() const;
60 sal_uInt16 GetEntryCount() const;
61 void SetEntryCount(sal_uInt16 nCount);
63 const BitmapColor& operator[](sal_uInt16 nIndex) const;
64 BitmapColor& operator[](sal_uInt16 nIndex);
66 sal_uInt16 GetBestIndex(const BitmapColor& rCol) const;
68 /// Returns true if the palette is 8-bit grey palette.
69 bool IsGreyPalette8Bit() const;
70 /// Returns true if the palette is a grey palette (may not be 8-bit).
71 bool IsGreyPaletteAny() const;
73 typedef o3tl::cow_wrapper< ImplBitmapPalette > ImplType;
75 private:
76 ImplType mpImpl;
79 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */