![JAR search and dependency download from the Maven repository](/logo.png)
jadex.micro.mandelbrot.display.DisplayAgent Maven / Gradle / Ivy
The newest version!
package jadex.micro.mandelbrot.display;
import java.awt.BorderLayout;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JSplitPane;
import javax.swing.JTextPane;
import jadex.common.SGUI;
import jadex.core.IComponent;
import jadex.core.IExternalAccess;
import jadex.micro.annotation.Agent;
import jadex.micro.annotation.Description;
import jadex.micro.mandelbrot.generate.IGenerateService;
import jadex.micro.mandelbrot.ui.ColorChooserPanel;
import jadex.model.annotation.OnStart;
import jadex.providedservice.annotation.Implementation;
import jadex.providedservice.annotation.ProvidedService;
import jadex.providedservice.annotation.ProvidedServices;
import jadex.requiredservice.annotation.RequiredService;
import jadex.requiredservice.annotation.RequiredServices;
/**
* Agent offering a display service.
*/
@Description("Agent offering a display service.")
@ProvidedServices({
@ProvidedService(type=IDisplayService.class, implementation=@Implementation(DisplayService.class))//,
// @ProvidedService(type=IAppProviderService.class, implementation=@Implementation(AppProviderService.class))
})
@RequiredServices({
@RequiredService(name="generateservice", type=IGenerateService.class),
})
@Agent
public class DisplayAgent
{
//-------- attributes --------
/** The agent. */
@Agent
protected IComponent agent;
/** The GUI. */
protected DisplayPanel panel;
//-------- MicroAgent methods --------
/**
* Called once after agent creation.
*/
//@AgentCreated
//@OnInit
@OnStart
public void agentCreated()
{
DisplayAgent.this.panel = new DisplayPanel(agent.getExternalAccess());
// addService(new DisplayService(this));
final IExternalAccess access = agent.getExternalAccess();
final JFrame frame = new JFrame(agent.getId().getLocalName());
JScrollPane scroll = new JScrollPane(panel);
JTextPane helptext = new JTextPane();
helptext.setText(DisplayPanel.HELPTEXT);
helptext.setEditable(false);
JPanel right = new JPanel(new BorderLayout());
right.add(new ColorChooserPanel(panel), BorderLayout.CENTER);
right.add(helptext, BorderLayout.NORTH);
JSplitPane split = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, scroll, right);
split.setResizeWeight(1);
split.setOneTouchExpandable(true);
split.setDividerLocation(375);
frame.getContentPane().add(BorderLayout.CENTER, split);
frame.setSize(500, 400);
frame.setLocation(SGUI.calculateMiddlePosition(frame));
frame.setVisible(true);
frame.addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
IComponent.terminate(access.getId());
}
});
/*access.scheduleStep(new IComponentStep()
{
@Classname("dispose")
public IFuture execute(IInternalAccess ia)
{
// ia.addComponentListener(new TerminationAdapter()
// {
// public void componentTerminated()
// {
// SwingUtilities.invokeLater(new Runnable()
// {
// public void run()
// {
// frame.dispose();
// }
// });
// }
// });
ia.getFeature(IMonitoringComponentFeature.class).subscribeToEvents(IMonitoringEvent.TERMINATION_FILTER, false, PublishEventLevel.COARSE)
.addResultListener(/*new SwingIntermediateResultListener(* /new IntermediateDefaultResultListener()
{
public void intermediateResultAvailable(IMonitoringEvent result)
{
frame.dispose();
}
}/*)* /);
return IFuture.DONE;
}
});*/
}
/*@OnEnd
public void onEnd()
{
frame.dispose();
}*/
//-------- methods --------
/**
* Get the display panel.
*/
public DisplayPanel getPanel()
{
return this.panel;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy