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:
Diffstat (limited to 'release/scripts/startup/bl_ui/space_console.py')
-rw-r--r--release/scripts/startup/bl_ui/space_console.py94
1 files changed, 80 insertions, 14 deletions
diff --git a/release/scripts/startup/bl_ui/space_console.py b/release/scripts/startup/bl_ui/space_console.py
index 2e1d0fd2eba..2db1b06c902 100644
--- a/release/scripts/startup/bl_ui/space_console.py
+++ b/release/scripts/startup/bl_ui/space_console.py
@@ -31,8 +31,6 @@ class CONSOLE_HT_header(Header):
CONSOLE_MT_editor_menus.draw_collapsible(context, layout)
- layout.operator("console.autocomplete", text="Autocomplete")
-
class CONSOLE_MT_editor_menus(Menu):
bl_idname = "CONSOLE_MT_editor_menus"
@@ -40,28 +38,32 @@ class CONSOLE_MT_editor_menus(Menu):
def draw(self, _context):
layout = self.layout
+ layout.menu("CONSOLE_MT_view")
layout.menu("CONSOLE_MT_console")
-class CONSOLE_MT_console(Menu):
- bl_label = "Console"
+class CONSOLE_MT_view(Menu):
+ bl_label = "View"
def draw(self, _context):
layout = self.layout
- layout.operator("console.indent")
- layout.operator("console.unindent")
+ props = layout.operator("wm.context_cycle_int", text="Zoom In")
+ props.data_path = 'space_data.font_size'
+ props.reverse = False
+ props = layout.operator("wm.context_cycle_int", text="Zoom Out")
+ props.data_path = 'space_data.font_size'
+ props.reverse = True
layout.separator()
- layout.operator("console.clear")
- layout.operator("console.clear_line")
+ layout.operator("console.move", text="Move to Previous Word").type = 'PREVIOUS_WORD'
+ layout.operator("console.move", text="Move to Next Word").type = 'NEXT_WORD'
+ layout.operator("console.move", text="Move to Line Begin").type = 'LINE_BEGIN'
+ layout.operator("console.move", text="Move to Line End").type = 'LINE_END'
layout.separator()
- layout.operator("console.copy_as_script")
- layout.operator("console.copy")
- layout.operator("console.paste")
layout.menu("CONSOLE_MT_language")
layout.separator()
@@ -92,17 +94,81 @@ class CONSOLE_MT_language(Menu):
translate=False).language = language
+class CONSOLE_MT_console(Menu):
+ bl_label = "Console"
+
+ def draw(self, _context):
+ layout = self.layout
+
+ layout.operator("console.clear")
+ layout.operator("console.clear_line")
+ layout.operator("console.delete", text="Delete Previous Word").type = 'PREVIOUS_WORD'
+ layout.operator("console.delete", text="Delete Next Word").type = 'NEXT_WORD'
+
+ layout.separator()
+
+ layout.operator("console.copy_as_script", text="Copy as Script")
+ layout.operator("console.copy", text="Copy")
+ layout.operator("console.paste", text="Paste")
+
+ layout.separator()
+
+ layout.operator("console.indent")
+ layout.operator("console.unindent")
+
+ layout.separator()
+
+ layout.operator("console.history_cycle", text="Backward in History").reverse = True
+ layout.operator("console.history_cycle", text="Forward in History").reverse = False
+
+ layout.separator()
+
+ layout.operator("console.autocomplete", text="Autocomplete")
+
+class CONSOLE_MT_context_menu(Menu):
+ bl_label = "Console Context Menu"
+
+ def draw(self, context):
+ layout = self.layout
+
+ layout.operator("console.clear")
+ layout.operator("console.clear_line")
+ layout.operator("console.delete", text="Delete Previous Word").type = 'PREVIOUS_WORD'
+ layout.operator("console.delete", text="Delete Next Word").type = 'NEXT_WORD'
+
+ layout.separator()
+
+ layout.operator("console.copy_as_script", text="Copy as Script")
+ layout.operator("console.copy", text="Copy")
+ layout.operator("console.paste", text="Paste")
+
+ layout.separator()
+
+ layout.operator("console.indent")
+ layout.operator("console.unindent")
+
+ layout.separator()
+
+ layout.operator("console.history_cycle", text="Backward in History").reverse = True
+ layout.operator("console.history_cycle", text="Forward in History").reverse = False
+
+ layout.separator()
+
+ layout.operator("console.autocomplete", text="Autocomplete")
+
+
def add_scrollback(text, text_type):
for l in text.split("\n"):
- bpy.ops.console.scrollback_append(text=l.expandtabs(4),
- type=text_type)
+ bpy.ops.console.scrollback_append(text=l.expandtabs(4), type=text_type)
classes = (
CONSOLE_HT_header,
CONSOLE_MT_editor_menus,
- CONSOLE_MT_console,
+ CONSOLE_MT_view,
CONSOLE_MT_language,
+ CONSOLE_MT_console,
+ CONSOLE_MT_context_menu,
)
if __name__ == "__main__": # only for live edit.