提交 8331e96a 编写于 作者: S serge-rider

#2775 Eclipse ColorTheme support. SQL editor colors mapping


Former-commit-id: 310eae6d
上级 4d53832f
......@@ -60,6 +60,7 @@
<plugin id="org.jkiss.dbeaver.net.ssh.ui" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
<plugin id="org.jkiss.dbeaver.ui" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
<plugin id="org.jkiss.dbeaver.ext.erd" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
<plugin id="org.jkiss.dbeaver.ext.ui.colortheme" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
<plugin id="org.jkiss.dbeaver.ext.ui.locks" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
<plugin id="org.jkiss.utils" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
<plugin id="org.jkiss.dbeaver.ext.mockdata" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
......
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
</classpath>
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>org.jkiss.dbeaver.ext.ui.colortheme</name>
<comment></comment>
<projects>
</projects>
<natures>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.8
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name
Bundle-Vendor: %Bundle-Vendor
Bundle-SymbolicName: org.jkiss.dbeaver.ext.ui.colortheme;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Release-Date: 20180924
Require-Bundle: com.github.eclipsecolortheme
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-ClassPath: .
Bundle-Vendor = JKISS
Bundle-Name = DBeaver Color Theme support
\ No newline at end of file
bin.includes = .,\
META-INF/,\
OSGI-INF/,\
mappings/,\
plugin.xml
<?xml version="1.0" encoding="utf-8"?>
<eclipseColorThemeMapping plugin="org.jkiss.dbeaver.core" created="2018-09-18 23:30:00">
<mappings>
<mapping pluginKey="org.jkiss.dbeaver.sql.editor.color.datatype.foreground" themeKey="class"/><!-- Type -->
<mapping pluginKey="org.jkiss.dbeaver.sql.editor.color.keyword.foreground" themeKey="keyword"/><!-- Keyword -->
<mapping pluginKey="org.jkiss.dbeaver.sql.editor.color.string.foreground" themeKey="string"/><!-- String -->
<mapping pluginKey="org.jkiss.dbeaver.sql.editor.color.text.foreground" themeKey="foreground"/><!-- Default -->
<mapping pluginKey="org.jkiss.dbeaver.sql.editor.color.comment.foreground" themeKey="singleLineComment"/><!-- Single Line Comment -->
<mapping pluginKey="org.jkiss.dbeaver.sql.editor.color.number.foreground" themeKey="number"/><!-- Number -->
<mapping pluginKey="org.jkiss.dbeaver.sql.editor.color.comment.foreground" themeKey="multiLineComment"/><!-- Comment -->
<mapping pluginKey="org.jkiss.dbeaver.sql.editor.color.command.foreground" themeKey="method"/><!-- Command -->
<mapping pluginKey="org.jkiss.dbeaver.sql.editor.color.parameter.foreground" themeKey="parameterVariable"/><!-- Optional Argument -->
<mapping pluginKey="org.jkiss.dbeaver.sql.editor.color.delimiter.foreground" themeKey="annotation"/><!-- Special Character -->
</mappings>
</eclipseColorThemeMapping>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<!--
* DBeaver - Universal Database Manager
* Copyright (C) 2010-2017 Serge Rider (serge@jkiss.org)
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
-->
<plugin>
<extension
point="com.github.eclipsecolortheme.mapper">
<mapper
class="com.github.eclipsecolortheme.mapper.GenericMapper"
name="DBeaver"
pluginId="org.eclipse.ui.workbench"
xml="mappings/org.jkiss.dbeaver.xml">
</mapper>
</extension>
</plugin>
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jkiss.dbeaver</groupId>
<artifactId>dbeaver</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../../</relativePath>
</parent>
<artifactId>org.jkiss.dbeaver.ext.ui.colortheme</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
......@@ -59,6 +59,7 @@
<module>org.jkiss.dbeaver.ext.sample.database</module>
<module>org.jkiss.dbeaver.ext.ui.locks</module>
<module>org.jkiss.dbeaver.ext.ui.svg</module>
<module>org.jkiss.dbeaver.ext.ui.colortheme</module>
<module>org.jkiss.dbeaver.ext.mockdata</module>
<module>org.jkiss.dbeaver.data.office</module>
<module>org.jkiss.dbeaver.data.gis</module>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册