2022-02-11 09:07:11 +11:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2021-04-15 08:57:10 +02:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
struct ID;
|
2021-07-05 10:46:00 +02:00
|
|
|
struct Main;
|
|
|
|
|
struct Object;
|
2021-07-16 11:48:54 +10:00
|
|
|
struct SpaceNode;
|
|
|
|
|
struct SpaceSpreadsheet;
|
|
|
|
|
struct SpreadsheetContext;
|
|
|
|
|
struct bContext;
|
|
|
|
|
struct bNode;
|
2021-04-15 08:57:10 +02:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
struct SpreadsheetContext *ED_spreadsheet_context_new(int type);
|
|
|
|
|
void ED_spreadsheet_context_free(struct SpreadsheetContext *context);
|
|
|
|
|
void ED_spreadsheet_context_path_clear(struct SpaceSpreadsheet *sspreadsheet);
|
2021-07-05 10:46:00 +02:00
|
|
|
bool ED_spreadsheet_context_path_update_tag(struct SpaceSpreadsheet *sspreadsheet);
|
2021-06-25 07:57:24 +02:00
|
|
|
uint64_t ED_spreadsheet_context_path_hash(const struct SpaceSpreadsheet *sspreadsheet);
|
2021-04-15 08:57:10 +02:00
|
|
|
|
2021-06-25 07:57:24 +02:00
|
|
|
struct ID *ED_spreadsheet_get_current_id(const struct SpaceSpreadsheet *sspreadsheet);
|
2021-04-15 08:57:10 +02:00
|
|
|
|
2021-07-05 10:46:00 +02:00
|
|
|
void ED_spreadsheet_context_path_set_geometry_node(struct SpaceSpreadsheet *sspreadsheet,
|
|
|
|
|
struct SpaceNode *snode,
|
|
|
|
|
struct bNode *node);
|
|
|
|
|
void ED_spreadsheet_context_paths_set_geometry_node(struct Main *bmain,
|
|
|
|
|
struct SpaceNode *snode,
|
|
|
|
|
struct bNode *node);
|
|
|
|
|
void ED_spreadsheet_context_path_set_evaluated_object(struct SpaceSpreadsheet *sspreadsheet,
|
|
|
|
|
struct Object *object);
|
|
|
|
|
|
|
|
|
|
void ED_spreadsheet_context_path_guess(const struct bContext *C,
|
|
|
|
|
struct SpaceSpreadsheet *sspreadsheet);
|
|
|
|
|
bool ED_spreadsheet_context_path_is_active(const struct bContext *C,
|
|
|
|
|
struct SpaceSpreadsheet *sspreadsheet);
|
|
|
|
|
bool ED_spreadsheet_context_path_exists(struct Main *bmain, struct SpaceSpreadsheet *sspreadsheet);
|
2021-04-15 08:57:10 +02:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|