• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java AcrylLookAndFeel类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中com.jtattoo.plaf.acryl.AcrylLookAndFeel的典型用法代码示例。如果您正苦于以下问题:Java AcrylLookAndFeel类的具体用法?Java AcrylLookAndFeel怎么用?Java AcrylLookAndFeel使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



AcrylLookAndFeel类属于com.jtattoo.plaf.acryl包,在下文中一共展示了AcrylLookAndFeel类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: main

import com.jtattoo.plaf.acryl.AcrylLookAndFeel; //导入依赖的package包/类
public static void main(String[] args) {
	internet = Helper.isInternetReachable();
	SLAnimator.start();
	new Game();
	Properties p = new Properties();
	p.put("logoString", "");
	AcrylLookAndFeel.setTheme(p);
	
	try {
		ToolTipManager.sharedInstance().setInitialDelay(0);
		UIManager.setLookAndFeel(new AcrylLookAndFeel());
	} catch (Exception e) {
		e.printStackTrace();
	}
	
	new DakrorLauncher();
}
 
开发者ID:Dakror,项目名称:DakrorLauncher,代码行数:18,代码来源:DakrorLauncher.java


示例2: setAcrylTheme

import com.jtattoo.plaf.acryl.AcrylLookAndFeel; //导入依赖的package包/类
private static void setAcrylTheme() {
	Properties props = new Properties();
	props.setProperty("logoString", "");
	props.setProperty("macStyleWindowDecoration", "on");
	props.setProperty("menuOpaque", "off");

	AcrylLookAndFeel.setCurrentTheme(props);
	ViewerCellRenderer.INSTANCE.setScheme(ViewerCellRenderer.LIGHT_SCHEME);
	try {
		UIManager.setLookAndFeel(new AcrylLookAndFeel());
	} catch (Exception e) {
		log.error("Cannot set Acryl LookAndFeel", e);
	}
}
 
开发者ID:Devexperts,项目名称:QD,代码行数:15,代码来源:DXFeedMarketDataViewer.java


示例3: setAcrylTheme

import com.jtattoo.plaf.acryl.AcrylLookAndFeel; //导入依赖的package包/类
private static void setAcrylTheme() {
	Properties props = new Properties();
	props.setProperty("logoString", "");
	props.setProperty("macStyleWindowDecoration", "on");
	props.setProperty("menuOpaque", "off");

	AcrylLookAndFeel.setCurrentTheme(props);
	try {
		UIManager.setLookAndFeel(new AcrylLookAndFeel());
	} catch (Exception e) {
		log.error("Cannot set Acryl LookAndFeel", e);
	}
}
 
开发者ID:Devexperts,项目名称:QD,代码行数:14,代码来源:DXFeedMarketDataPlotter.java


示例4: GUIBotWrapper

import com.jtattoo.plaf.acryl.AcrylLookAndFeel; //导入依赖的package包/类
private GUIBotWrapper() {
	if(instance != null)
		throw new IllegalStateException();
	instance = this;
	try {
		UIManager.setLookAndFeel(new AcrylLookAndFeel());
	} catch(Exception exception) {}
	ui = new GUIBotWrapperFrame();
}
 
开发者ID:DarkStorm652,项目名称:DarkBot,代码行数:10,代码来源:GUIBotWrapper.java


示例5: init

import com.jtattoo.plaf.acryl.AcrylLookAndFeel; //导入依赖的package包/类
public static void init() {
	CFG.INTERNET = Assistant.isInternetReachable();
	
	try {
		Properties props = new Properties();
		props.put("logoString", "");
		AcrylLookAndFeel.setCurrentTheme(props);
		UIManager.setLookAndFeel(new AcrylLookAndFeel());
		UIManager.put("ProgressBar.cycleTime", new Integer(6000));
	} catch (Exception e) {
		e.printStackTrace();
	}
	
	// Reporter.init(new File(CFG.DIR, "Logs"));
}
 
开发者ID:Dakror,项目名称:VirtualHub,代码行数:16,代码来源:VirtualHub.java


示例6: update

