From: Daniel Kirschten Date: Sun, 6 Oct 2019 23:41:26 +0000 (+0200) Subject: Merge remote-tracking branch 'origin/development' into development X-Git-Url: https://mograsim.net/gitweb/?a=commitdiff_plain;h=0c404f876557865fb7361ca458ac90caf41afe19;hp=f430c331e21b61d3e1a720cdb0638ca3d8bca711;p=Mograsim.git Merge remote-tracking branch 'origin/development' into development --- 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 + } +}