-
Notifications
You must be signed in to change notification settings - Fork 202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Apply Restriction Rules for Parenting #673
Merged
kxl-adsk
merged 6 commits into
dev
from
sabrih/MAYA-105765/apply_restriction_rules_parenting
Jul 28, 2020
Merged
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
c358550
Clean up member variable names, header orders, etc.. according to gui…
0202eec
Apply restriction rules for child and parent prims before performing …
baf1595
Fix failing unit tests ( testGroupCmd, testParentCmd ).
23d2f9b
put back the test codes that I removed earlier.
54ed18a
Make MacOS/Linux compiler happy by changing the initializing order .
e123bad
change required version to 2018.
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,12 +15,12 @@ | |
// | ||
#pragma once | ||
|
||
#include <mayaUsd/base/api.h> | ||
#include <mayaUsd/ufe/UsdSceneItem.h> | ||
#include <ufe/undoableCommand.h> | ||
|
||
#include <pxr/usd/usd/prim.h> | ||
|
||
#include <ufe/undoableCommand.h> | ||
#include <mayaUsd/base/api.h> | ||
#include <mayaUsd/ufe/UsdSceneItem.h> | ||
|
||
PXR_NAMESPACE_USING_DIRECTIVE | ||
|
||
|
@@ -31,31 +31,28 @@ namespace ufe { | |
class MAYAUSD_CORE_PUBLIC UsdUndoInsertChildCommand : public Ufe::UndoableCommand | ||
{ | ||
public: | ||
typedef std::shared_ptr<UsdUndoInsertChildCommand> Ptr; | ||
using Ptr = std::shared_ptr<UsdUndoInsertChildCommand>; | ||
|
||
~UsdUndoInsertChildCommand() override; | ||
|
||
// Delete the copy/move constructors assignment operators. | ||
UsdUndoInsertChildCommand(const UsdUndoInsertChildCommand&) = delete; | ||
UsdUndoInsertChildCommand& operator=(const UsdUndoInsertChildCommand&) = delete; | ||
UsdUndoInsertChildCommand(UsdUndoInsertChildCommand&&) = delete; | ||
UsdUndoInsertChildCommand& operator=(UsdUndoInsertChildCommand&&) = delete; | ||
|
||
//! Create a UsdUndoInsertChildCommand. Note that as of 4-May-2020 the | ||
//! pos argument is ignored, and only append is supported. | ||
static UsdUndoInsertChildCommand::Ptr create( | ||
const UsdSceneItem::Ptr& parent, | ||
const UsdSceneItem::Ptr& child, | ||
const UsdSceneItem::Ptr& pos | ||
); | ||
static UsdUndoInsertChildCommand::Ptr create(const UsdSceneItem::Ptr& parent, | ||
const UsdSceneItem::Ptr& child, | ||
const UsdSceneItem::Ptr& pos); | ||
|
||
protected: | ||
//! Construct a UsdUndoInsertChildCommand. Note that as of 4-May-2020 the | ||
//! pos argument is ignored, and only append is supported. | ||
UsdUndoInsertChildCommand( | ||
const UsdSceneItem::Ptr& parent, | ||
const UsdSceneItem::Ptr& child, | ||
const UsdSceneItem::Ptr& pos | ||
); | ||
UsdUndoInsertChildCommand(const UsdSceneItem::Ptr& parent, | ||
const UsdSceneItem::Ptr& child, | ||
const UsdSceneItem::Ptr& pos); | ||
|
||
private: | ||
void undo() override; | ||
|
@@ -64,14 +61,18 @@ class MAYAUSD_CORE_PUBLIC UsdUndoInsertChildCommand : public Ufe::UndoableComman | |
bool insertChildRedo(); | ||
bool insertChildUndo(); | ||
|
||
UsdStageWeakPtr fStage; | ||
SdfLayerHandle fChildLayer; | ||
SdfLayerHandle fParentLayer; | ||
UsdSceneItem::Ptr fUfeSrcItem; | ||
SdfPath fUsdSrcPath; | ||
UsdSceneItem::Ptr fUfeDstItem; | ||
Ufe::Path fUfeDstPath; | ||
SdfPath fUsdDstPath; | ||
UsdStageWeakPtr _stage; | ||
|
||
UsdSceneItem::Ptr _ufeSrcItem; | ||
UsdSceneItem::Ptr _ufeDstItem; | ||
|
||
SdfPath _usdSrcPath; | ||
SdfPath _usdDstPath; | ||
|
||
SdfLayerHandle _childLayer; | ||
SdfLayerHandle _parentLayer; | ||
|
||
Ufe::Path _ufeDstPath; | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Cleaned up this class according to our guidelines. |
||
}; // UsdUndoInsertChildCommand | ||
|
||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cleaned up initializing class member variables.