import com.jtattoo.plaf.acryl.AcrylLookAndFeel; //导入依赖的package包/类
public void update(String look){
	Properties props = new Properties();
	props.put("logoString", "");
	props.put("licensekey", "");
	lookAndFeelName="com.jtattoo.plaf.";
	switch(look){
		case "Nimbus":
			lookAndFeelName = "javax.swing.plaf.nimbus.NimbusLookAndFeel";
			break;
		case "Acryl":
			AcrylLookAndFeel.setCurrentTheme(props);
			lookAndFeelName+="acryl.AcrylLookAndFeel";
			break;
		case "Aero":
			AeroLookAndFeel.setCurrentTheme(props);
			lookAndFeelName+="aero.AeroLookAndFeel";
			break;
		case "Aluminium":
			AluminiumLookAndFeel.setCurrentTheme(props);
			lookAndFeelName+="aluminium.AluminiumLookAndFeel";
			break;
		case "Bernstein":
			BernsteinLookAndFeel.setCurrentTheme(props);
			lookAndFeelName+="bernstein.BernsteinLookAndFeel";
			break;
		case "Fast":
			FastLookAndFeel.setCurrentTheme(props);
			lookAndFeelName+="fast.FastLookAndFeel";
			break;
		case "Graphite":
			GraphiteLookAndFeel.setCurrentTheme(props);
			lookAndFeelName+="graphite.GraphiteLookAndFeel";
			break;
		case "HiFi":
			HiFiLookAndFeel.setCurrentTheme(props);
			lookAndFeelName+="hifi.HiFiLookAndFeel";
			break;
		case "Luna":
			LunaLookAndFeel.setCurrentTheme(props);
			lookAndFeelName+="luna.LunaLookAndFeel";
			break;
		case "McWin":
			McWinLookAndFeel.setCurrentTheme(props);
			lookAndFeelName+="mcwin.McWinLookAndFeel";
			break;
		case "Mint":
			MintLookAndFeel.setCurrentTheme(props);
			lookAndFeelName+="mint.MintLookAndFeel";
			break;
		case "Noire":
			NoireLookAndFeel.setCurrentTheme(props);
			lookAndFeelName+="noire.NoireLookAndFeel";
			break;
		case "Smart":
			SmartLookAndFeel.setCurrentTheme(props);
			lookAndFeelName+="smart.SmartLookAndFeel";
			break;
		case "Texture":
			TextureLookAndFeel.setCurrentTheme(props);
			lookAndFeelName+="texture.TextureLookAndFeel";
			break;
	}
	try{
		currentTheme = lookAndFeelName;
		FileCopyManager f = (FileCopyManager) frame;
		f.updateLookAndFeel(lookAndFeelName);
		UIManager.setLookAndFeel(lookAndFeelName);
		SwingUtilities.updateComponentTreeUI(this);
	}
	catch(Exception e){
	}
}
 
开发者ID:kounelios13,项目名称:File-Copy-Manager,代码行数:73,代码来源:ThemeChanger.java


示例7: initLookAndFeel

import com.jtattoo.plaf.acryl.AcrylLookAndFeel; //导入依赖的package包/类
/**
 * Initializes the Swing look feel.
 *
 * @throws Exception
 *             the exception
 */
public void initLookAndFeel() throws Exception {
	LAFSettings settings = LAFSettings.getInstance();
	Properties props = new Properties();
	props.put("logoString", "Lobo Evolution");

	if (settings.isAcryl()) {
		AcrylLookAndFeel.setCurrentTheme(props);
		UIManager.setLookAndFeel("com.jtattoo.plaf.acryl.AcrylLookAndFeel");
	}

	if (settings.isAero()) {
		AeroLookAndFeel.setCurrentTheme(props);
		UIManager.setLookAndFeel("com.jtattoo.plaf.aero.AeroLookAndFeel");
	}

	if (settings.isAluminium()) {
		AluminiumLookAndFeel.setCurrentTheme(props);
		UIManager.setLookAndFeel("com.jtattoo.plaf.aluminium.AluminiumLookAndFeel");
	}

	if (settings.isBernstein()) {
		BernsteinLookAndFeel.setCurrentTheme(props);
		UIManager.setLookAndFeel("com.jtattoo.plaf.bernstein.BernsteinLookAndFeel");
	}

	if (settings.isFast()) {
		FastLookAndFeel.setCurrentTheme(props);
		UIManager.setLookAndFeel("com.jtattoo.plaf.fast.FastLookAndFeel");
	}

	if (settings.isGraphite()) {
		GraphiteLookAndFeel.setCurrentTheme(props);
		UIManager.setLookAndFeel("com.jtattoo.plaf.graphite.GraphiteLookAndFeel");
	}

	if (settings.isHiFi()) {
		HiFiLookAndFeel.setCurrentTheme(props);
		UIManager.setLookAndFeel("com.jtattoo.plaf.hifi.HiFiLookAndFeel");
	}

	if (settings.isLuna()) {
		LunaLookAndFeel.setCurrentTheme(props);
		UIManager.setLookAndFeel("com.jtattoo.plaf.luna.LunaLookAndFeel");
	}

	if (settings.isMcWin()) {
		McWinLookAndFeel.setCurrentTheme(props);
		UIManager.setLookAndFeel("com.jtattoo.plaf.mcwin.McWinLookAndFeel");
	}

	if (settings.isNoire()) {
		NoireLookAndFeel.setCurrentTheme(props);
		UIManager.setLookAndFeel("com.jtattoo.plaf.noire.NoireLookAndFeel");
	}

	if (settings.isSmart()) {
		SmartLookAndFeel.setCurrentTheme(props);
		UIManager.setLookAndFeel("com.jtattoo.plaf.smart.SmartLookAndFeel");
	}

	if (settings.isTexture()) {
		TextureLookAndFeel.setCurrentTheme(props);
		UIManager.setLookAndFeel("com.jtattoo.plaf.texture.TextureLookAndFeel");
	}
}
 
开发者ID:oswetto,项目名称:LoboEvolution,代码行数:72,代码来源:PlatformInit.java



注:本文中的com.jtattoo.plaf.acryl.AcrylLookAndFeel类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java LegendRenderer类代码示例发布时间:2022-05-23
下一篇:
Java GetIndexTemplatesResponse类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap