Differential D14367 Diff 49367 source/blender/editors/space_spreadsheet/spreadsheet_column_values.hh
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_spreadsheet/spreadsheet_column_values.hh
| /* SPDX-License-Identifier: GPL-2.0-or-later */ | /* SPDX-License-Identifier: GPL-2.0-or-later */ | ||||
| #pragma once | #pragma once | ||||
| #include "DNA_space_types.h" | #include "DNA_space_types.h" | ||||
| #include "BLI_string_ref.hh" | #include "BLI_string_ref.hh" | ||||
| #include "FN_generic_virtual_array.hh" | #include "FN_generic_virtual_array.hh" | ||||
| namespace blender::ed::spreadsheet { | namespace blender::ed::spreadsheet { | ||||
| struct CellDrawParams; | struct CellDrawParams; | ||||
| eSpreadsheetColumnValueType cpp_type_to_column_type(const fn::CPPType &type); | eSpreadsheetColumnValueType cpp_type_to_column_type(const CPPType &type); | ||||
| /** | /** | ||||
| * This represents a column in a spreadsheet. It has a name and provides a value for all the cells | * This represents a column in a spreadsheet. It has a name and provides a value for all the cells | ||||
| * in the column. | * in the column. | ||||
| */ | */ | ||||
| class ColumnValues final { | class ColumnValues final { | ||||
| protected: | protected: | ||||
| std::string name_; | std::string name_; | ||||
| Show All 37 Lines | |||||