Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2021-03-15 14:19:48 +0300
committerJacques Lucke <jacques@blender.org>2021-03-15 14:23:03 +0300
commit5ad4713cd8ed2943d96a020ba63ed4d611d14007 (patch)
tree7ef0da55a2c97f33422547608402795ae6df1212 /source/blender/editors/space_spreadsheet/CMakeLists.txt
parent4ed208bcd82e912fa9a0da6137af6e87004e9365 (diff)
Spreadsheet: improve separation of drawing and data generation
This is a refactor and no functional changes are expected. The goal is to make it simpler to add other data sources without having to repeat the drawing code everywhere. Also, having the `CellValue` class allows us to implement filtering and sorting in a more generic way.
Diffstat (limited to 'source/blender/editors/space_spreadsheet/CMakeLists.txt')
-rw-r--r--source/blender/editors/space_spreadsheet/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/space_spreadsheet/CMakeLists.txt b/source/blender/editors/space_spreadsheet/CMakeLists.txt
index e270ce9676c..a77e74ffd93 100644
--- a/source/blender/editors/space_spreadsheet/CMakeLists.txt
+++ b/source/blender/editors/space_spreadsheet/CMakeLists.txt
@@ -33,11 +33,13 @@ set(INC
set(SRC
space_spreadsheet.cc
+ spreadsheet_column_layout.cc
spreadsheet_draw.cc
spreadsheet_from_geometry.cc
spreadsheet_ops.cc
spreadsheet_draw.hh
+ spreadsheet_column_layout.hh
spreadsheet_from_geometry.hh
spreadsheet_intern.hh
)