2014-09-30 22:54:36 +04:00
|
|
|
/**
|
|
|
|
* RdTk: Remote Desktop Toolkit
|
|
|
|
*
|
|
|
|
* Copyright 2014 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed 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
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2023-07-31 12:46:21 +03:00
|
|
|
#include <winpr/config.h>
|
2023-07-31 15:48:53 +03:00
|
|
|
#include <winpr/assert.h>
|
2023-07-31 12:46:21 +03:00
|
|
|
|
2022-02-16 13:10:11 +03:00
|
|
|
#include <rdtk/config.h>
|
2014-09-30 22:54:36 +04:00
|
|
|
|
|
|
|
#include "rdtk_resources.h"
|
|
|
|
|
|
|
|
#include "rdtk_nine_patch.h"
|
|
|
|
|
2023-07-31 12:46:21 +03:00
|
|
|
#if defined(WINPR_WITH_PNG)
|
|
|
|
#define FILE_EXT "png"
|
|
|
|
#else
|
|
|
|
#define FILE_EXT "bmp"
|
|
|
|
#endif
|
|
|
|
|
2021-06-18 11:01:52 +03:00
|
|
|
static int rdtk_image_copy_alpha_blend(uint8_t* pDstData, int nDstStep, int nXDst, int nYDst,
|
2024-08-29 16:10:14 +03:00
|
|
|
int nWidth, int nHeight, const uint8_t* pSrcData,
|
|
|
|
int nSrcStep, int nXSrc, int nYSrc)
|
2014-09-30 22:54:36 +04:00
|
|
|
{
|
2023-07-31 15:48:53 +03:00
|
|
|
WINPR_ASSERT(pDstData);
|
|
|
|
WINPR_ASSERT(pSrcData);
|
2014-09-30 22:54:36 +04:00
|
|
|
|
2023-07-31 15:48:53 +03:00
|
|
|
for (int y = 0; y < nHeight; y++)
|
2014-09-30 22:54:36 +04:00
|
|
|
{
|
2021-06-18 11:01:52 +03:00
|
|
|
const uint8_t* pSrcPixel = &pSrcData[((nYSrc + y) * nSrcStep) + (nXSrc * 4)];
|
|
|
|
uint8_t* pDstPixel = &pDstData[((nYDst + y) * nDstStep) + (nXDst * 4)];
|
2014-09-30 22:54:36 +04:00
|
|
|
|
2023-07-31 15:48:53 +03:00
|
|
|
for (int x = 0; x < nWidth; x++)
|
2014-09-30 22:54:36 +04:00
|
|
|
{
|
2023-07-31 15:48:53 +03:00
|
|
|
uint8_t B = pSrcPixel[0];
|
|
|
|
uint8_t G = pSrcPixel[1];
|
|
|
|
uint8_t R = pSrcPixel[2];
|
|
|
|
uint8_t A = pSrcPixel[3];
|
2014-09-30 22:54:36 +04:00
|
|
|
pSrcPixel += 4;
|
|
|
|
|
|
|
|
if (A == 255)
|
|
|
|
{
|
|
|
|
pDstPixel[0] = B;
|
|
|
|
pDstPixel[1] = G;
|
|
|
|
pDstPixel[2] = R;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
R = (R * A) / 255;
|
|
|
|
G = (G * A) / 255;
|
|
|
|
B = (B * A) / 255;
|
|
|
|
pDstPixel[0] = B + (pDstPixel[0] * (255 - A) + (255 / 2)) / 255;
|
|
|
|
pDstPixel[1] = G + (pDstPixel[1] * (255 - A) + (255 / 2)) / 255;
|
|
|
|
pDstPixel[2] = R + (pDstPixel[2] * (255 - A) + (255 / 2)) / 255;
|
|
|
|
}
|
|
|
|
|
|
|
|
pDstPixel[3] = 0xFF;
|
|
|
|
pDstPixel += 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-02-20 20:31:58 +03:00
|
|
|
int rdtk_nine_patch_draw(rdtkSurface* surface, int nXDst, int nYDst, int nWidth, int nHeight,
|
|
|
|
rdtkNinePatch* ninePatch)
|
2014-10-01 03:40:16 +04:00
|
|
|
{
|
2023-07-31 15:48:53 +03:00
|
|
|
WINPR_ASSERT(surface);
|
|
|
|
WINPR_ASSERT(ninePatch);
|
|
|
|
|
2014-10-01 03:40:16 +04:00
|
|
|
if (nWidth < ninePatch->width)
|
|
|
|
nWidth = ninePatch->width;
|
|
|
|
|
|
|
|
if (nHeight < ninePatch->height)
|
|
|
|
nHeight = ninePatch->height;
|
|
|
|
|
2022-04-28 11:49:42 +03:00
|
|
|
WINPR_UNUSED(nHeight);
|
|
|
|
|
2024-09-25 04:53:56 +03:00
|
|
|
int scaleWidth = nWidth - (ninePatch->width - ninePatch->scaleWidth);
|
|
|
|
int nSrcStep = ninePatch->scanline;
|
|
|
|
const uint8_t* pSrcData = ninePatch->data;
|
|
|
|
uint8_t* pDstData = surface->data;
|
|
|
|
WINPR_ASSERT(surface->scanline <= INT_MAX);
|
|
|
|
int nDstStep = (int)surface->scanline;
|
2014-10-01 03:40:16 +04:00
|
|
|
/* top */
|
2024-09-25 04:53:56 +03:00
|
|
|
int x = 0;
|
|
|
|
int y = 0;
|
2014-10-01 03:40:16 +04:00
|
|
|
/* top left */
|
2024-09-25 04:53:56 +03:00
|
|
|
int nXSrc = 0;
|
|
|
|
int nYSrc = 0;
|
|
|
|
int width = ninePatch->scaleLeft;
|
|
|
|
int height = ninePatch->scaleTop;
|
2019-11-06 17:24:51 +03:00
|
|
|
rdtk_image_copy_alpha_blend(pDstData, nDstStep, nXDst + x, nYDst + y, width, height, pSrcData,
|
|
|
|
nSrcStep, nXSrc, nYSrc);
|
2014-10-01 03:40:16 +04:00
|
|
|
x += width;
|
|
|
|
/* top middle (scalable) */
|
|
|
|
nXSrc = ninePatch->scaleLeft;
|
|
|
|
nYSrc = 0;
|
|
|
|
height = ninePatch->scaleTop;
|
|
|
|
|
|
|
|
while (x < (nXSrc + scaleWidth))
|
|
|
|
{
|
|
|
|
width = (nXSrc + scaleWidth) - x;
|
|
|
|
|
|
|
|
if (width > ninePatch->scaleWidth)
|
|
|
|
width = ninePatch->scaleWidth;
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
rdtk_image_copy_alpha_blend(pDstData, nDstStep, nXDst + x, nYDst + y, width, height,
|
|
|
|
pSrcData, nSrcStep, nXSrc, nYSrc);
|
2014-10-01 03:40:16 +04:00
|
|
|
x += width;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* top right */
|
|
|
|
nXSrc = ninePatch->scaleRight;
|
|
|
|
nYSrc = 0;
|
|
|
|
width = ninePatch->width - ninePatch->scaleRight;
|
|
|
|
height = ninePatch->scaleTop;
|
2019-11-06 17:24:51 +03:00
|
|
|
rdtk_image_copy_alpha_blend(pDstData, nDstStep, nXDst + x, nYDst + y, width, height, pSrcData,
|
|
|
|
nSrcStep, nXSrc, nYSrc);
|
2014-10-01 03:40:16 +04:00
|
|
|
/* middle */
|
|
|
|
x = 0;
|
|
|
|
y = ninePatch->scaleTop;
|
|
|
|
/* middle left */
|
|
|
|
nXSrc = 0;
|
|
|
|
nYSrc = ninePatch->scaleTop;
|
|
|
|
width = ninePatch->scaleLeft;
|
|
|
|
height = ninePatch->scaleHeight;
|
2019-11-06 17:24:51 +03:00
|
|
|
rdtk_image_copy_alpha_blend(pDstData, nDstStep, nXDst + x, nYDst + y, width, height, pSrcData,
|
|
|
|
nSrcStep, nXSrc, nYSrc);
|
2014-10-01 03:40:16 +04:00
|
|
|
x += width;
|
|
|
|
/* middle (scalable) */
|
|
|
|
nXSrc = ninePatch->scaleLeft;
|
|
|
|
nYSrc = ninePatch->scaleTop;
|
|
|
|
height = ninePatch->scaleHeight;
|
|
|
|
|
|
|
|
while (x < (nXSrc + scaleWidth))
|
|
|
|
{
|
|
|
|
width = (nXSrc + scaleWidth) - x;
|
|
|
|
|
|
|
|
if (width > ninePatch->scaleWidth)
|
|
|
|
width = ninePatch->scaleWidth;
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
rdtk_image_copy_alpha_blend(pDstData, nDstStep, nXDst + x, nYDst + y, width, height,
|
|
|
|
pSrcData, nSrcStep, nXSrc, nYSrc);
|
2014-10-01 03:40:16 +04:00
|
|
|
x += width;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* middle right */
|
|
|
|
nXSrc = ninePatch->scaleRight;
|
|
|
|
nYSrc = ninePatch->scaleTop;
|
|
|
|
width = ninePatch->width - ninePatch->scaleRight;
|
|
|
|
height = ninePatch->scaleHeight;
|
2019-11-06 17:24:51 +03:00
|
|
|
rdtk_image_copy_alpha_blend(pDstData, nDstStep, nXDst + x, nYDst + y, width, height, pSrcData,
|
|
|
|
nSrcStep, nXSrc, nYSrc);
|
2014-10-01 03:40:16 +04:00
|
|
|
/* bottom */
|
|
|
|
x = 0;
|
|
|
|
y = ninePatch->scaleBottom;
|
|
|
|
/* bottom left */
|
|
|
|
nXSrc = 0;
|
|
|
|
nYSrc = ninePatch->scaleBottom;
|
|
|
|
width = ninePatch->scaleLeft;
|
|
|
|
height = ninePatch->height - ninePatch->scaleBottom;
|
2019-11-06 17:24:51 +03:00
|
|
|
rdtk_image_copy_alpha_blend(pDstData, nDstStep, nXDst + x, nYDst + y, width, height, pSrcData,
|
|
|
|
nSrcStep, nXSrc, nYSrc);
|
2014-10-01 03:40:16 +04:00
|
|
|
x += width;
|
|
|
|
/* bottom middle (scalable) */
|
|
|
|
nXSrc = ninePatch->scaleLeft;
|
|
|
|
nYSrc = ninePatch->scaleBottom;
|
|
|
|
height = ninePatch->height - ninePatch->scaleBottom;
|
|
|
|
|
|
|
|
while (x < (nXSrc + scaleWidth))
|
|
|
|
{
|
|
|
|
width = (nXSrc + scaleWidth) - x;
|
|
|
|
|
|
|
|
if (width > ninePatch->scaleWidth)
|
|
|
|
width = ninePatch->scaleWidth;
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
rdtk_image_copy_alpha_blend(pDstData, nDstStep, nXDst + x, nYDst + y, width, height,
|
|
|
|
pSrcData, nSrcStep, nXSrc, nYSrc);
|
2014-10-01 03:40:16 +04:00
|
|
|
x += width;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* bottom right */
|
|
|
|
nXSrc = ninePatch->scaleRight;
|
|
|
|
nYSrc = ninePatch->scaleBottom;
|
|
|
|
width = ninePatch->width - ninePatch->scaleRight;
|
|
|
|
height = ninePatch->height - ninePatch->scaleBottom;
|
2019-11-06 17:24:51 +03:00
|
|
|
rdtk_image_copy_alpha_blend(pDstData, nDstStep, nXDst + x, nYDst + y, width, height, pSrcData,
|
|
|
|
nSrcStep, nXSrc, nYSrc);
|
2014-10-01 03:40:16 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2023-07-31 16:18:58 +03:00
|
|
|
static BOOL rdtk_nine_patch_get_scale_lr(rdtkNinePatch* ninePatch, wImage* image)
|
2014-10-01 03:40:16 +04:00
|
|
|
{
|
2023-07-31 15:48:53 +03:00
|
|
|
WINPR_ASSERT(image);
|
2023-07-31 16:18:58 +03:00
|
|
|
WINPR_ASSERT(ninePatch);
|
2023-07-31 15:48:53 +03:00
|
|
|
|
2023-07-31 16:18:58 +03:00
|
|
|
WINPR_ASSERT(image->data);
|
|
|
|
WINPR_ASSERT(image->width > 0);
|
2014-10-01 03:40:16 +04:00
|
|
|
|
2023-07-31 16:18:58 +03:00
|
|
|
int64_t beg = -1;
|
|
|
|
int64_t end = -1;
|
|
|
|
|
|
|
|
for (uint32_t x = 1; x < image->width - 1; x++)
|
2014-10-01 03:40:16 +04:00
|
|
|
{
|
2023-07-31 16:18:58 +03:00
|
|
|
const uint32_t* pixel = (const uint32_t*)&image->data[sizeof(uint32_t) * x]; /* (1, 0) */
|
2014-10-01 03:40:16 +04:00
|
|
|
if (beg < 0)
|
|
|
|
{
|
|
|
|
if (*pixel)
|
|
|
|
beg = x;
|
|
|
|
}
|
|
|
|
else if (end < 0)
|
|
|
|
{
|
|
|
|
if (!(*pixel))
|
|
|
|
{
|
|
|
|
end = x;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-31 16:18:58 +03:00
|
|
|
if ((beg <= 0) || (end <= 0))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
WINPR_ASSERT(beg <= INT32_MAX);
|
|
|
|
WINPR_ASSERT(end <= INT32_MAX);
|
|
|
|
ninePatch->scaleLeft = (int32_t)beg - 1;
|
|
|
|
ninePatch->scaleRight = (int32_t)end - 1;
|
2014-10-01 03:40:16 +04:00
|
|
|
ninePatch->scaleWidth = ninePatch->scaleRight - ninePatch->scaleLeft;
|
|
|
|
|
2023-07-31 16:18:58 +03:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL rdtk_nine_patch_get_scale_ht(rdtkNinePatch* ninePatch, wImage* image)
|
|
|
|
{
|
|
|
|
WINPR_ASSERT(image);
|
|
|
|
WINPR_ASSERT(ninePatch);
|
|
|
|
|
|
|
|
WINPR_ASSERT(image->data);
|
|
|
|
WINPR_ASSERT(image->height > 0);
|
|
|
|
WINPR_ASSERT(image->scanline > 0);
|
|
|
|
|
|
|
|
int64_t beg = -1;
|
|
|
|
int64_t end = -1;
|
|
|
|
|
|
|
|
for (uint32_t y = 1; y < image->height - 1; y++)
|
2014-10-01 03:40:16 +04:00
|
|
|
{
|
2024-08-26 17:33:59 +03:00
|
|
|
const uint32_t* pixel =
|
|
|
|
(const uint32_t*)&image->data[1ULL * image->scanline * y]; /* (1, 0) */
|
2014-10-01 03:40:16 +04:00
|
|
|
if (beg < 0)
|
|
|
|
{
|
|
|
|
if (*pixel)
|
|
|
|
beg = y;
|
|
|
|
}
|
|
|
|
else if (end < 0)
|
|
|
|
{
|
|
|
|
if (!(*pixel))
|
|
|
|
{
|
|
|
|
end = y;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-31 16:18:58 +03:00
|
|
|
if ((beg <= 0) || (end <= 0))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
WINPR_ASSERT(beg <= INT32_MAX);
|
|
|
|
WINPR_ASSERT(end <= INT32_MAX);
|
|
|
|
ninePatch->scaleTop = (int32_t)beg - 1;
|
|
|
|
ninePatch->scaleBottom = (int32_t)end - 1;
|
2014-10-01 03:40:16 +04:00
|
|
|
ninePatch->scaleHeight = ninePatch->scaleBottom - ninePatch->scaleTop;
|
|
|
|
|
2023-07-31 16:18:58 +03:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL rdtk_nine_patch_get_fill_lr(rdtkNinePatch* ninePatch, wImage* image)
|
|
|
|
{
|
|
|
|
WINPR_ASSERT(image);
|
|
|
|
WINPR_ASSERT(ninePatch);
|
|
|
|
|
|
|
|
WINPR_ASSERT(image->data);
|
|
|
|
WINPR_ASSERT(image->width > 0);
|
|
|
|
WINPR_ASSERT(image->height > 0);
|
|
|
|
WINPR_ASSERT(image->scanline > 0);
|
|
|
|
|
|
|
|
int64_t beg = -1;
|
|
|
|
int64_t end = -1;
|
|
|
|
|
|
|
|
for (uint32_t x = 1; x < image->width - 1; x++)
|
2014-10-01 03:40:16 +04:00
|
|
|
{
|
2024-08-26 17:33:59 +03:00
|
|
|
const uint32_t* pixel =
|
|
|
|
(uint32_t*)&image->data[((1ULL * image->height - 1ULL) * image->scanline) +
|
|
|
|
x * sizeof(uint32_t)]; /* (1, height - 1) */
|
2014-10-01 03:40:16 +04:00
|
|
|
if (beg < 0)
|
|
|
|
{
|
|
|
|
if (*pixel)
|
|
|
|
beg = x;
|
|
|
|
}
|
|
|
|
else if (end < 0)
|
|
|
|
{
|
|
|
|
if (!(*pixel))
|
|
|
|
{
|
|
|
|
end = x;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-31 16:18:58 +03:00
|
|
|
if ((beg <= 0) || (end <= 0))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
WINPR_ASSERT(beg <= INT32_MAX);
|
|
|
|
WINPR_ASSERT(end <= INT32_MAX);
|
|
|
|
|
|
|
|
ninePatch->fillLeft = (int32_t)beg - 1;
|
|
|
|
ninePatch->fillRight = (int32_t)end - 1;
|
2014-10-01 03:40:16 +04:00
|
|
|
ninePatch->fillWidth = ninePatch->fillRight - ninePatch->fillLeft;
|
|
|
|
|
2023-07-31 16:18:58 +03:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL rdtk_nine_patch_get_fill_ht(rdtkNinePatch* ninePatch, wImage* image)
|
|
|
|
{
|
|
|
|
WINPR_ASSERT(image);
|
|
|
|
WINPR_ASSERT(ninePatch);
|
|
|
|
|
|
|
|
WINPR_ASSERT(image->data);
|
|
|
|
WINPR_ASSERT(image->width > 0);
|
|
|
|
WINPR_ASSERT(image->height > 0);
|
|
|
|
WINPR_ASSERT(image->scanline > 0);
|
|
|
|
|
|
|
|
int64_t beg = -1;
|
|
|
|
int64_t end = -1;
|
|
|
|
|
|
|
|
for (uint32_t y = 1; y < image->height - 1; y++)
|
2014-10-01 03:40:16 +04:00
|
|
|
{
|
2023-08-04 15:29:59 +03:00
|
|
|
const uint32_t* pixel =
|
|
|
|
(uint32_t*)&image->data[((image->width - 1) * sizeof(uint32_t)) +
|
2023-08-22 10:41:28 +03:00
|
|
|
1ull * image->scanline * y]; /* (width - 1, 1) */
|
2014-10-01 03:40:16 +04:00
|
|
|
if (beg < 0)
|
|
|
|
{
|
|
|
|
if (*pixel)
|
|
|
|
beg = y;
|
|
|
|
}
|
|
|
|
else if (end < 0)
|
|
|
|
{
|
|
|
|
if (!(*pixel))
|
|
|
|
{
|
|
|
|
end = y;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-31 16:18:58 +03:00
|
|
|
if ((beg <= 0) || (end <= 0))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
WINPR_ASSERT(beg <= INT32_MAX);
|
|
|
|
WINPR_ASSERT(end <= INT32_MAX);
|
|
|
|
ninePatch->scaleTop = (int32_t)beg - 1;
|
|
|
|
ninePatch->scaleBottom = (int32_t)end - 1;
|
|
|
|
ninePatch->scaleHeight = ninePatch->scaleBottom - ninePatch->scaleTop;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
int rdtk_nine_patch_set_image(rdtkNinePatch* ninePatch, wImage* image)
|
|
|
|
{
|
|
|
|
WINPR_ASSERT(image);
|
|
|
|
WINPR_ASSERT(ninePatch);
|
|
|
|
|
|
|
|
ninePatch->image = image;
|
|
|
|
|
|
|
|
/* parse scalable area */
|
|
|
|
if (!rdtk_nine_patch_get_scale_lr(ninePatch, image))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (!rdtk_nine_patch_get_scale_ht(ninePatch, image))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* parse fillable area */
|
|
|
|
if (!rdtk_nine_patch_get_fill_lr(ninePatch, image))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (!rdtk_nine_patch_get_fill_ht(ninePatch, image))
|
|
|
|
return -1;
|
|
|
|
|
2014-10-01 03:40:16 +04:00
|
|
|
/* cut out borders from image */
|
2023-07-31 16:18:58 +03:00
|
|
|
WINPR_ASSERT(image->width >= 2);
|
|
|
|
WINPR_ASSERT(image->height >= 2);
|
|
|
|
WINPR_ASSERT(image->scanline > 0);
|
|
|
|
WINPR_ASSERT(image->width <= INT32_MAX);
|
|
|
|
WINPR_ASSERT(image->height <= INT32_MAX);
|
|
|
|
WINPR_ASSERT(image->scanline <= INT32_MAX);
|
|
|
|
WINPR_ASSERT(image->data);
|
|
|
|
|
|
|
|
ninePatch->width = (int32_t)image->width - 2;
|
|
|
|
ninePatch->height = (int32_t)image->height - 2;
|
|
|
|
ninePatch->data = &image->data[image->scanline + 4]; /* (1, 1) */
|
|
|
|
ninePatch->scanline = (int32_t)image->scanline;
|
|
|
|
|
2014-10-01 03:40:16 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-09-30 22:54:36 +04:00
|
|
|
rdtkNinePatch* rdtk_nine_patch_new(rdtkEngine* engine)
|
|
|
|
{
|
2023-07-31 15:48:53 +03:00
|
|
|
WINPR_ASSERT(engine);
|
|
|
|
rdtkNinePatch* ninePatch = (rdtkNinePatch*)calloc(1, sizeof(rdtkNinePatch));
|
2014-09-30 22:54:36 +04:00
|
|
|
|
|
|
|
if (!ninePatch)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
ninePatch->engine = engine;
|
|
|
|
return ninePatch;
|
|
|
|
}
|
|
|
|
|
|
|
|
void rdtk_nine_patch_free(rdtkNinePatch* ninePatch)
|
|
|
|
{
|
|
|
|
if (!ninePatch)
|
|
|
|
return;
|
|
|
|
|
|
|
|
winpr_image_free(ninePatch->image, TRUE);
|
|
|
|
free(ninePatch);
|
|
|
|
}
|
|
|
|
|
|
|
|
int rdtk_nine_patch_engine_init(rdtkEngine* engine)
|
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
int status = 0;
|
2016-03-30 03:34:52 +03:00
|
|
|
wImage* image = NULL;
|
2024-01-23 18:49:54 +03:00
|
|
|
rdtkNinePatch* ninePatch = NULL;
|
2014-09-30 22:54:36 +04:00
|
|
|
|
2023-07-31 15:48:53 +03:00
|
|
|
WINPR_ASSERT(engine);
|
|
|
|
|
2014-09-30 22:54:36 +04:00
|
|
|
if (!engine->button9patch)
|
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
SSIZE_T size = 0;
|
|
|
|
const uint8_t* data = NULL;
|
2014-09-30 22:54:36 +04:00
|
|
|
status = -1;
|
2023-07-31 12:46:21 +03:00
|
|
|
size = rdtk_get_embedded_resource_file("btn_default_normal.9." FILE_EXT, &data);
|
2014-09-30 22:54:36 +04:00
|
|
|
|
|
|
|
if (size > 0)
|
|
|
|
{
|
|
|
|
image = winpr_image_new();
|
|
|
|
|
|
|
|
if (image)
|
2021-06-18 11:01:52 +03:00
|
|
|
status = winpr_image_read_buffer(image, data, (size_t)size);
|
2014-09-30 22:54:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (status > 0)
|
|
|
|
{
|
|
|
|
ninePatch = engine->button9patch = rdtk_nine_patch_new(engine);
|
|
|
|
|
|
|
|
if (ninePatch)
|
2014-10-01 03:40:16 +04:00
|
|
|
rdtk_nine_patch_set_image(ninePatch, image);
|
2018-08-20 10:10:49 +03:00
|
|
|
else
|
|
|
|
winpr_image_free(image, TRUE);
|
2014-09-30 22:54:36 +04:00
|
|
|
}
|
2021-04-27 11:04:47 +03:00
|
|
|
else
|
|
|
|
winpr_image_free(image, TRUE);
|
2014-09-30 22:54:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!engine->textField9patch)
|
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
SSIZE_T size = 0;
|
|
|
|
const uint8_t* data = NULL;
|
2014-09-30 22:54:36 +04:00
|
|
|
status = -1;
|
2023-07-31 12:46:21 +03:00
|
|
|
size = rdtk_get_embedded_resource_file("textfield_default.9." FILE_EXT, &data);
|
2021-04-27 11:04:47 +03:00
|
|
|
image = NULL;
|
2014-09-30 22:54:36 +04:00
|
|
|
|
|
|
|
if (size > 0)
|
|
|
|
{
|
|
|
|
image = winpr_image_new();
|
|
|
|
|
|
|
|
if (image)
|
2021-06-18 11:01:52 +03:00
|
|
|
status = winpr_image_read_buffer(image, data, (size_t)size);
|
2014-09-30 22:54:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (status > 0)
|
|
|
|
{
|
|
|
|
ninePatch = engine->textField9patch = rdtk_nine_patch_new(engine);
|
|
|
|
|
|
|
|
if (ninePatch)
|
2014-10-01 03:40:16 +04:00
|
|
|
rdtk_nine_patch_set_image(ninePatch, image);
|
2018-08-20 10:10:49 +03:00
|
|
|
else
|
|
|
|
winpr_image_free(image, TRUE);
|
2014-09-30 22:54:36 +04:00
|
|
|
}
|
2021-04-27 11:04:47 +03:00
|
|
|
else
|
|
|
|
winpr_image_free(image, TRUE);
|
2014-09-30 22:54:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2014-10-01 20:18:17 +04:00
|
|
|
|
|
|
|
int rdtk_nine_patch_engine_uninit(rdtkEngine* engine)
|
|
|
|
{
|
2023-07-31 15:48:53 +03:00
|
|
|
WINPR_ASSERT(engine);
|
2014-10-01 20:18:17 +04:00
|
|
|
if (engine->button9patch)
|
|
|
|
{
|
|
|
|
rdtk_nine_patch_free(engine->button9patch);
|
|
|
|
engine->button9patch = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (engine->textField9patch)
|
|
|
|
{
|
|
|
|
rdtk_nine_patch_free(engine->textField9patch);
|
|
|
|
engine->textField9patch = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|