2023-05-27 16:59:23 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2023 Seungha Yang <seungha@centricular.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include "gstdwrite-enums.h"
|
|
|
|
|
|
|
|
enum GST_DWRITE_BRUSH_TARGET
|
|
|
|
{
|
2023-07-25 10:57:27 +00:00
|
|
|
GST_DWRITE_BRUSH_FORGROUND = 0,
|
|
|
|
GST_DWRITE_BRUSH_OUTLINE,
|
2023-05-27 16:59:23 +00:00
|
|
|
GST_DWRITE_BRUSH_UNDERLINE,
|
|
|
|
GST_DWRITE_BRUSH_STRIKETHROUGH,
|
|
|
|
GST_DWRITE_BRUSH_SHADOW,
|
2023-08-01 15:54:34 +00:00
|
|
|
GST_DWRITE_BRUSH_BACKGROUND,
|
|
|
|
GST_DWRITE_BRUSH_LAST
|
2023-05-27 16:59:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
DEFINE_GUID (IID_IGstDWriteTextEffect, 0x23c579ae, 0x2e18,
|
|
|
|
0x11ed, 0xa2, 0x61, 0x02, 0x42, 0xac, 0x12, 0x00, 0x02);
|
|
|
|
class IGstDWriteTextEffect : public IUnknown
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static STDMETHODIMP CreateInstance (IGstDWriteTextEffect ** effect);
|
|
|
|
static STDMETHODIMP_ (BOOL) IsEnabledColor (const D2D1_COLOR_F & color);
|
|
|
|
|
|
|
|
/* IUnknown */
|
|
|
|
STDMETHODIMP_ (ULONG) AddRef (void);
|
|
|
|
STDMETHODIMP_ (ULONG) Release (void);
|
|
|
|
STDMETHODIMP QueryInterface (REFIID riid,
|
|
|
|
void ** object);
|
|
|
|
|
|
|
|
/* effect methods */
|
|
|
|
STDMETHODIMP Clone (IGstDWriteTextEffect ** effect);
|
|
|
|
STDMETHODIMP GetBrushColor (GST_DWRITE_BRUSH_TARGET target,
|
|
|
|
D2D1_COLOR_F * color,
|
|
|
|
BOOL * enabled);
|
|
|
|
STDMETHODIMP SetBrushColor (GST_DWRITE_BRUSH_TARGET target,
|
|
|
|
const D2D1_COLOR_F * color);
|
|
|
|
|
2023-08-01 15:54:34 +00:00
|
|
|
STDMETHODIMP SetEnableColorFont (BOOL enable);
|
|
|
|
|
|
|
|
STDMETHODIMP GetEnableColorFont (BOOL * enable);
|
|
|
|
|
2023-05-27 16:59:23 +00:00
|
|
|
private:
|
|
|
|
IGstDWriteTextEffect (void);
|
|
|
|
virtual ~IGstDWriteTextEffect (void);
|
|
|
|
|
|
|
|
private:
|
|
|
|
ULONG ref_count_ = 1;
|
2023-08-01 15:54:34 +00:00
|
|
|
D2D1_COLOR_F brush_[GST_DWRITE_BRUSH_LAST];
|
|
|
|
BOOL enable_color_font_ = FALSE;
|
2023-05-27 16:59:23 +00:00
|
|
|
};
|