Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_spreadsheet/spreadsheet_context.hh
- This file was copied from source/blender/editors/space_spreadsheet/spreadsheet_from_geometry.hh.
| Show All 10 Lines | |||||
| * | * | ||||
| * You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU General Public License | ||||
| * along with this program; if not, write to the Free Software Foundation, | * along with this program; if not, write to the Free Software Foundation, | ||||
| * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||||
| */ | */ | ||||
| #pragma once | #pragma once | ||||
| #include "BKE_geometry_set.hh" | #include "DNA_space_types.h" | ||||
| #include "BLI_resource_scope.hh" | |||||
| #include "spreadsheet_column_layout.hh" | |||||
| struct bContext; | |||||
| namespace blender::ed::spreadsheet { | namespace blender::ed::spreadsheet { | ||||
| void spreadsheet_columns_from_geometry(const bContext *C, | SpreadsheetContext *spreadsheet_context_new(eSpaceSpreadsheet_ContextType type); | ||||
| Object *object_eval, | SpreadsheetContext *spreadsheet_context_copy(const SpreadsheetContext *old_context); | ||||
| SpreadsheetColumnLayout &column_layout, | void spreadsheet_context_free(SpreadsheetContext *context); | ||||
| ResourceScope &scope); | |||||
| } // namespace blender::ed::spreadsheet | } // namespace blender::ed::spreadsheet | ||||