workaround segfault in compiler on macos-clang-intel
[LibreOffice.git] / include / vcl / image.hxx
blob6c130bf4cd2b44c65a64c4a8a6abc15b86f6f9ed
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 #ifndef INCLUDED_VCL_IMAGE_HXX
21 #define INCLUDED_VCL_IMAGE_HXX
23 #include <vcl/dllapi.h>
24 #include <tools/gen.hxx>
25 #include <vcl/bitmapex.hxx>
26 #include <vcl/outdev.hxx>
28 #include <memory>
30 class ImplImage;
32 namespace com::sun::star::graphic { class XGraphic; }
33 namespace com::sun::star::uno { template <class interface_type> class Reference; }
35 #define IMAGELIST_IMAGE_NOTFOUND (sal_uInt16(0xFFFF))
37 enum class StockImage { Yes };
39 class SAL_WARN_UNUSED VCL_DLLPUBLIC Image
41 friend class ::OutputDevice;
42 public:
43 Image();
44 explicit Image(BitmapEx const & rBitmapEx);
45 explicit Image(css::uno::Reference<css::graphic::XGraphic> const & rxGraphic);
46 explicit Image(OUString const & rPNGFileUrl);
47 explicit Image(StockImage, OUString const & rPNGFilePath);
49 Size GetSizePixel() const;
50 BitmapEx GetBitmapEx() const;
52 bool operator!() const
54 return !mpImplData;
56 bool operator==(const Image& rImage) const;
57 bool operator!=(const Image& rImage) const
59 return !(Image::operator==(rImage));
62 OUString GetStock() const;
64 void Draw(OutputDevice* pOutDev, const Point& rPos, DrawImageFlags nStyle, const Size* pSize = nullptr);
66 private:
68 std::shared_ptr<ImplImage> mpImplData;
70 SAL_DLLPRIVATE void ImplInit(BitmapEx const & rBmpEx);
73 #endif // INCLUDED_VCL_IMAGE_HXX
75 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */