implemented a footage viewer

Essentially a minor derivation of a viewer type that can automatically view
footage from the project (i.e. not in a sequence).
This commit is contained in:
itsmattkc
2019-12-30 20:17:48 +11:00
parent 55ea4a8177
commit 0db13a96ab
34 changed files with 439 additions and 152 deletions
+2 -2
View File
@@ -254,7 +254,7 @@ public:
* Nodes and NodeParams use the QObject parent-child system. This function is a convenience function for
* static_cast<Node*>(QObject::parent())
*/
Node* parentNode();
Node* parentNode() const;
/**
* @brief Return the row index of this parameter in the parent node (primarily used for UI drawing functions)
@@ -264,7 +264,7 @@ public:
/**
* @brief Returns whether anything is connected to this parameter or not
*/
bool IsConnected();
bool IsConnected() const;
bool IsConnectable() const;
void SetConnectable(bool connectable);