Use a shorter/simpler license convention, stops the header taking so much space. Follow the SPDX license specification: https://spdx.org/licenses - C/C++/objc/objc++ - Python - Shell Scripts - CMake, GNUmakefile While most of the source tree has been included - `./extern/` was left out. - `./intern/cycles` & `./intern/atomic` are also excluded because they use different header conventions. doc/license/SPDX-license-identifiers.txt has been added to list SPDX all used identifiers. See P2788 for the script that automated these edits. Reviewed By: brecht, mont29, sergey Ref D14069
38 lines
1.0 KiB
C++
38 lines
1.0 KiB
C++
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* Copyright 2004 Blender Foundation. All rights reserved. */
|
|
|
|
#pragma once
|
|
|
|
/** \file
|
|
* \ingroup sequencer
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct ListBase;
|
|
struct Main;
|
|
struct Scene;
|
|
struct Sequence;
|
|
|
|
extern struct ListBase seqbase_clipboard;
|
|
extern struct ListBase fcurves_clipboard;
|
|
extern int seqbase_clipboard_frame;
|
|
void SEQ_clipboard_pointers_store(struct Main *bmain, struct ListBase *seqbase);
|
|
void SEQ_clipboard_pointers_restore(struct ListBase *seqbase, struct Main *bmain);
|
|
void SEQ_clipboard_free(void);
|
|
void SEQ_clipboard_active_seq_name_store(struct Scene *scene);
|
|
/**
|
|
* Check if strip was active when it was copied. User should restrict this check to pasted strips
|
|
* before ensuring original name, because strip name comparison is used to check.
|
|
*
|
|
* \param pasted_seq: Strip that is pasted(duplicated) from clipboard
|
|
* \return true if strip was active, false otherwise
|
|
*/
|
|
bool SEQ_clipboard_pasted_seq_was_active(struct Sequence *pasted_seq);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|