forked from Coded/SIPRP
git-svn-id: https://svn.coded.pt/svn/SIPRP@1288 bb69d46d-e84e-40c8-a05a-06db0d633741
parent
f2a26792e4
commit
dd105a301e
@ -0,0 +1,29 @@
|
|||||||
|
package siprp.ui;
|
||||||
|
|
||||||
|
import com.evolute.utils.image.EvoImage;
|
||||||
|
import com.evolute.utils.ui.window.EditorWindow;
|
||||||
|
|
||||||
|
public class SIPRPEditorWindow extends EditorWindow
|
||||||
|
{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
public SIPRPEditorWindow() throws Exception
|
||||||
|
{
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
public SIPRPEditorWindow( boolean[][] permittedActions ) throws Exception
|
||||||
|
{
|
||||||
|
super( permittedActions );
|
||||||
|
setIconImage( new EvoImage( "logo/icon.png" ).getImage() );
|
||||||
|
centerLater();
|
||||||
|
}
|
||||||
|
|
||||||
|
public SIPRPEditorWindow( int[][] permittedActions ) throws Exception
|
||||||
|
{
|
||||||
|
super( permittedActions );
|
||||||
|
setIconImage( new EvoImage( "logo/icon.png" ).getImage() );
|
||||||
|
centerLater();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -0,0 +1,22 @@
|
|||||||
|
package siprp.ui;
|
||||||
|
|
||||||
|
import com.evolute.swing.frame.EvoFrame;
|
||||||
|
import com.evolute.utils.image.EvoImage;
|
||||||
|
|
||||||
|
public class SIPRPFrame extends EvoFrame
|
||||||
|
{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
public SIPRPFrame()
|
||||||
|
{
|
||||||
|
this( "" );
|
||||||
|
}
|
||||||
|
|
||||||
|
public SIPRPFrame( String title )
|
||||||
|
{
|
||||||
|
super( title );
|
||||||
|
setIconImage( new EvoImage( "logo/icon.png" ).getImage() );
|
||||||
|
centerLater();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -0,0 +1,36 @@
|
|||||||
|
package siprp.ui;
|
||||||
|
|
||||||
|
import javax.swing.JPanel;
|
||||||
|
|
||||||
|
import com.evolute.utils.image.EvoImage;
|
||||||
|
import com.evolute.utils.ui.window.TabbedWindow;
|
||||||
|
|
||||||
|
public class SIPRPTabbedWindow extends TabbedWindow
|
||||||
|
{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
public SIPRPTabbedWindow( JPanel upperPanel, String[] tabNames, boolean[][] activeActions )
|
||||||
|
throws Exception
|
||||||
|
{
|
||||||
|
super( upperPanel, tabNames, activeActions );
|
||||||
|
setIconImage( new EvoImage( "logo/icon.png" ).getImage() );
|
||||||
|
centerLater();
|
||||||
|
}
|
||||||
|
|
||||||
|
public SIPRPTabbedWindow( boolean upperPanel, String[] tabNames, double weight, boolean[][] activeActions )
|
||||||
|
throws Exception
|
||||||
|
{
|
||||||
|
super( upperPanel, tabNames, weight, activeActions );
|
||||||
|
setIconImage( new EvoImage( "logo/icon.png" ).getImage() );
|
||||||
|
centerLater();
|
||||||
|
}
|
||||||
|
|
||||||
|
public SIPRPTabbedWindow( JPanel upperPanel, String[] tabNames, double weight, boolean[][] activeActions )
|
||||||
|
throws Exception
|
||||||
|
{
|
||||||
|
super( upperPanel, tabNames, weight, activeActions );
|
||||||
|
setIconImage( new EvoImage( "logo/icon.png" ).getImage() );
|
||||||
|
centerLater();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Reference in new issue