Factor Toolstrip setup out from the various Visject Windows. I made this it's own commit in case you don't like these changes, but if you want to undo you will have to add the new button I added to all three windows.
This commit is contained in:
@@ -12,6 +12,8 @@ using FlaxEditor.Scripting;
|
|||||||
using FlaxEditor.Utilities;
|
using FlaxEditor.Utilities;
|
||||||
using FlaxEngine.Utilities;
|
using FlaxEngine.Utilities;
|
||||||
using FlaxEngine;
|
using FlaxEngine;
|
||||||
|
using FlaxEditor.GUI;
|
||||||
|
using FlaxEditor.Options;
|
||||||
|
|
||||||
namespace FlaxEditor.Surface
|
namespace FlaxEditor.Surface
|
||||||
{
|
{
|
||||||
@@ -532,5 +534,24 @@ namespace FlaxEditor.Surface
|
|||||||
value = new Double4(i);
|
value = new Double4(i);
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void VisjectCommonToolstripSetup(Editor editor, ToolStrip toolStrip, FlaxEditor.Undo undo,
|
||||||
|
Action save, Action showWholeGraph, InputActionsContainer actionsContainer,
|
||||||
|
out ToolStripButton saveButton, out ToolStripButton undoButton, out ToolStripButton redoButton)
|
||||||
|
{
|
||||||
|
// Toolstrip
|
||||||
|
saveButton = (ToolStripButton)toolStrip.AddButton(editor.Icons.Save64, save).LinkTooltip("Save");
|
||||||
|
toolStrip.AddSeparator();
|
||||||
|
undoButton = (ToolStripButton)toolStrip.AddButton(editor.Icons.Undo64, undo.PerformUndo).LinkTooltip("Undo (Ctrl+Z)");
|
||||||
|
redoButton = (ToolStripButton)toolStrip.AddButton(editor.Icons.Redo64, undo.PerformRedo).LinkTooltip("Redo (Ctrl+Y)");
|
||||||
|
toolStrip.AddSeparator();
|
||||||
|
toolStrip.AddButton(editor.Icons.Search64, editor.ContentFinding.ShowSearch).LinkTooltip("Open content search tool (Ctrl+F)");
|
||||||
|
toolStrip.AddButton(editor.Icons.CenterView64, showWholeGraph).LinkTooltip("Show whole graph");
|
||||||
|
|
||||||
|
// Setup input actions
|
||||||
|
actionsContainer.Add(options => options.Undo, undo.PerformUndo);
|
||||||
|
actionsContainer.Add(options => options.Redo, undo.PerformRedo);
|
||||||
|
actionsContainer.Add(options => options.Search, editor.ContentFinding.ShowSearch);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -772,19 +772,8 @@ namespace FlaxEditor.Surface
|
|||||||
}
|
}
|
||||||
_propertiesEditor.Modified += OnPropertyEdited;
|
_propertiesEditor.Modified += OnPropertyEdited;
|
||||||
|
|
||||||
// Toolstrip
|
SurfaceUtils.VisjectCommonToolstripSetup(editor, _toolstrip, _undo, Save, ShowWholeGraph, InputActions,
|
||||||
_saveButton = (ToolStripButton)_toolstrip.AddButton(Editor.Icons.Save64, Save).LinkTooltip("Save");
|
out _saveButton, out _undoButton, out _redoButton);
|
||||||
_toolstrip.AddSeparator();
|
|
||||||
_undoButton = (ToolStripButton)_toolstrip.AddButton(Editor.Icons.Undo64, _undo.PerformUndo).LinkTooltip("Undo (Ctrl+Z)");
|
|
||||||
_redoButton = (ToolStripButton)_toolstrip.AddButton(Editor.Icons.Redo64, _undo.PerformRedo).LinkTooltip("Redo (Ctrl+Y)");
|
|
||||||
_toolstrip.AddSeparator();
|
|
||||||
_toolstrip.AddButton(Editor.Icons.Search64, Editor.ContentFinding.ShowSearch).LinkTooltip("Open content search tool (Ctrl+F)");
|
|
||||||
_toolstrip.AddButton(editor.Icons.CenterView64, ShowWholeGraph).LinkTooltip("Show whole graph");
|
|
||||||
|
|
||||||
// Setup input actions
|
|
||||||
InputActions.Add(options => options.Undo, _undo.PerformUndo);
|
|
||||||
InputActions.Add(options => options.Redo, _undo.PerformRedo);
|
|
||||||
InputActions.Add(options => options.Search, Editor.ContentFinding.ShowSearch);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnUndoRedo(IUndoAction action)
|
private void OnUndoRedo(IUndoAction action)
|
||||||
|
|||||||
@@ -68,13 +68,8 @@ namespace FlaxEditor.Windows.Assets
|
|||||||
_undo.ActionDone += OnUndoRedo;
|
_undo.ActionDone += OnUndoRedo;
|
||||||
|
|
||||||
// Toolstrip
|
// Toolstrip
|
||||||
_saveButton = (ToolStripButton)_toolstrip.AddButton(Editor.Icons.Save64, Save).LinkTooltip("Save");
|
SurfaceUtils.VisjectCommonToolstripSetup(editor, _toolstrip, _undo, Save, ShowWholeGraph, InputActions,
|
||||||
_toolstrip.AddSeparator();
|
out _saveButton, out _undoButton, out _redoButton);
|
||||||
_undoButton = (ToolStripButton)_toolstrip.AddButton(Editor.Icons.Undo64, _undo.PerformUndo).LinkTooltip("Undo (Ctrl+Z)");
|
|
||||||
_redoButton = (ToolStripButton)_toolstrip.AddButton(Editor.Icons.Redo64, _undo.PerformRedo).LinkTooltip("Redo (Ctrl+Y)");
|
|
||||||
_toolstrip.AddSeparator();
|
|
||||||
_toolstrip.AddButton(Editor.Icons.Search64, Editor.ContentFinding.ShowSearch).LinkTooltip("Open content search tool (Ctrl+F)");
|
|
||||||
_toolstrip.AddButton(editor.Icons.CenterView64, ShowWholeGraph).LinkTooltip("Show whole graph");
|
|
||||||
|
|
||||||
// Panel
|
// Panel
|
||||||
_panel = new Panel(ScrollBars.None)
|
_panel = new Panel(ScrollBars.None)
|
||||||
@@ -83,11 +78,6 @@ namespace FlaxEditor.Windows.Assets
|
|||||||
Offsets = new Margin(0, 0, _toolstrip.Bottom, 0),
|
Offsets = new Margin(0, 0, _toolstrip.Bottom, 0),
|
||||||
Parent = this
|
Parent = this
|
||||||
};
|
};
|
||||||
|
|
||||||
// Setup input actions
|
|
||||||
InputActions.Add(options => options.Undo, _undo.PerformUndo);
|
|
||||||
InputActions.Add(options => options.Redo, _undo.PerformRedo);
|
|
||||||
InputActions.Add(options => options.Search, Editor.ContentFinding.ShowSearch);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnUndoRedo(IUndoAction action)
|
private void OnUndoRedo(IUndoAction action)
|
||||||
|
|||||||
@@ -596,13 +596,8 @@ namespace FlaxEditor.Windows.Assets
|
|||||||
_propertiesEditor.Select(_properties);
|
_propertiesEditor.Select(_properties);
|
||||||
|
|
||||||
// Toolstrip
|
// Toolstrip
|
||||||
_saveButton = (ToolStripButton)_toolstrip.AddButton(Editor.Icons.Save64, Save).LinkTooltip("Save");
|
SurfaceUtils.VisjectCommonToolstripSetup(editor, _toolstrip, _undo, Save, ShowWholeGraph, InputActions,
|
||||||
_toolstrip.AddSeparator();
|
out _saveButton, out _undoButton, out _redoButton);
|
||||||
_undoButton = (ToolStripButton)_toolstrip.AddButton(Editor.Icons.Undo64, _undo.PerformUndo).LinkTooltip("Undo (Ctrl+Z)");
|
|
||||||
_redoButton = (ToolStripButton)_toolstrip.AddButton(Editor.Icons.Redo64, _undo.PerformRedo).LinkTooltip("Redo (Ctrl+Y)");
|
|
||||||
_toolstrip.AddSeparator();
|
|
||||||
_toolstrip.AddButton(Editor.Icons.Search64, Editor.ContentFinding.ShowSearch).LinkTooltip("Open content search tool (Ctrl+F)");
|
|
||||||
_toolstrip.AddButton(editor.Icons.CenterView64, ShowWholeGraph).LinkTooltip("Show whole graph");
|
|
||||||
_toolstrip.AddSeparator();
|
_toolstrip.AddSeparator();
|
||||||
_toolstrip.AddButton(editor.Icons.Docs64, () => Platform.OpenUrl(Utilities.Constants.DocsUrl + "manual/scripting/visual/index.html")).LinkTooltip("See documentation to learn more");
|
_toolstrip.AddButton(editor.Icons.Docs64, () => Platform.OpenUrl(Utilities.Constants.DocsUrl + "manual/scripting/visual/index.html")).LinkTooltip("See documentation to learn more");
|
||||||
_debugToolstripControls = new[]
|
_debugToolstripControls = new[]
|
||||||
@@ -642,9 +637,6 @@ namespace FlaxEditor.Windows.Assets
|
|||||||
debugObjectPickerContainer.Parent = _toolstrip;
|
debugObjectPickerContainer.Parent = _toolstrip;
|
||||||
|
|
||||||
// Setup input actions
|
// Setup input actions
|
||||||
InputActions.Add(options => options.Undo, _undo.PerformUndo);
|
|
||||||
InputActions.Add(options => options.Redo, _undo.PerformRedo);
|
|
||||||
InputActions.Add(options => options.Search, Editor.ContentFinding.ShowSearch);
|
|
||||||
InputActions.Add(options => options.DebuggerContinue, OnDebuggerContinue);
|
InputActions.Add(options => options.DebuggerContinue, OnDebuggerContinue);
|
||||||
InputActions.Add(options => options.DebuggerStepOver, OnDebuggerStepOver);
|
InputActions.Add(options => options.DebuggerStepOver, OnDebuggerStepOver);
|
||||||
InputActions.Add(options => options.DebuggerStepOut, OnDebuggerStepOut);
|
InputActions.Add(options => options.DebuggerStepOut, OnDebuggerStepOut);
|
||||||
|
|||||||
Reference in New Issue
Block a user