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-08 18:23:21 +0300
committerJacques Lucke <jacques@blender.org>2021-03-08 18:25:08 +0300
commit9cb5f0a2282a7a84f7f8636b43a32bdc04b51cd5 (patch)
tree59e8cbfbc6035069507dc1085c425247af40772e /release
parentd230c9b96c516e718014fb50914fcada1a7ec98f (diff)
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.
Diffstat (limited to 'release')
-rw-r--r--release/datafiles/userdef/userdef_default_theme.c32
-rw-r--r--release/scripts/presets/interface_theme/Blender_Light.xml36
-rw-r--r--release/scripts/startup/bl_ui/__init__.py1
-rw-r--r--release/scripts/startup/bl_ui/space_spreadsheet.py39
4 files changed, 108 insertions, 0 deletions
diff --git a/release/datafiles/userdef/userdef_default_theme.c b/release/datafiles/userdef/userdef_default_theme.c
index 0477b0c9f23..5b34515d080 100644
--- a/release/datafiles/userdef/userdef_default_theme.c
+++ b/release/datafiles/userdef/userdef_default_theme.c
@@ -1009,6 +1009,38 @@ const bTheme U_theme_default = {
.facedot_size = 4,
.gp_vertex_size = 3,
},
+ .space_spreadsheet = {
+ .back = RGBA(0x28282800),
+ .title = RGBA(0xffffffff),
+ .text = RGBA(0xc3c3c3ff),
+ .text_hi = RGBA(0xffffffff),
+ .header = RGBA(0x454545ff),
+ .header_text = RGBA(0xeeeeeeff),
+ .header_text_hi = RGBA(0xffffffff),
+ .tab_active = RGBA(0x4b4b4bff),
+ .tab_inactive = RGBA(0x2b2b2bff),
+ .tab_back = RGBA(0x232323ff),
+ .tab_outline = RGBA(0x232323ff),
+ .button = RGBA(0x424242ff),
+ .button_title = RGBA(0xffffffff),
+ .button_text = RGBA(0xe5e5e5ff),
+ .button_text_hi = RGBA(0xffffffff),
+ .panelcolors = {
+ .header = RGBA(0x424242cc),
+ .back = RGBA(0x333333b3),
+ .sub_back = RGBA(0x0000003e),
+ },
+ .active = RGBA(0x3b5689ff),
+ .vertex_size = 3,
+ .outline_width = 1,
+ .facedot_size = 4,
+ .match = RGBA(0x337f334c),
+ .selected_highlight = RGBA(0x223a5bff),
+ .selected_object = RGBA(0xe96a00ff),
+ .active_object = RGBA(0xffaf29ff),
+ .edited_object = RGBA(0x00806266),
+ .row_alternate = RGBA(0xffffff07),
+ },
.tarm = {
{
.solid = RGBA(0x9a0000ff),
diff --git a/release/scripts/presets/interface_theme/Blender_Light.xml b/release/scripts/presets/interface_theme/Blender_Light.xml
index 77908bb6bbf..9da075ad949 100644
--- a/release/scripts/presets/interface_theme/Blender_Light.xml
+++ b/release/scripts/presets/interface_theme/Blender_Light.xml
@@ -1316,6 +1316,42 @@
</space>
</ThemeStatusBar>
</statusbar>
+ <spreadsheet>
+ <ThemeSpreadsheet
+ row_alternate="#ffffff0f"
+ >
+ <space>
+ <ThemeSpaceGeneric
+ back="#999999"
+ title="#000000"
+ text="#000000"
+ text_hi="#ffffff"
+ header="#adadadff"
+ header_text="#000000"
+ header_text_hi="#ffffff"
+ button="#999999e6"
+ button_title="#1a1a1a"
+ button_text="#000000"
+ button_text_hi="#ffffff"
+ navigation_bar="#00000000"
+ execution_buts="#999999e6"
+ tab_active="#6697e6"
+ tab_inactive="#cccccc"
+ tab_back="#999999ff"
+ tab_outline="#999999"
+ >
+ <panelcolors>
+ <ThemePanelColors
+ header="#42424200"
+ back="#00000028"
+ sub_back="#00000024"
+ >
+ </ThemePanelColors>
+ </panelcolors>
+ </ThemeSpaceGeneric>
+ </space>
+ </ThemeSpreadsheet>
+ </spreadsheet>
<bone_color_sets>
<ThemeBoneColorSet
normal="#9a0000"
diff --git a/release/scripts/startup/bl_ui/__init__.py b/release/scripts/startup/bl_ui/__init__.py
index 7d3ecceca41..b3131e64df7 100644
--- a/release/scripts/startup/bl_ui/__init__.py
+++ b/release/scripts/startup/bl_ui/__init__.py
@@ -86,6 +86,7 @@ _modules = [
"space_outliner",
"space_properties",
"space_sequencer",
+ "space_spreadsheet",
"space_statusbar",
"space_text",
"space_time",
diff --git a/release/scripts/startup/bl_ui/space_spreadsheet.py b/release/scripts/startup/bl_ui/space_spreadsheet.py
new file mode 100644
index 00000000000..e433ead070c
--- /dev/null
+++ b/release/scripts/startup/bl_ui/space_spreadsheet.py
@@ -0,0 +1,39 @@
+# ##### BEGIN GPL LICENSE BLOCK #####
+#
+# 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.
+#
+# ##### END GPL LICENSE BLOCK #####
+
+import bpy
+
+
+class SPREADSHEET_HT_header(bpy.types.Header):
+ bl_space_type = 'SPREADSHEET'
+
+ def draw(self, context):
+ layout = self.layout
+ space = context.space_data
+
+ layout.template_header()
+
+
+classes = (
+ SPREADSHEET_HT_header,
+)
+
+if __name__ == "__main__": # Only for live edit.
+ from bpy.utils import register_class
+ for cls in classes:
+ register_class(cls)