Files
test/source/blender/makesrna/intern/rna_palette.cc
Campbell Barton e955c94ed3 License Headers: Set copyright to "Blender Authors", add AUTHORS
Listing the "Blender Foundation" as copyright holder implied the Blender
Foundation holds copyright to files which may include work from many
developers.

While keeping copyright on headers makes sense for isolated libraries,
Blender's own code may be refactored or moved between files in a way
that makes the per file copyright holders less meaningful.

Copyright references to the "Blender Foundation" have been replaced with
"Blender Authors", with the exception of `./extern/` since these this
contains libraries which are more isolated, any changed to license
headers there can be handled on a case-by-case basis.

Some directories in `./intern/` have also been excluded:

- `./intern/cycles/` it's own `AUTHORS` file is planned.
- `./intern/opensubdiv/`.

An "AUTHORS" file has been added, using the chromium projects authors
file as a template.

Design task: #110784

Ref !110783.
2023-08-16 00:20:26 +10:00

186 lines
5.4 KiB
C++

/* SPDX-FileCopyrightText: 2023 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup RNA
*/
#include <cstdlib>
#include "BLI_utildefines.h"
#include "RNA_access.hh"
#include "RNA_define.hh"
#include "rna_internal.h"
#include "WM_types.hh"
#ifdef RNA_RUNTIME
# include "DNA_brush_types.h"
# include "BKE_paint.hh"
# include "BKE_report.h"
static PaletteColor *rna_Palette_color_new(Palette *palette)
{
if (ID_IS_LINKED(palette) || ID_IS_OVERRIDE_LIBRARY(palette)) {
return nullptr;
}
PaletteColor *color = BKE_palette_color_add(palette);
return color;
}
static void rna_Palette_color_remove(Palette *palette, ReportList *reports, PointerRNA *color_ptr)
{
if (ID_IS_LINKED(palette) || ID_IS_OVERRIDE_LIBRARY(palette)) {
return;
}
PaletteColor *color = static_cast<PaletteColor *>(color_ptr->data);
if (BLI_findindex(&palette->colors, color) == -1) {
BKE_reportf(
reports, RPT_ERROR, "Palette '%s' does not contain color given", palette->id.name + 2);
return;
}
BKE_palette_color_remove(palette, color);
RNA_POINTER_INVALIDATE(color_ptr);
}
static void rna_Palette_color_clear(Palette *palette)
{
if (ID_IS_LINKED(palette) || ID_IS_OVERRIDE_LIBRARY(palette)) {
return;
}
BKE_palette_clear(palette);
}
static PointerRNA rna_Palette_active_color_get(PointerRNA *ptr)
{
Palette *palette = static_cast<Palette *>(ptr->data);
PaletteColor *color;
color = static_cast<PaletteColor *>(BLI_findlink(&palette->colors, palette->active_color));
if (color) {
return rna_pointer_inherit_refine(ptr, &RNA_PaletteColor, color);
}
return rna_pointer_inherit_refine(ptr, nullptr, nullptr);
}
static void rna_Palette_active_color_set(PointerRNA *ptr,
PointerRNA value,
ReportList * /*reports*/)
{
Palette *palette = static_cast<Palette *>(ptr->data);
PaletteColor *color = static_cast<PaletteColor *>(value.data);
/* -1 is ok for an unset index */
if (color == nullptr) {
palette->active_color = -1;
}
else {
palette->active_color = BLI_findindex(&palette->colors, color);
}
}
#else
/* palette.colors */
static void rna_def_palettecolors(BlenderRNA *brna, PropertyRNA *cprop)
{
StructRNA *srna;
PropertyRNA *prop;
FunctionRNA *func;
PropertyRNA *parm;
RNA_def_property_srna(cprop, "PaletteColors");
srna = RNA_def_struct(brna, "PaletteColors", nullptr);
RNA_def_struct_sdna(srna, "Palette");
RNA_def_struct_ui_text(srna, "Palette Splines", "Collection of palette colors");
func = RNA_def_function(srna, "new", "rna_Palette_color_new");
RNA_def_function_ui_description(func, "Add a new color to the palette");
parm = RNA_def_pointer(func, "color", "PaletteColor", "", "The newly created color");
RNA_def_function_return(func, parm);
func = RNA_def_function(srna, "remove", "rna_Palette_color_remove");
RNA_def_function_ui_description(func, "Remove a color from the palette");
RNA_def_function_flag(func, FUNC_USE_REPORTS);
parm = RNA_def_pointer(func, "color", "PaletteColor", "", "The color to remove");
RNA_def_parameter_flags(parm, PROP_NEVER_NULL, PARM_REQUIRED | PARM_RNAPTR);
RNA_def_parameter_clear_flags(parm, PROP_THICK_WRAP, ParameterFlag(0));
func = RNA_def_function(srna, "clear", "rna_Palette_color_clear");
RNA_def_function_ui_description(func, "Remove all colors from the palette");
prop = RNA_def_property(srna, "active", PROP_POINTER, PROP_NONE);
RNA_def_property_struct_type(prop, "PaletteColor");
RNA_def_property_pointer_funcs(
prop, "rna_Palette_active_color_get", "rna_Palette_active_color_set", nullptr, nullptr);
RNA_def_property_flag(prop, PROP_EDITABLE);
RNA_def_property_ui_text(prop, "Active Palette Color", "");
}
static void rna_def_palettecolor(BlenderRNA *brna)
{
StructRNA *srna;
PropertyRNA *prop;
srna = RNA_def_struct(brna, "PaletteColor", nullptr);
RNA_def_struct_ui_text(srna, "Palette Color", "");
prop = RNA_def_property(srna, "color", PROP_FLOAT, PROP_COLOR_GAMMA);
RNA_def_property_range(prop, 0.0, 1.0);
RNA_def_property_float_sdna(prop, nullptr, "rgb");
RNA_def_property_flag(prop, PROP_LIB_EXCEPTION);
RNA_def_property_array(prop, 3);
RNA_def_property_ui_text(prop, "Color", "");
RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, nullptr);
prop = RNA_def_property(srna, "strength", PROP_FLOAT, PROP_NONE);
RNA_def_property_range(prop, 0.0, 1.0);
RNA_def_property_float_sdna(prop, nullptr, "value");
RNA_def_property_ui_text(prop, "Value", "");
RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, nullptr);
prop = RNA_def_property(srna, "weight", PROP_FLOAT, PROP_NONE);
RNA_def_property_range(prop, 0.0, 1.0);
RNA_def_property_float_sdna(prop, nullptr, "value");
RNA_def_property_ui_text(prop, "Weight", "");
RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, nullptr);
}
static void rna_def_palette(BlenderRNA *brna)
{
StructRNA *srna;
PropertyRNA *prop;
srna = RNA_def_struct(brna, "Palette", "ID");
RNA_def_struct_ui_text(srna, "Palette", "");
RNA_def_struct_ui_icon(srna, ICON_COLOR);
prop = RNA_def_property(srna, "colors", PROP_COLLECTION, PROP_NONE);
RNA_def_property_struct_type(prop, "PaletteColor");
rna_def_palettecolors(brna, prop);
}
void RNA_def_palette(BlenderRNA *brna)
{
/* *** Non-Animated *** */
RNA_define_animate_sdna(false);
rna_def_palettecolor(brna);
rna_def_palette(brna);
RNA_define_animate_sdna(true);
}
#endif