forked from Coded/SIPRP
git-svn-id: https://svn.coded.pt/svn/SIPRP@1291 bb69d46d-e84e-40c8-a05a-06db0d633741
parent
6438cbe35b
commit
2a722c2ae5
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
#SIPRPSoft versioning file
|
||||
#Fri Jun 25 17:32:18 WEST 2010
|
||||
major=0
|
||||
major=12
|
||||
name=SIPRPSoft
|
||||
minor=0
|
||||
build=1
|
||||
|
||||
@ -0,0 +1,38 @@
|
||||
package siprp.initializer;
|
||||
|
||||
import java.awt.Color;
|
||||
|
||||
import javax.swing.UIManager;
|
||||
|
||||
import com.evolute.application.EvoAbstractAppInitializer;
|
||||
import com.nilo.plaf.nimrod.NimRODLookAndFeel;
|
||||
import com.nilo.plaf.nimrod.NimRODTheme;
|
||||
|
||||
public class SIPRPUIInitializer extends EvoAbstractAppInitializer
|
||||
{
|
||||
|
||||
public SIPRPUIInitializer()
|
||||
{
|
||||
super( "UI", false, false, false );
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean doInit() throws Exception
|
||||
{
|
||||
// NimRODTheme nt = new NimRODTheme();
|
||||
// nt.setPrimary1( new Color( 185,211,238 ) );
|
||||
// nt.setPrimary2( new Color( 159,182,205 ) );
|
||||
// nt.setPrimary3( new Color( 108,123,139 ) );
|
||||
//
|
||||
// nt.setSecondary( new Color( 230, 230, 230 ) );
|
||||
//// nt.setSecondary1( new Color( 210, 210, 210 ) );
|
||||
//// nt.setSecondary2( Color.pink );
|
||||
//// nt.setSecondary3( Color.pink );
|
||||
//
|
||||
// NimRODLookAndFeel NimRODLF = new NimRODLookAndFeel();
|
||||
// NimRODLookAndFeel.setCurrentTheme( nt);
|
||||
// UIManager.setLookAndFeel( NimRODLF );
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in new issue