1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
|
/* -*- 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/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <tools/GenericTypeSerializer.hxx>
#include <sal/config.h>
#include <sal/log.hxx>
#include <vector>
namespace tools
{
constexpr sal_uInt16 COL_NAME_USER = 0x8000;
constexpr sal_Int32 RECT_EMPTY_VALUE_RIGHT_BOTTOM = -32767;
void GenericTypeSerializer::readColor(Color& rColor)
{
sal_uInt16 nColorNameID(0);
mrStream.ReadUInt16(nColorNameID);
if (nColorNameID & COL_NAME_USER)
{
sal_uInt16 nRed(0);
sal_uInt16 nGreen(0);
sal_uInt16 nBlue(0);
mrStream.ReadUInt16(nRed);
mrStream.ReadUInt16(nGreen);
mrStream.ReadUInt16(nBlue);
rColor = Color(nRed >> 8, nGreen >> 8, nBlue >> 8);
}
else
{
static constexpr Color staticColorArray[] = {
COL_BLACK, // COL_BLACK
COL_BLUE, // COL_BLUE
COL_GREEN, // COL_GREEN
COL_CYAN, // COL_CYAN
COL_RED, // COL_RED
COL_MAGENTA, // COL_MAGENTA
COL_BROWN, // COL_BROWN
COL_GRAY, // COL_GRAY
COL_LIGHTGRAY, // COL_LIGHTGRAY
COL_LIGHTBLUE, // COL_LIGHTBLUE
COL_LIGHTGREEN, // COL_LIGHTGREEN
COL_LIGHTCYAN, // COL_LIGHTCYAN
COL_LIGHTRED, // COL_LIGHTRED
COL_LIGHTMAGENTA, // COL_LIGHTMAGENTA
COL_YELLOW, // COL_YELLOW
COL_WHITE, // COL_WHITE
COL_WHITE, // COL_MENUBAR
COL_BLACK, // COL_MENUBARTEXT
COL_WHITE, // COL_POPUPMENU
COL_BLACK, // COL_POPUPMENUTEXT
COL_BLACK, // COL_WINDOWTEXT
COL_WHITE, // COL_WINDOWWORKSPACE
COL_BLACK, // COL_HIGHLIGHT
COL_WHITE, // COL_HIGHLIGHTTEXT
COL_BLACK, // COL_3DTEXT
COL_LIGHTGRAY, // COL_3DFACE
COL_WHITE, // COL_3DLIGHT
COL_GRAY, // COL_3DSHADOW
COL_LIGHTGRAY, // COL_SCROLLBAR
COL_WHITE, // COL_FIELD
COL_BLACK // COL_FIELDTEXT
};
if (nColorNameID < std::size(staticColorArray))
rColor = staticColorArray[nColorNameID];
else
rColor = COL_BLACK;
}
}
void GenericTypeSerializer::writeColor(const Color& rColor)
{
mrStream.WriteUInt16(COL_NAME_USER);
sal_uInt16 nR = rColor.GetRed();
sal_uInt16 nG = rColor.GetGreen();
sal_uInt16 nB = rColor.GetBlue();
mrStream.WriteUInt16((nR << 8) + nR);
mrStream.WriteUInt16((nG << 8) + nG);
mrStream.WriteUInt16((nB << 8) + nB);
}
void GenericTypeSerializer::readPoint(Point& rPoint)
{
sal_Int32 nX(0);
sal_Int32 nY(0);
mrStream.ReadInt32(nX);
mrStream.ReadInt32(nY);
rPoint.setX(nX);
rPoint.setY(nY);
}
void GenericTypeSerializer::writePoint(const Point& rPoint)
{
mrStream.WriteInt32(rPoint.getX());
mrStream.WriteInt32(rPoint.getY());
}
void GenericTypeSerializer::readSize(Size& rSize)
{
sal_Int32 nWidth(0);
sal_Int32 nHeight(0);
mrStream.ReadInt32(nWidth);
mrStream.ReadInt32(nHeight);
rSize.setWidth(nWidth);
rSize.setHeight(nHeight);
// sanitize negative size dimensions
if (rSize.Width() < 0)
{
SAL_WARN("tools", "negative width");
rSize.setWidth(0);
}
if (rSize.Height() < 0)
{
SAL_WARN("tools", "negative height");
rSize.setHeight(0);
}
}
void GenericTypeSerializer::writeSize(const Size& rSize)
{
mrStream.WriteInt32(rSize.getWidth());
mrStream.WriteInt32(rSize.getHeight());
}
void GenericTypeSerializer::readRectangle(Rectangle& rRectangle)
{
sal_Int32 nLeft(0);
sal_Int32 nTop(0);
sal_Int32 nRight(0);
sal_Int32 nBottom(0);
mrStream.ReadInt32(nLeft);
mrStream.ReadInt32(nTop);
mrStream.ReadInt32(nRight);
mrStream.ReadInt32(nBottom);
if (nRight == RECT_EMPTY_VALUE_RIGHT_BOTTOM || nBottom == RECT_EMPTY_VALUE_RIGHT_BOTTOM)
{
rRectangle.SetEmpty();
}
else
{
rRectangle.SetLeft(nLeft);
rRectangle.SetTop(nTop);
rRectangle.SetRight(nRight);
rRectangle.SetBottom(nBottom);
}
}
void GenericTypeSerializer::writeRectangle(const Rectangle& rRectangle)
{
if (rRectangle.IsEmpty())
{
mrStream.WriteInt32(0);
mrStream.WriteInt32(0);
mrStream.WriteInt32(RECT_EMPTY_VALUE_RIGHT_BOTTOM);
mrStream.WriteInt32(RECT_EMPTY_VALUE_RIGHT_BOTTOM);
}
else
{
mrStream.WriteInt32(rRectangle.Left());
mrStream.WriteInt32(rRectangle.Top());
mrStream.WriteInt32(rRectangle.Right());
mrStream.WriteInt32(rRectangle.Bottom());
}
}
void GenericTypeSerializer::readFraction(Fraction& rFraction)
{
sal_Int32 nNumerator(0);
sal_Int32 nDenominator(0);
mrStream.ReadInt32(nNumerator);
mrStream.ReadInt32(nDenominator);
rFraction = Fraction(nNumerator, nDenominator);
}
void GenericTypeSerializer::writeFraction(Fraction const& rFraction)
{
if (!rFraction.IsValid())
{
SAL_WARN("tools.fraction", "'writeFraction()' write an invalid fraction");
mrStream.WriteInt32(0);
mrStream.WriteInt32(0);
}
else
{
mrStream.WriteInt32(rFraction.GetNumerator());
mrStream.WriteInt32(rFraction.GetDenominator());
}
}
} // end namespace tools
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|