This should be purely an implementation change, for end users there should be no functional difference. The entire key configuration is in one file with ~5000 lines of code. Mostly avoiding code duplication and preserve comments and utility functions from the C code. It's a bit long but for searching and editing it's also convenient to have it all in one file. Notes: - Actual keymap is shared by blender / blender_legacy and stored in `keymap_data/blender_default.py` This only generates JSON-like data to be passed into `keyconfig_import_from_data`, allowing other presets to load and manipulate the default keymap. - Each preset defines 'keyconfig_data' which can be shared between presets. - Some of the utility functions for generating keymap items still need to be ported over to Python. - Some keymap items can be made into loops (marked as TODO). See: D3907
157 lines
5.5 KiB
C
157 lines
5.5 KiB
C
/*
|
|
* ***** 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.
|
|
*
|
|
* The Original Code is Copyright (C) 2008 Blender Foundation.
|
|
* All rights reserved.
|
|
*
|
|
*
|
|
* Contributor(s): Blender Foundation
|
|
*
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
*/
|
|
|
|
/** \file blender/editors/space_sequencer/sequencer_ops.c
|
|
* \ingroup spseq
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <math.h>
|
|
|
|
#include "DNA_space_types.h"
|
|
|
|
#include "WM_api.h"
|
|
#include "WM_types.h"
|
|
|
|
#include "ED_sequencer.h"
|
|
#include "ED_markers.h"
|
|
#include "ED_transform.h" /* transform keymap */
|
|
#include "ED_select_utils.h"
|
|
|
|
#include "BKE_sequencer.h"
|
|
|
|
#include "sequencer_intern.h"
|
|
|
|
|
|
/* ************************** registration **********************************/
|
|
|
|
|
|
void sequencer_operatortypes(void)
|
|
{
|
|
/* sequencer_edit.c */
|
|
WM_operatortype_append(SEQUENCER_OT_cut);
|
|
WM_operatortype_append(SEQUENCER_OT_slip);
|
|
WM_operatortype_append(SEQUENCER_OT_mute);
|
|
WM_operatortype_append(SEQUENCER_OT_unmute);
|
|
WM_operatortype_append(SEQUENCER_OT_lock);
|
|
WM_operatortype_append(SEQUENCER_OT_unlock);
|
|
WM_operatortype_append(SEQUENCER_OT_reload);
|
|
WM_operatortype_append(SEQUENCER_OT_refresh_all);
|
|
WM_operatortype_append(SEQUENCER_OT_reassign_inputs);
|
|
WM_operatortype_append(SEQUENCER_OT_swap_inputs);
|
|
WM_operatortype_append(SEQUENCER_OT_duplicate);
|
|
WM_operatortype_append(SEQUENCER_OT_delete);
|
|
WM_operatortype_append(SEQUENCER_OT_offset_clear);
|
|
WM_operatortype_append(SEQUENCER_OT_images_separate);
|
|
WM_operatortype_append(SEQUENCER_OT_meta_toggle);
|
|
WM_operatortype_append(SEQUENCER_OT_meta_make);
|
|
WM_operatortype_append(SEQUENCER_OT_meta_separate);
|
|
|
|
WM_operatortype_append(SEQUENCER_OT_gap_remove);
|
|
WM_operatortype_append(SEQUENCER_OT_gap_insert);
|
|
WM_operatortype_append(SEQUENCER_OT_snap);
|
|
WM_operatortype_append(SEQUENCER_OT_strip_jump);
|
|
WM_operatortype_append(SEQUENCER_OT_swap);
|
|
WM_operatortype_append(SEQUENCER_OT_swap_data);
|
|
WM_operatortype_append(SEQUENCER_OT_rendersize);
|
|
|
|
WM_operatortype_append(SEQUENCER_OT_export_subtitles);
|
|
|
|
WM_operatortype_append(SEQUENCER_OT_copy);
|
|
WM_operatortype_append(SEQUENCER_OT_paste);
|
|
|
|
WM_operatortype_append(SEQUENCER_OT_view_all);
|
|
WM_operatortype_append(SEQUENCER_OT_view_selected);
|
|
WM_operatortype_append(SEQUENCER_OT_view_frame);
|
|
WM_operatortype_append(SEQUENCER_OT_view_all_preview);
|
|
WM_operatortype_append(SEQUENCER_OT_view_toggle);
|
|
WM_operatortype_append(SEQUENCER_OT_view_zoom_ratio);
|
|
WM_operatortype_append(SEQUENCER_OT_view_ghost_border);
|
|
|
|
WM_operatortype_append(SEQUENCER_OT_rebuild_proxy);
|
|
WM_operatortype_append(SEQUENCER_OT_enable_proxies);
|
|
WM_operatortype_append(SEQUENCER_OT_change_effect_input);
|
|
WM_operatortype_append(SEQUENCER_OT_change_effect_type);
|
|
WM_operatortype_append(SEQUENCER_OT_change_path);
|
|
|
|
/* sequencer_select.c */
|
|
WM_operatortype_append(SEQUENCER_OT_select_all);
|
|
WM_operatortype_append(SEQUENCER_OT_select);
|
|
WM_operatortype_append(SEQUENCER_OT_select_more);
|
|
WM_operatortype_append(SEQUENCER_OT_select_less);
|
|
WM_operatortype_append(SEQUENCER_OT_select_linked_pick);
|
|
WM_operatortype_append(SEQUENCER_OT_select_linked);
|
|
WM_operatortype_append(SEQUENCER_OT_select_handles);
|
|
WM_operatortype_append(SEQUENCER_OT_select_active_side);
|
|
WM_operatortype_append(SEQUENCER_OT_select_box);
|
|
WM_operatortype_append(SEQUENCER_OT_select_grouped);
|
|
|
|
/* sequencer_add.c */
|
|
WM_operatortype_append(SEQUENCER_OT_scene_strip_add);
|
|
WM_operatortype_append(SEQUENCER_OT_movieclip_strip_add);
|
|
WM_operatortype_append(SEQUENCER_OT_mask_strip_add);
|
|
WM_operatortype_append(SEQUENCER_OT_movie_strip_add);
|
|
WM_operatortype_append(SEQUENCER_OT_sound_strip_add);
|
|
WM_operatortype_append(SEQUENCER_OT_image_strip_add);
|
|
WM_operatortype_append(SEQUENCER_OT_effect_strip_add);
|
|
|
|
/* sequencer_buttons.c */
|
|
WM_operatortype_append(SEQUENCER_OT_properties);
|
|
|
|
/* sequencer_modifiers.c */
|
|
WM_operatortype_append(SEQUENCER_OT_strip_modifier_add);
|
|
WM_operatortype_append(SEQUENCER_OT_strip_modifier_remove);
|
|
WM_operatortype_append(SEQUENCER_OT_strip_modifier_move);
|
|
WM_operatortype_append(SEQUENCER_OT_strip_modifier_copy);
|
|
|
|
/* sequencer_view.h */
|
|
WM_operatortype_append(SEQUENCER_OT_sample);
|
|
}
|
|
|
|
|
|
void sequencer_keymap(wmKeyConfig *keyconf)
|
|
{
|
|
/* Common items ------------------------------------------------------------------ */
|
|
WM_keymap_ensure(keyconf, "SequencerCommon", SPACE_SEQ, 0);
|
|
|
|
/* Strips Region --------------------------------------------------------------- */
|
|
WM_keymap_ensure(keyconf, "Sequencer", SPACE_SEQ, 0);
|
|
|
|
/* Preview Region ----------------------------------------------------------- */
|
|
WM_keymap_ensure(keyconf, "SequencerPreview", SPACE_SEQ, 0);
|
|
}
|
|
|
|
void ED_operatormacros_sequencer(void)
|
|
{
|
|
wmOperatorType *ot;
|
|
|
|
ot = WM_operatortype_append_macro("SEQUENCER_OT_duplicate_move", "Duplicate Strips",
|
|
"Duplicate selected strips and move them", OPTYPE_UNDO | OPTYPE_REGISTER);
|
|
|
|
WM_operatortype_macro_define(ot, "SEQUENCER_OT_duplicate");
|
|
WM_operatortype_macro_define(ot, "TRANSFORM_OT_seq_slide");
|
|
}
|