1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
22 #include <QtCore/QPoint>
23 #include <QtCore/QRect>
24 #include <QtCore/QSize>
25 #include <QtCore/QString>
26 #include <QtGui/QImage>
28 #include <rtl/string.hxx>
29 #include <rtl/ustring.hxx>
30 #include <tools/color.hxx>
31 #include <tools/gen.hxx>
32 #include <vcl/bitmap/BitmapTypes.hxx>
34 #include <com/sun/star/uno/Sequence.hxx>
35 #include <com/sun/star/datatransfer/dnd/DNDConstants.hpp>
42 inline OUString
toOUString(const QString
& s
)
44 // QString stores UTF16, just like OUString
45 return OUString(reinterpret_cast<const sal_Unicode
*>(s
.data()), s
.length());
48 inline QString
toQString(const OUString
& s
)
50 return QString::fromUtf16(reinterpret_cast<ushort
const*>(s
.getStr()), s
.getLength());
53 inline QRect
toQRect(const tools::Rectangle
& rRect
)
55 return QRect(rRect
.Left(), rRect
.Top(), rRect
.GetWidth(), rRect
.GetHeight());
58 inline QRect
toQRect(const tools::Rectangle
& rRect
, const qreal fScale
)
60 return QRect(floor(rRect
.Left() * fScale
), floor(rRect
.Top() * fScale
),
61 ceil(rRect
.GetWidth() * fScale
), ceil(rRect
.GetHeight() * fScale
));
64 inline QRect
scaledQRect(const QRect
& rRect
, const qreal fScale
)
66 return QRect(floor(rRect
.x() * fScale
), floor(rRect
.y() * fScale
), ceil(rRect
.width() * fScale
),
67 ceil(rRect
.height() * fScale
));
70 inline tools::Rectangle
toRectangle(const QRect
& rRect
)
72 return tools::Rectangle(rRect
.left(), rRect
.top(), rRect
.right(), rRect
.bottom());
75 inline QSize
toQSize(const Size
& rSize
) { return QSize(rSize
.Width(), rSize
.Height()); }
77 inline Size
toSize(const QSize
& rSize
) { return Size(rSize
.width(), rSize
.height()); }
79 inline Point
toPoint(const QPoint
& rPoint
) { return Point(rPoint
.x(), rPoint
.y()); }
81 inline QColor
toQColor(const Color
& rColor
)
83 return QColor(rColor
.GetRed(), rColor
.GetGreen(), rColor
.GetBlue(), rColor
.GetAlpha());
86 Qt::DropActions
toQtDropActions(sal_Int8 dragOperation
);
87 sal_Int8
toVclDropActions(Qt::DropActions dragOperation
);
88 sal_Int8
toVclDropAction(Qt::DropAction dragOperation
);
89 Qt::DropAction
getPreferredDropAction(sal_Int8 dragOperation
);
91 inline QList
<int> toQList(const css::uno::Sequence
<sal_Int32
>& aSequence
)
94 for (sal_Int32 i
: aSequence
)
101 constexpr QImage::Format Qt5_DefaultFormat32
= QImage::Format_ARGB32
;
103 inline QImage::Format
getBitFormat(vcl::PixelFormat ePixelFormat
)
105 switch (ePixelFormat
)
107 case vcl::PixelFormat::N1_BPP
:
108 return QImage::Format_Mono
;
109 case vcl::PixelFormat::N8_BPP
:
110 return QImage::Format_Indexed8
;
111 case vcl::PixelFormat::N24_BPP
:
112 return QImage::Format_RGB888
;
113 case vcl::PixelFormat::N32_BPP
:
114 return Qt5_DefaultFormat32
;
119 return QImage::Format_Invalid
;
122 inline sal_uInt16
getFormatBits(QImage::Format eFormat
)
126 case QImage::Format_Mono
:
128 case QImage::Format_Indexed8
:
130 case QImage::Format_RGB888
:
132 case Qt5_DefaultFormat32
:
133 case QImage::Format_ARGB32_Premultiplied
:
141 typedef struct _cairo_surface cairo_surface_t
;
144 void operator()(cairo_surface_t
* pSurface
) const;
147 typedef std::unique_ptr
<cairo_surface_t
, CairoDeleter
> UniqueCairoSurface
;
149 sal_uInt16
GetKeyModCode(Qt::KeyboardModifiers eKeyModifiers
);
150 sal_uInt16
GetMouseModCode(Qt::MouseButtons eButtons
);
152 QImage
toQImage(const Image
& rImage
);
154 template <typename charT
, typename traits
>
155 inline std::basic_ostream
<charT
, traits
>& operator<<(std::basic_ostream
<charT
, traits
>& stream
,
156 const QString
& rString
)
158 return stream
<< toOUString(rString
);
161 template <typename charT
, typename traits
>
162 inline std::basic_ostream
<charT
, traits
>& operator<<(std::basic_ostream
<charT
, traits
>& stream
,
165 return stream
<< toRectangle(rRect
);
168 template <typename charT
, typename traits
>
169 inline std::basic_ostream
<charT
, traits
>& operator<<(std::basic_ostream
<charT
, traits
>& stream
,
172 return stream
<< toSize(rSize
);
175 template <typename charT
, typename traits
>
176 inline std::basic_ostream
<charT
, traits
>& operator<<(std::basic_ostream
<charT
, traits
>& stream
,
177 const QPoint
& rPoint
)
179 return stream
<< toPoint(rPoint
);
182 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */