From 9cb5f0a2282a7a84f7f8636b43a32bdc04b51cd5 Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Mon, 8 Mar 2021 16:23:21 +0100 Subject: Spreadsheet: add boilerplate code for new editor type This adds the initial boilerplate code that is required to introduce the new spreadsheet editor. The editor is still hidden from the ui. It can be made visible by undoing the change in `rna_screen.c`. This patch does not contain any business logic for the spreadsheet editor. Differential Revision: https://developer.blender.org/D10645 Ref T86279. --- .../editors/space_spreadsheet/spreadsheet_intern.hh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 source/blender/editors/space_spreadsheet/spreadsheet_intern.hh (limited to 'source/blender/editors/space_spreadsheet/spreadsheet_intern.hh') diff --git a/source/blender/editors/space_spreadsheet/spreadsheet_intern.hh b/source/blender/editors/space_spreadsheet/spreadsheet_intern.hh new file mode 100644 index 00000000000..10a875e2c14 --- /dev/null +++ b/source/blender/editors/space_spreadsheet/spreadsheet_intern.hh @@ -0,0 +1,19 @@ +/* + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +#pragma once + +void spreadsheet_operatortypes(void); -- cgit v1.2.3