-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Many bug fixes and major improvements to workflow. - Added compatibility with UE4.25. - New First Steps Tutorial: https://www.noesisengine.com/docs/Gui.Core.UnrealTutorial.html
- Loading branch information
1 parent
dfca9d8
commit dcad0c1
Showing
107 changed files
with
2,949 additions
and
1,561 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
16 changes: 16 additions & 0 deletions
16
Source/NoesisEditor/Private/NoesisBlueprintApplicationMode.cpp
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
//////////////////////////////////////////////////////////////////////////////////////////////////// | ||
// NoesisGUI - http://www.noesisengine.com | ||
// Copyright (c) 2013 Noesis Technologies S.L. All Rights Reserved. | ||
//////////////////////////////////////////////////////////////////////////////////////////////////// | ||
|
||
#include "NoesisBlueprintApplicationMode.h" | ||
|
||
// NoesisEditor includes | ||
#include "NoesisBlueprintEditor.h" | ||
#include "NoesisBlueprintApplicationModes.h" | ||
|
||
FNoesisBlueprintApplicationMode::FNoesisBlueprintApplicationMode(TSharedPtr<class FNoesisBlueprintEditor> InNoesisBlueprintEditor, FName InModeName) | ||
: FBlueprintEditorApplicationMode(InNoesisBlueprintEditor, InModeName, FNoesisBlueprintApplicationModes::GetLocalizedMode, false, false) | ||
, NoesisBlueprintEditor(InNoesisBlueprintEditor) | ||
{ | ||
} |
16 changes: 16 additions & 0 deletions
16
Source/NoesisEditor/Private/NoesisBlueprintApplicationMode.h
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
//////////////////////////////////////////////////////////////////////////////////////////////////// | ||
// NoesisGUI - http://www.noesisengine.com | ||
// Copyright (c) 2013 Noesis Technologies S.L. All Rights Reserved. | ||
//////////////////////////////////////////////////////////////////////////////////////////////////// | ||
|
||
#pragma once | ||
|
||
class FNoesisBlueprintApplicationMode : public FBlueprintEditorApplicationMode | ||
{ | ||
public: | ||
FNoesisBlueprintApplicationMode(TSharedPtr<class FNoesisBlueprintEditor> InNoesisBlueprintEditor, FName InModeName); | ||
|
||
TWeakPtr<class FNoesisBlueprintEditor> NoesisBlueprintEditor; | ||
|
||
FWorkflowAllowedTabSet TabFactories; | ||
}; |
30 changes: 30 additions & 0 deletions
30
Source/NoesisEditor/Private/NoesisBlueprintApplicationModes.cpp
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
//////////////////////////////////////////////////////////////////////////////////////////////////// | ||
// NoesisGUI - http://www.noesisengine.com | ||
// Copyright (c) 2013 Noesis Technologies S.L. All Rights Reserved. | ||
//////////////////////////////////////////////////////////////////////////////////////////////////// | ||
|
||
#include "NoesisBlueprintApplicationModes.h" | ||
|
||
#define LOCTEXT_NAMESPACE "NoesisEditorModule" | ||
|
||
const FName FNoesisBlueprintApplicationModes::PreviewMode("PreviewName"); | ||
const FName FNoesisBlueprintApplicationModes::GraphMode("GraphName"); | ||
|
||
FText FNoesisBlueprintApplicationModes::GetLocalizedMode(const FName InMode) | ||
{ | ||
static TMap< FName, FText > LocModes; | ||
|
||
if (LocModes.Num() == 0) | ||
{ | ||
LocModes.Add(PreviewMode, LOCTEXT("PreviewName", "Preview")); | ||
LocModes.Add(GraphMode, LOCTEXT("GraphName", "Graph")); | ||
} | ||
|
||
check(InMode != NAME_None); | ||
const FText* OutDesc = LocModes.Find(InMode); | ||
check(OutDesc); | ||
|
||
return *OutDesc; | ||
} | ||
|
||
#undef LOCTEXT_NAMESPACE |
17 changes: 17 additions & 0 deletions
17
Source/NoesisEditor/Private/NoesisBlueprintApplicationModes.h
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
//////////////////////////////////////////////////////////////////////////////////////////////////// | ||
// NoesisGUI - http://www.noesisengine.com | ||
// Copyright (c) 2013 Noesis Technologies S.L. All Rights Reserved. | ||
//////////////////////////////////////////////////////////////////////////////////////////////////// | ||
|
||
#pragma once | ||
|
||
struct FNoesisBlueprintApplicationModes | ||
{ | ||
static const FName PreviewMode; | ||
static const FName GraphMode; | ||
|
||
static FText GetLocalizedMode(const FName InMode); | ||
|
||
private: | ||
FNoesisBlueprintApplicationModes() {} | ||
}; |
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
Oops, something went wrong.