2009-12-07 21:51:44 +00:00
|
|
|
# ##### 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,
|
2010-02-12 13:34:04 +00:00
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2009-12-07 21:51:44 +00:00
|
|
|
#
|
|
|
|
# ##### END GPL LICENSE BLOCK #####
|
|
|
|
|
2009-12-13 14:38:30 +00:00
|
|
|
# <pep8 compliant>
|
|
|
|
|
2009-12-07 21:51:44 +00:00
|
|
|
import bpy
|
2011-07-13 14:41:12 +00:00
|
|
|
from blf import gettext as _
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2011-01-13 23:00:51 +00:00
|
|
|
|
2011-01-10 22:10:28 +00:00
|
|
|
#######################################
|
|
|
|
# DopeSheet Filtering
|
2011-01-01 07:20:34 +00:00
|
|
|
|
2010-09-13 00:53:47 +00:00
|
|
|
# used for DopeSheet, NLA, and Graph Editors
|
2011-02-01 22:21:43 +00:00
|
|
|
def dopesheet_filter(layout, context, genericFiltersOnly=False):
|
2010-08-27 01:23:53 +00:00
|
|
|
dopesheet = context.space_data.dopesheet
|
|
|
|
is_nla = context.area.type == 'NLA_EDITOR'
|
|
|
|
|
|
|
|
row = layout.row(align=True)
|
|
|
|
row.prop(dopesheet, "show_only_selected", text="")
|
|
|
|
row.prop(dopesheet, "show_hidden", text="")
|
2011-02-04 09:27:25 +00:00
|
|
|
|
2011-04-01 12:21:41 +00:00
|
|
|
if not genericFiltersOnly:
|
|
|
|
row = layout.row(align=True)
|
|
|
|
row.prop(dopesheet, "show_transforms", text="")
|
2010-08-27 01:23:53 +00:00
|
|
|
|
2011-04-01 12:21:41 +00:00
|
|
|
if is_nla:
|
|
|
|
row.prop(dopesheet, "show_missing_nla", text="")
|
2010-08-27 01:23:53 +00:00
|
|
|
|
|
|
|
row = layout.row(align=True)
|
2011-04-01 12:21:41 +00:00
|
|
|
row.prop(dopesheet, "show_scenes", text="")
|
|
|
|
row.prop(dopesheet, "show_worlds", text="")
|
|
|
|
row.prop(dopesheet, "show_nodes", text="")
|
|
|
|
|
|
|
|
if bpy.data.meshes:
|
|
|
|
row.prop(dopesheet, "show_meshes", text="")
|
|
|
|
if bpy.data.shape_keys:
|
|
|
|
row.prop(dopesheet, "show_shapekeys", text="")
|
|
|
|
if bpy.data.materials:
|
|
|
|
row.prop(dopesheet, "show_materials", text="")
|
|
|
|
if bpy.data.lamps:
|
|
|
|
row.prop(dopesheet, "show_lamps", text="")
|
|
|
|
if bpy.data.textures:
|
|
|
|
row.prop(dopesheet, "show_textures", text="")
|
|
|
|
if bpy.data.cameras:
|
|
|
|
row.prop(dopesheet, "show_cameras", text="")
|
|
|
|
if bpy.data.curves:
|
|
|
|
row.prop(dopesheet, "show_curves", text="")
|
|
|
|
if bpy.data.metaballs:
|
|
|
|
row.prop(dopesheet, "show_metaballs", text="")
|
|
|
|
if bpy.data.lattices:
|
|
|
|
row.prop(dopesheet, "show_lattices", text="")
|
|
|
|
if bpy.data.armatures:
|
|
|
|
row.prop(dopesheet, "show_armatures", text="")
|
|
|
|
if bpy.data.particles:
|
|
|
|
row.prop(dopesheet, "show_particles", text="")
|
|
|
|
|
|
|
|
if bpy.data.groups:
|
|
|
|
row = layout.row(align=True)
|
|
|
|
row.prop(dopesheet, "show_only_group_objects", text="")
|
|
|
|
if dopesheet.show_only_group_objects:
|
|
|
|
row.prop(dopesheet, "filter_group", text="")
|
2011-04-04 22:42:43 +00:00
|
|
|
|
2011-04-01 12:21:41 +00:00
|
|
|
if not is_nla:
|
|
|
|
row = layout.row(align=True)
|
|
|
|
row.prop(dopesheet, "show_only_matching_fcurves", text="")
|
|
|
|
if dopesheet.show_only_matching_fcurves:
|
|
|
|
row.prop(dopesheet, "filter_fcurve_name", text="")
|
2010-08-27 01:23:53 +00:00
|
|
|
|
2011-01-13 23:00:51 +00:00
|
|
|
|
2011-01-10 22:10:28 +00:00
|
|
|
#######################################
|
|
|
|
# DopeSheet Editor - General/Standard UI
|
2010-08-27 01:23:53 +00:00
|
|
|
|
2009-12-07 21:51:44 +00:00
|
|
|
class DOPESHEET_HT_header(bpy.types.Header):
|
2009-12-08 07:11:43 +00:00
|
|
|
bl_space_type = 'DOPESHEET_EDITOR'
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
st = context.space_data
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
row = layout.row(align=True)
|
|
|
|
row.template_header()
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
if context.area.show_menus:
|
|
|
|
sub = row.row(align=True)
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
sub.menu("DOPESHEET_MT_view")
|
|
|
|
sub.menu("DOPESHEET_MT_select")
|
2011-01-06 04:47:57 +00:00
|
|
|
sub.menu("DOPESHEET_MT_marker")
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
if st.mode == 'DOPESHEET' or (st.mode == 'ACTION' and st.action != None):
|
|
|
|
sub.menu("DOPESHEET_MT_channel")
|
|
|
|
elif st.mode == 'GPENCIL':
|
2011-01-10 22:10:28 +00:00
|
|
|
sub.menu("DOPESHEET_MT_gpencil_channel")
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
if st.mode != 'GPENCIL':
|
|
|
|
sub.menu("DOPESHEET_MT_key")
|
2011-01-10 22:10:28 +00:00
|
|
|
else:
|
|
|
|
sub.menu("DOPESHEET_MT_gpencil_frame")
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
layout.prop(st, "mode", text="")
|
2011-07-13 14:41:12 +00:00
|
|
|
layout.prop(st.dopesheet, "show_summary", text=_("Summary"))
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
if st.mode == 'DOPESHEET':
|
2010-08-27 01:23:53 +00:00
|
|
|
dopesheet_filter(layout, context)
|
2011-02-01 22:21:43 +00:00
|
|
|
elif st.mode == 'ACTION':
|
2011-02-04 09:27:25 +00:00
|
|
|
# 'genericFiltersOnly' limits the options to only the relevant 'generic' subset of
|
|
|
|
# filters which will work here and are useful (especially for character animation)
|
2011-02-01 22:21:43 +00:00
|
|
|
dopesheet_filter(layout, context, genericFiltersOnly=True)
|
2010-08-27 01:23:53 +00:00
|
|
|
|
2011-03-07 13:23:45 +00:00
|
|
|
if st.mode in {'ACTION', 'SHAPEKEY'}:
|
2009-12-08 07:11:43 +00:00
|
|
|
layout.template_ID(st, "action", new="action.new")
|
2011-01-13 23:00:51 +00:00
|
|
|
|
2011-01-10 22:10:28 +00:00
|
|
|
# Grease Pencil mode doesn't need snapping, as it's frame-aligned only
|
2009-12-08 07:11:43 +00:00
|
|
|
if st.mode != 'GPENCIL':
|
2010-08-17 07:49:53 +00:00
|
|
|
layout.prop(st, "auto_snap", text="")
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
row = layout.row(align=True)
|
2009-12-10 10:23:53 +00:00
|
|
|
row.operator("action.copy", text="", icon='COPYDOWN')
|
|
|
|
row.operator("action.paste", text="", icon='PASTEDOWN')
|
2009-12-07 21:51:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
class DOPESHEET_MT_view(bpy.types.Menu):
|
2011-07-13 14:41:12 +00:00
|
|
|
bl_label = _("View")
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
st = context.space_data
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
layout.column()
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2010-08-17 07:49:53 +00:00
|
|
|
layout.prop(st, "use_realtime_update")
|
|
|
|
layout.prop(st, "show_frame_indicator")
|
2009-12-08 07:11:43 +00:00
|
|
|
layout.prop(st, "show_sliders")
|
2010-08-17 07:49:53 +00:00
|
|
|
layout.prop(st, "use_auto_merge_keyframes")
|
2010-03-08 09:06:58 +00:00
|
|
|
layout.prop(st, "use_marker_sync")
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
if st.show_seconds:
|
2011-07-13 14:41:12 +00:00
|
|
|
layout.operator("anim.time_toggle", text=_("Show Frames"))
|
2009-12-08 07:11:43 +00:00
|
|
|
else:
|
2011-07-13 14:41:12 +00:00
|
|
|
layout.operator("anim.time_toggle", text=_("Show Seconds"))
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
layout.separator()
|
|
|
|
layout.operator("anim.previewrange_set")
|
|
|
|
layout.operator("anim.previewrange_clear")
|
|
|
|
layout.operator("action.previewrange_set")
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
layout.separator()
|
|
|
|
layout.operator("action.frame_jump")
|
|
|
|
layout.operator("action.view_all")
|
2011-03-17 10:02:37 +00:00
|
|
|
layout.operator("action.view_selected")
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
layout.separator()
|
|
|
|
layout.operator("screen.area_dupli")
|
|
|
|
layout.operator("screen.screen_full_area")
|
2009-12-07 21:51:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
class DOPESHEET_MT_select(bpy.types.Menu):
|
2011-07-13 14:41:12 +00:00
|
|
|
bl_label = _("Select")
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
layout.column()
|
|
|
|
# This is a bit misleading as the operator's default text is "Select All" while it actually *toggles* All/None
|
|
|
|
layout.operator("action.select_all_toggle")
|
2011-07-13 14:41:12 +00:00
|
|
|
layout.operator("action.select_all_toggle", text=_("Invert Selection")).invert = True
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
layout.separator()
|
|
|
|
layout.operator("action.select_border")
|
2011-07-13 14:41:12 +00:00
|
|
|
layout.operator("action.select_border", text=_("Border Axis Range")).axis_range = True
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
layout.separator()
|
2011-07-13 14:41:12 +00:00
|
|
|
layout.operator("action.select_column", text=_("Columns on Selected Keys")).mode = 'KEYS'
|
|
|
|
layout.operator("action.select_column", text=_("Column on Current Frame")).mode = 'CFRA'
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2011-07-13 14:41:12 +00:00
|
|
|
layout.operator("action.select_column", text=_("Columns on Selected Markers")).mode = 'MARKERS_COLUMN'
|
|
|
|
layout.operator("action.select_column", text=_("Between Selected Markers")).mode = 'MARKERS_BETWEEN'
|
2011-01-13 23:00:51 +00:00
|
|
|
|
2011-02-14 02:30:33 +00:00
|
|
|
layout.separator()
|
2011-07-13 14:41:12 +00:00
|
|
|
layout.operator("action.select_leftright", text=_("Before Current Frame")).mode = 'LEFT'
|
|
|
|
layout.operator("action.select_leftright", text=_("After Current Frame")).mode = 'RIGHT'
|
2011-02-14 02:30:33 +00:00
|
|
|
|
2011-01-10 22:10:28 +00:00
|
|
|
# FIXME: grease pencil mode isn't supported for these yet, so skip for that mode only
|
|
|
|
if context.space_data.mode != 'GPENCIL':
|
|
|
|
layout.separator()
|
|
|
|
layout.operator("action.select_more")
|
|
|
|
layout.operator("action.select_less")
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2011-01-10 22:10:28 +00:00
|
|
|
layout.separator()
|
|
|
|
layout.operator("action.select_linked")
|
2010-04-05 11:47:55 +00:00
|
|
|
|
2011-01-13 23:00:51 +00:00
|
|
|
|
2011-01-06 04:47:57 +00:00
|
|
|
class DOPESHEET_MT_marker(bpy.types.Menu):
|
2011-07-13 14:41:12 +00:00
|
|
|
bl_label = _("Marker")
|
2011-01-13 23:00:51 +00:00
|
|
|
|
2011-01-06 04:47:57 +00:00
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2011-01-13 23:00:51 +00:00
|
|
|
|
2011-01-09 23:16:05 +00:00
|
|
|
st = context.space_data
|
2011-01-13 23:00:51 +00:00
|
|
|
|
2011-01-06 04:47:57 +00:00
|
|
|
#layout.operator_context = 'EXEC_REGION_WIN'
|
2011-01-13 23:00:51 +00:00
|
|
|
|
2011-01-06 04:47:57 +00:00
|
|
|
layout.column()
|
2011-07-13 14:41:12 +00:00
|
|
|
layout.operator("marker.add", _("Add Marker"))
|
|
|
|
layout.operator("marker.duplicate", text=_("Duplicate Marker"))
|
|
|
|
layout.operator("marker.delete", text=_("Delete Marker"))
|
2011-01-06 04:47:57 +00:00
|
|
|
|
|
|
|
layout.separator()
|
2011-01-13 23:00:51 +00:00
|
|
|
|
2011-07-13 14:41:12 +00:00
|
|
|
layout.operator("marker.rename", text=_("Rename Marker"))
|
|
|
|
layout.operator("marker.move", text=_("Grab/Move Marker"))
|
2011-01-13 23:00:51 +00:00
|
|
|
|
2011-03-07 13:23:45 +00:00
|
|
|
if st.mode in {'ACTION', 'SHAPEKEY'} and st.action:
|
2011-01-09 23:16:05 +00:00
|
|
|
layout.separator()
|
|
|
|
layout.prop(st, "show_pose_markers")
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2011-02-26 06:28:24 +00:00
|
|
|
if st.show_pose_markers is False:
|
|
|
|
layout.operator("action.markers_make_local")
|
|
|
|
|
2011-01-13 23:00:51 +00:00
|
|
|
|
2011-01-10 22:10:28 +00:00
|
|
|
#######################################
|
|
|
|
# Keyframe Editing
|
|
|
|
|
2009-12-07 21:51:44 +00:00
|
|
|
class DOPESHEET_MT_channel(bpy.types.Menu):
|
2011-07-13 14:41:12 +00:00
|
|
|
bl_label = _("Channel")
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2010-02-07 23:39:44 +00:00
|
|
|
layout.operator_context = 'INVOKE_REGION_CHANNELS'
|
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
layout.column()
|
2010-09-13 00:53:47 +00:00
|
|
|
layout.operator("anim.channels_delete")
|
|
|
|
|
|
|
|
layout.separator()
|
2009-12-08 07:11:43 +00:00
|
|
|
layout.operator("anim.channels_setting_toggle")
|
|
|
|
layout.operator("anim.channels_setting_enable")
|
|
|
|
layout.operator("anim.channels_setting_disable")
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
layout.separator()
|
|
|
|
layout.operator("anim.channels_editable_toggle")
|
2011-07-13 14:41:12 +00:00
|
|
|
layout.operator_menu_enum("action.extrapolation_type", "type", text=_("Extrapolation Mode"))
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
layout.separator()
|
|
|
|
layout.operator("anim.channels_expand")
|
|
|
|
layout.operator("anim.channels_collapse")
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2010-11-07 12:09:15 +00:00
|
|
|
layout.separator()
|
2011-07-13 14:41:12 +00:00
|
|
|
layout.operator_menu_enum("anim.channels_move", "direction", text=_("Move..."))
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2010-11-11 11:56:50 +00:00
|
|
|
layout.separator()
|
2010-11-11 21:49:40 +00:00
|
|
|
layout.operator("anim.channels_fcurves_enable")
|
2010-11-11 11:56:50 +00:00
|
|
|
|
|
|
|
|
2009-12-07 21:51:44 +00:00
|
|
|
class DOPESHEET_MT_key(bpy.types.Menu):
|
2011-07-13 14:41:12 +00:00
|
|
|
bl_label = _("Key")
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
layout.column()
|
2011-07-13 14:41:12 +00:00
|
|
|
layout.menu("DOPESHEET_MT_key_transform", text=_("Transform"))
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2011-07-13 14:41:12 +00:00
|
|
|
layout.operator_menu_enum("action.snap", "type", text=_("Snap"))
|
|
|
|
layout.operator_menu_enum("action.mirror", "type", text=_("Mirror"))
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
layout.separator()
|
2009-12-31 23:56:45 +00:00
|
|
|
layout.operator("action.keyframe_insert")
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
layout.separator()
|
|
|
|
layout.operator("action.duplicate")
|
|
|
|
layout.operator("action.delete")
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
layout.separator()
|
2011-07-13 14:41:12 +00:00
|
|
|
layout.operator_menu_enum("action.keyframe_type", "type", text=_("Keyframe Type"))
|
|
|
|
layout.operator_menu_enum("action.handle_type", "type", text=_("Handle Type"))
|
|
|
|
layout.operator_menu_enum("action.interpolation_type", "type", text=_("Interpolation Mode"))
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
layout.separator()
|
|
|
|
layout.operator("action.clean")
|
|
|
|
layout.operator("action.sample")
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
layout.separator()
|
|
|
|
layout.operator("action.copy")
|
|
|
|
layout.operator("action.paste")
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2011-01-13 23:00:51 +00:00
|
|
|
|
2009-12-07 21:51:44 +00:00
|
|
|
class DOPESHEET_MT_key_transform(bpy.types.Menu):
|
2011-07-13 14:41:12 +00:00
|
|
|
bl_label = _("Transform")
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2009-12-08 07:11:43 +00:00
|
|
|
layout.column()
|
2011-07-13 14:41:12 +00:00
|
|
|
layout.operator("transform.transform", text=_("Grab/Move")).mode = 'TIME_TRANSLATE'
|
|
|
|
layout.operator("transform.transform", text=_("Extend")).mode = 'TIME_EXTEND'
|
|
|
|
layout.operator("transform.transform", text=_("Slide")).mode = 'TIME_SLIDE'
|
|
|
|
layout.operator("transform.transform", text=_("Scale")).mode = 'TIME_SCALE'
|
2009-12-07 21:51:44 +00:00
|
|
|
|
2011-01-13 23:00:51 +00:00
|
|
|
|
2011-01-10 22:10:28 +00:00
|
|
|
#######################################
|
|
|
|
# Grease Pencil Editing
|
|
|
|
|
|
|
|
class DOPESHEET_MT_gpencil_channel(bpy.types.Menu):
|
2011-07-13 14:41:12 +00:00
|
|
|
bl_label = _("Channel")
|
2011-01-13 23:00:51 +00:00
|
|
|
|
2011-01-10 22:10:28 +00:00
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
layout.operator_context = 'INVOKE_REGION_CHANNELS'
|
|
|
|
|
|
|
|
layout.column()
|
|
|
|
layout.operator("anim.channels_delete")
|
|
|
|
|
|
|
|
layout.separator()
|
|
|
|
layout.operator("anim.channels_setting_toggle")
|
|
|
|
layout.operator("anim.channels_setting_enable")
|
|
|
|
layout.operator("anim.channels_setting_disable")
|
|
|
|
|
|
|
|
layout.separator()
|
|
|
|
layout.operator("anim.channels_editable_toggle")
|
2011-01-13 23:00:51 +00:00
|
|
|
|
2011-01-10 22:10:28 +00:00
|
|
|
# XXX: to be enabled when these are ready for use!
|
|
|
|
#layout.separator()
|
|
|
|
#layout.operator("anim.channels_expand")
|
|
|
|
#layout.operator("anim.channels_collapse")
|
|
|
|
|
|
|
|
#layout.separator()
|
|
|
|
#layout.operator_menu_enum("anim.channels_move", "direction", text="Move...")
|
|
|
|
|
2011-01-13 23:00:51 +00:00
|
|
|
|
2011-01-10 22:10:28 +00:00
|
|
|
class DOPESHEET_MT_gpencil_frame(bpy.types.Menu):
|
2011-07-13 14:41:12 +00:00
|
|
|
bl_label = _("Frame")
|
2011-01-10 22:10:28 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
layout.column()
|
2011-07-13 14:41:12 +00:00
|
|
|
layout.menu("DOPESHEET_MT_key_transform", text=_("Transform"))
|
2011-01-10 22:10:28 +00:00
|
|
|
|
|
|
|
#layout.operator_menu_enum("action.snap", "type", text="Snap")
|
|
|
|
#layout.operator_menu_enum("action.mirror", "type", text="Mirror")
|
|
|
|
|
|
|
|
layout.separator()
|
|
|
|
layout.operator("action.duplicate")
|
|
|
|
layout.operator("action.delete")
|
|
|
|
|
|
|
|
#layout.separator()
|
|
|
|
#layout.operator("action.copy")
|
|
|
|
#layout.operator("action.paste")
|
2011-04-04 10:13:04 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__": # only for live edit.
|
|
|
|
bpy.utils.register_module(__name__)
|