- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
我正在尝试通过 CSS 样式表简单地更新 Eclipse Juno 4.2 的外观。我看过几个教程,还有一个 stackoverflow 问题:
我已经安装了 CSS spy tool ,但这只能让我进行临时更改。叹。我进入了 org.eclipse.platform_4.2.0.v201206081400
插件文件夹,并使用了 plugin.xml
,但我在那里所做的任何更改都没有任何影响(即使重启后)。
如何在不创建、编译和安装整个 eclipse 插件元素到本地环境的情况下创建新主题并应用它?或者,更好的是,我可以只修改现有主题吗?
最佳答案
这是我如何让它工作的。
我已经按照描述下载了 Eclipse UI Themes 插件 here (direct link 到存档)。但是我没有将它解压缩到 dropins
目录中,而是将它解压缩到 plugins
中。我还更改了它的权限,允许每个人修改它的文件。
此时你有:
plugins/com.github.eclipsecolortheme.themes_1.0.0.201207121019/├── com│ └── github│ └── eclipsecolortheme│ └── themes│ └── Activator.class├── META-INF│ └── MANIFEST.MF├── plugin.xml└── themes └── css └── juno.css
juno.css
file is what you want. After launching Eclipse, this theme will be available under Appearance -> Dark Juno.
After looking into plugin.xml
, I had an idea how to create a new theme without using any plugin.
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.e4.ui.css.swt.theme">
<theme
basestylesheeturi="themes/css/juno.css"
id="com.github.eclipsecolortheme.themes.darkjuno"
label="Dark Juno">
</theme>
</extension>
</plugin>
可以向现有插件添加 org.eclipse.e4.ui.css.swt.theme
扩展点,比如 org.eclipse.platform_4.2.0.v201206081400
.而且,它的plugin.xml
已经有了这个扩展点,你唯一需要做的就是添加一个合适的theme
。请注意,它必须具有唯一的 id
。
<theme
basestylesheeturi="css/my_theme.css"
id="org.eclipse.e4.ui.css.theme.my_theme"
label="My Theme Name">
</theme>
可以将新的 CSS 文件放入 css
目录,该目录已经包含了默认的主题集。
org.eclipse.platform_4.2.0.v201206081400/├── ...├── css│ ├── e4_basestyle.css│ ├── e4_classic_win7.css│ ├── e4_classic_winxp.css│ ├── e4_default.css│ ├── e4_default_gtk.css│ └── ...├── images│ ├── gtkGrey.png│ ├── gtkHandleDark.png│ ├── gtkHandle.png│ ├── gtkTSFrameDark.png│ ├── gtkTSFrame.png│ └── ...├── META-INF│ ├── eclipse.inf│ ├── ECLIPSE_.RSA│ ├── ECLIPSE_.SF│ └── MANIFEST.MF├── platform.jar├── plugin.properties├── plugin.xml└── ...
After restarting Eclipse with -clean
option you will see a newly created item in the list of all themes:
For my installation it seems that changes to CSS apply on Eclipse restarting (File -> Restart, or just quitting and starting it manually).
The only weird behavior I have noticed is that CSS files from ~/.e4css
directory (if any exists) override thus ones from the plugin directory. I'm not sure where it comes from, but I can safely remove any files from it. I also don't know this directory even exists on non-Linux systems, but if it does, I guess it should be located somewhere in a home directory of the user, or maybe in Documents
.
I just tried to add a new theme from scratch and noticed that there was a small mistake in the XML above. In order to get a new theme properly registered it must have a unique id
attribute. Otherwise you will get an error:
java.lang.IllegalArgumentException: A theme with the id 'org.eclipse.e4.ui.css.theme.e4_default' is already registered
at org.eclipse.e4.ui.css.swt.internal.theme.ThemeEngine.registerTheme(ThemeEngine.java:186)
...
而且我说只要重新启动 Eclipse 来注册一个新主题就足够了,这似乎是不对的。但是,eclipse -clean
可以解决问题。
关于css - Eclipse 4.2 朱诺 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11833045/
我想我在开发 Android 应用程序时按下了某些东西。奇怪的字符出现了,我可以弄清楚如何摆脱它们。当我尝试编码时,它们会分散我的注意力。有人可以帮忙吗?我得到了一些角色的屏幕截图。 不确定我按下了什
不幸的是,Eclipse 插件的最新更新放弃了 Inigo 并安装了 Juno。我花了很多时间让它看起来像以前的版本,但我无法设法改变蓝色标签的颜色。知道这是哪个设置或 CSS 吗? [更新]有更改颜
版本:Eclipse 4.2 代号:Juno 我在 Eclipse 4.2 中没有看到快速查看栏。我无法右键单击 View 并启用快速 View 。常规 -> 透视下的快速查看选项没有任何作用。 快速
我按照此处指定的 Juno 安装说明进行操作:https://github.com/JunoLab/atom-julia-client/tree/master/manual 我运行了以下命令: Pkg
我想知道为什么我会在新的 eclipse Juno 上收到这个警告,尽管我认为我正确地关闭了所有内容。您能告诉我为什么我会在以下代码中收到此警告吗? public static boolean cop
我正在尝试通过 CSS 样式表简单地更新 Eclipse Juno 4.2 的外观。我看过几个教程,还有一个 stackoverflow 问题: http://www.vogella.com/arti
我刚刚安装了 Eclipse Juno 并正在尝试创建一个简单的 Hello World C++ 项目。我也安装了 autoconf,但是我得到了错误: Error 127 occurred whil
从 Indigo 切换到 Ubuntu 12.04 后,使用最新的 Eclipse Juno 会遇到各种问题。 我在以下位置设置了标志: 项目 -> 属性 -> C/C++ 构建 -> 设置 -> 工
在部分堆栈中,我有部分 View 。 ,并且每个 View 都有最小化/最大化按钮, 有什么办法可以隐藏某些特定 View 部分的最小化/最大化按钮吗? 最佳答案 这是 e4 中的一个错误: http
我尝试在 eclipse RCP 中更新软件,但出现此错误。 错误日志显示某些 feature.xml 文件丢失。 我打开其中一个错误日志找到了这个。 实际上,features 目录中的某些文件名不是
我是一名优秀的程序员,十分优秀!