From: Christian Femers Date: Sun, 6 Oct 2019 23:39:21 +0000 (+0200) Subject: Added Mograsim perspective that contains all useful views directly X-Git-Url: https://mograsim.net/gitweb/?p=Mograsim.git;a=commitdiff_plain;h=5fa70b5d24aa650cca02cf5eaf459d7aad2022de Added Mograsim perspective that contains all useful views directly --- diff --git a/plugins/net.mograsim.plugin.core/plugin.xml b/plugins/net.mograsim.plugin.core/plugin.xml index 0eaf8d49..f317191c 100644 --- a/plugins/net.mograsim.plugin.core/plugin.xml +++ b/plugins/net.mograsim.plugin.core/plugin.xml @@ -461,4 +461,99 @@ renderingIds="org.eclipse.debug.ui.rendering.raw_memory,org.eclipse.debug.ui.rendering.hexint,org.eclipse.debug.ui.rendering.signedint,org.eclipse.debug.ui.rendering.unsignedint,org.eclipse.debug.ui.rendering.ascii"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/perspectives/MograsimPerspective.java b/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/perspectives/MograsimPerspective.java new file mode 100644 index 00000000..1dfef2f4 --- /dev/null +++ b/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/perspectives/MograsimPerspective.java @@ -0,0 +1,13 @@ +package net.mograsim.plugin.perspectives; + +import org.eclipse.ui.IPageLayout; +import org.eclipse.ui.IPerspectiveFactory; + +public class MograsimPerspective implements IPerspectiveFactory +{ + @Override + public void createInitialLayout(IPageLayout factory) + { + // everything is done in the plugin.xml + } +}